11 #include "Thyra_LinearOpTester.hpp"
12 #include "Thyra_DefaultBlockedLinearOp.hpp"
13 #include "Thyra_MultiVectorBase.hpp"
14 #include "Thyra_MultiVectorStdOps.hpp"
31 using Teuchos::describe;
46 out <<
"Sub operators built" << std::endl;
50 M00->beginBlockFill(2,2);
51 M00->setBlock(0,0,A00);
52 M00->setBlock(0,1,A02);
53 M00->setBlock(1,0,A20);
54 M00->setBlock(1,1,A22);
57 out <<
"Built M00" << std::endl;
60 M10->beginBlockFill(2,1);
61 M10->setBlock(0,0,A01);
62 M10->setBlock(1,0,A21);
65 out <<
"Built M10" << std::endl;
68 M01->beginBlockFill(1,2);
69 M01->setBlock(0,0,A10);
70 M01->setBlock(0,1,A12);
73 out <<
"Built M01" << std::endl;
76 M->beginBlockFill(2,2);
83 out <<
"Built M" << std::endl;
89 out <<
"Test complete" << std::endl;
TEUCHOS_UNIT_TEST(EpetraOperatorWrapper, basic)