This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

info and list functions do not return any output.

0 votes

Hi,

I have installed FEniCS through the curl option which was available for all Linux platforms. Mine is Slackware64 v14.1.

I am walking through the tutorial, and any "info command" or any "list command" that I paste from the tutorial to the Python Shell doesn't return anything. Following is a copy paste of my Python Shell. Its version is 2.7.11.

info(LinearVariationalSolver.default_parameters(), True)

info(NonlinearVariationalSolver.default_parameters(), True)
info(parameters, True)
list_lu_solver_methods()
list_krylov_solver_methods()
list_krylov_solver_preconditioners()
list_linear_solver_methods()

Any hints what might be wrong here? or where to look for a solution?

Many thanks,
Hisham.

asked Jun 13, 2016 by hbinzubair FEniCS Novice (250 points)

1 Answer

0 votes

Hi, this might be a bit late. Try setting

set_log_active(True)

and you should see the output.

answered Oct 23, 2016 by dajuno FEniCS User (4,140 points)

Yeah. Thanks a lot. It works. No worries about the delay.

...