Anasazi: create GeneralizedDavidson Tpetra tests #12345
Open
+1,105
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@trilinos/anasazi
@hkthorn
Motivation
This PR creates the following tests in the
tpetra/test/GeneralizedDavidson
directory:cxx_main_nh.cpp
cxx_main.cpp
cxx_main_lap.cpp
cxx_main_nh.cpp
is modeled after the current test in the Epetra test directory (basically a one-to-one conversion, changing E's to T's)cxx_main.cpp
andcxx_main_lap.cpp
are modeled after the tests of other solvers in the Tpetra test directory. Since the GeneralizedDavidson solver does not support complex types,cxx_main.cpp
uses the same logic as thecxx_main_complex.cpp
tests for the other solvers, but usesST=double
instead.