← Back to team overview

dolfin team mailing list archive

bloack-matrix demo

 

Should be include a test for the trilinos backend in demo/la/block-matrix/python just as in demo/la/trilinos/python? Now, the demo causes an error instead of just exiting clean. The following should be included:
# Test for Trilinos:
try:
   from PyTrilinos import Epetra, AztecOO, TriUtils, ML
except:
print "You Need to have PyTrilinos with Epetra, AztecOO, TriUtils and ML installed for this demo to run",
   print "Exiting."
   exit()

ilmar