This is an automated email from the git hooks/post-receive script.
renard pushed a commit to branch master
in repository getfem.
The following commit(s) were added to refs/heads/master by this push:
new 71517be removing a mumps dependance
71517be is described below
commit 71517bed3071f1c0d176e3a967c162be9ba753a0
Author: Yves Renard <[email protected]>
AuthorDate: Sun Apr 26 15:14:38 2020 +0200
removing a mumps dependance
---
interface/tests/python/check_mixed_mesh.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/interface/tests/python/check_mixed_mesh.py
b/interface/tests/python/check_mixed_mesh.py
index ecb2b85..a786cf0 100644
--- a/interface/tests/python/check_mixed_mesh.py
+++ b/interface/tests/python/check_mixed_mesh.py
@@ -127,7 +127,7 @@ md.add_source_term_brick(mim, 'u', 'Fdata',
NEUMANN_BOUNDARY)
md.add_initialized_data('DirichletData', [0, 0, 0])
md.add_Dirichlet_condition_with_simplification('u',
DIRICHLET_BOUNDARY,'DirichletData')
-md.solve('max_res', 1E-9, 'max_iter', 100, 'noisy', 'lsolver', 'mumps',
'lsearch', 'simplest', 'alpha min', 0.8)
+md.solve('max_res', 1E-9, 'max_iter', 100, 'noisy', 'lsearch', 'simplest',
'alpha min', 0.8)
U = md.variable('u');