57 #ifdef HAVE_BELOS_TRIUTILS
58 #include "Trilinos_Util_iohb.h"
65 using namespace Teuchos;
67 int main(
int argc,
char *argv[])
74 MPI_Init(&argc,&argv);
82 MPI_Comm_rank(MPI_COMM_WORLD, &MyPID);
88 std::string
filename(
"mhd1280b.cua");
94 cmdp.
setOption(
"verbose",
"quiet",&verbose,
"Print messages and results.");
95 cmdp.
setOption(
"debug",
"quiet",&verbose,
"Print messages and results.");
96 cmdp.
setOption(
"filename",&filename,
"Filename for Harwell-Boeing test matrix.");
105 typedef std::complex<double> ST;
107 typedef std::complex<double> ST;
111 if (verbose && MyPID==0) {
112 std::cout <<
"Not compiled with std::complex support." << std::endl;
113 if (verbose && MyPID==0) {
114 std::cout <<
"End Result: TEST FAILED" << std::endl;
136 #ifndef HAVE_BELOS_TRIUTILS
137 std::cout <<
"This test requires Triutils. Please configure with --enable-triutils." << std::endl;
151 info = readHB_newmat_double(filename.c_str(),&dim,&dim2,&nnz,&colptr,&rowind,&dvals);
152 if (info == 0 || nnz < 0) {
154 <<
"Warning reading '" << filename <<
"'" << std::endl
155 <<
"End Result: TEST FAILED" << std::endl;
162 std::vector<ST> cvals(nnz);
163 for (
int ii=0; ii<nnz; ii++) {
164 cvals[ii] = ST(dvals[ii*2],dvals[ii*2+1]);
172 std::vector<ScalarTraits<ST>::magnitudeType> v(blockSize);
174 MVT::MvNorm(*ivec,v);
180 ierr = Belos::TestMultiVecTraits<ST,MV>(MyOM,ivec);
183 MyOM->print(
Belos::Warnings,
"*** MyMultiVec<std::complex> PASSED TestMultiVecTraits()\n");
186 MyOM->print(
Belos::Warnings,
"*** MyMultiVec<std::complex> FAILED TestMultiVecTraits() ***\n\n");
190 ierr = Belos::TestOperatorTraits<ST,MV,OP>(MyOM,ivec,A2);
193 MyOM->print(
Belos::Warnings,
"*** MyOperator<std::complex> PASSED TestOperatorTraits()\n");
196 MyOM->print(
Belos::Warnings,
"*** MyOperator<std::complex> FAILED TestOperatorTraits() ***\n\n");
200 ierr = Belos::TestOperatorTraits<ST,MV,OP>(MyOM,ivec,A1);
203 MyOM->print(
Belos::Warnings,
"*** MyBetterOperator<std::complex> PASSED TestOperatorTraits()\n");
206 MyOM->print(
Belos::Warnings,
"*** MyBetterOperator<std::complex> FAILED TestOperatorTraits() ***\n\n");
227 return ( success ? EXIT_SUCCESS : EXIT_FAILURE );
Belos's basic output manager for sending information of select verbosity levels to the appropriate ou...
Class which manages the output and verbosity of the Belos solvers.
int main(int argc, char *argv[])
Traits class which defines basic operations on multivectors.
Simple example of a user's defined Belos::MultiVec class.
Alternative run-time polymorphic interface for operators.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
void setOption(const char option_true[], const char option_false[], bool *option_val, const char documentation[]=NULL)
#define TEUCHOS_STANDARD_CATCH_STATEMENTS(VERBOSE, ERR_STREAM, SUCCESS_FLAG)
Test routines for MultiVecTraits and OperatorTraits conformity.
EParseCommandLineReturn parse(int argc, char *argv[], std::ostream *errout=&std::cerr) const
Simple example of a user's defined Belos::Operator class.
Interface for multivectors used by Belos' linear solvers.
Belos header file which uses auto-configuration information to include necessary C++ headers...
Simple example of a user's defined Belos::Operator class.