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

Merge branch 'feature/shorten-poweriterationtest' into 'master'

Feature/shorten poweriterationtest

The tests often times out when compiled without optimizations

See merge request !22
parents 4f5c3d1d a6ba1113
No related branches found
No related tags found
No related merge requests found
add_executable(poweriterationtest cond2test.cc)
target_link_libraries(poweriterationtest dunecommon)
dune_add_test(TARGET poweriterationtest)
dune_add_test(
TARGET poweriterationtest
CMD_ARGS 40)
if(SUPERLU_FOUND)
add_executable(poweriterationsuperlutest cond2test.cc)
add_dune_superlu_flags(poweriterationsuperlutest)
dune_add_test(TARGET poweriterationsuperlutest)
dune_add_test(
TARGET poweriterationsuperlutest
CMD_ARGS 40)
target_link_libraries(poweriterationsuperlutest dunecommon)
endif()
......
......@@ -26,8 +26,6 @@ int main (int argc, char** argv)
typedef Dune::FieldMatrix<FIELD_TYPE,BS,BS> MatrixBlock;
typedef Dune::BCRSMatrix<MatrixBlock> BCRSMat;
typedef Dune::FieldVector<FIELD_TYPE,BS> VectorBlock;
typedef Dune::BlockVector<VectorBlock> Vector;
BCRSMat mat;
setupLaplacian(mat,N);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment