PyTrilinos: Fix bug enabling/disabling NOX.Epetra
Created by: wfspotz
@trilinos/pytrilinos
Description
Issue #2692 (closed). I was using the CMake build variable HAVE_NOX_EPETRA
,
which is not the correct variable to use for enabling/disbling
NOX.Epetra
. I switched to NOX_ENABLE_ABSTRACT_IMPLEMENTATION_EPETRA
,
which is the correct one to use. Similarly, I changed HAVE_NOX_PETSC
to NOX_ENABLE_ABSTRACT_IMPLEMENTATION_PETSC
.
Related Issues
- Closes #2692 (closed)
How Has This Been Tested?
According to the steps in #2692 (closed)
Checklist
-
My commit messages mention the appropriate GitHub issue numbers. -
My code follows the code style of the affected package(s). -
My change requires a change to the documentation. -
I have updated the documentation accordingly. -
I have read the code contribution guidelines for this project. -
I have added tests to cover my changes. -
All new and existing tests passed. -
No new compiler warnings were introduced. -
These changes break backwards compatibility.