Skip to content
Snippets Groups Projects
Commit d14dd8ac authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[test] Print block size BS instead of static 1

parent 5c774438
No related branches found
No related tags found
No related merge requests found
Pipeline #71546 failed
......@@ -122,7 +122,7 @@ int main(int argc, char** argv)
if (argc > 1)
N = atoi(argv[1]);
std::cout<<"testing for N="<<N<<" BS="<<1<<std::endl;
std::cout << "testing for N=" << N << " BS=" << BS << std::endl;
typedef Dune::FieldMatrix<FIELD_TYPE,BS,BS> MatrixBlock;
typedef Dune::BCRSMatrix<MatrixBlock> BCRSMat;
......
......@@ -19,7 +19,7 @@ int main(int argc, char** argv)
if(argc>1)
N = atoi(argv[1]);
std::cout<<"testing for N="<<N<<" BS="<<1<<std::endl;
std::cout << "testing for N=" << N << " BS=" << BS << std::endl;
typedef Dune::FieldMatrix<double,BS,BS> MatrixBlock;
typedef Dune::BCRSMatrix<MatrixBlock> BCRSMat;
......
......@@ -142,7 +142,7 @@ int main(int argc, char** argv)
if(argc>1)
N = atoi(argv[1]);
std::cout<<"testing for N="<<N<<" BS="<<1<<std::endl;
std::cout << "testing for N=" << N << " BS=" << BS << std::endl;
// Test scalar matrices and vectors
int ret = testMatrixMarket<Dune::BCRSMatrix<double>, Dune::BlockVector<double> >(N);
......
......@@ -18,7 +18,7 @@ int main(int argc, char** argv)
if(argc>1)
N = atoi(argv[1]);
std::cout<<"testing for N="<<N<<" BS="<<1<<std::endl;
std::cout << "testing for N=" << N << " BS=" << BS << std::endl;
typedef Dune::FieldMatrix<double,BS,BS> MatrixBlock;
......
......@@ -60,7 +60,7 @@ int main(int argc, char** argv)
if(argc>1)
N = atoi(argv[1]);
std::cout<<"testing for N="<<N<<" BS="<<1<<std::endl;
std::cout << "testing for N=" << N << " BS=" << BS << std::endl;
typedef Dune::FieldMatrix<double,BS,BS> MatrixBlock;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment