File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ if(CMAKE_BUILD_TYPE MATCHES "Debug|debug|DEBUG")
7777endif ()
7878
7979# Replace mfem abort calls with exceptions for testing, default off
80- set (PALACE_MFEM_USE_EXCEPTIONS NO )
80+ set (PALACE_MFEM_USE_EXCEPTIONS NO CACHE BOOL "MFEM throw exceptions instead of abort calls" )
8181
8282set (MFEM_OPTIONS ${PALACE_SUPERBUILD_DEFAULT_ARGS} )
8383list (APPEND MFEM_OPTIONS
Original file line number Diff line number Diff line change 1+ #include < fstream>
2+ #include < iostream>
3+ #include < sstream>
14#include < string>
25#include < fmt/format.h>
36#include < catch2/catch_test_macros.hpp>
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ using namespace palace;
1010TEST_CASE (" TableCSV" , " [tablecsv]" )
1111{
1212 Table table{};
13+ table.col_options .float_precision = 9 ;
1314 table.reserve (5 , 2 );
1415
1516 // Quick defaults.
You can’t perform that action at this time.
0 commit comments