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")
77
77
endif ()
78
78
79
79
# 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" )
81
81
82
82
set (MFEM_OPTIONS ${PALACE_SUPERBUILD_DEFAULT_ARGS} )
83
83
list (APPEND MFEM_OPTIONS
Original file line number Diff line number Diff line change
1
+ #include < fstream>
2
+ #include < iostream>
3
+ #include < sstream>
1
4
#include < string>
2
5
#include < fmt/format.h>
3
6
#include < catch2/catch_test_macros.hpp>
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ using namespace palace;
10
10
TEST_CASE (" TableCSV" , " [tablecsv]" )
11
11
{
12
12
Table table{};
13
+ table.col_options .float_precision = 9 ;
13
14
table.reserve (5 , 2 );
14
15
15
16
// Quick defaults.
You can’t perform that action at this time.
0 commit comments