Adding default value to the InitialStateComputer constructor to avoid specifying the number of pressure points when using outside simulator (i.e., in testing..)

This commit is contained in:
Vegard Kippe 2023-06-22 16:53:08 +02:00
parent ea587d53b2
commit 31ecb416be

View File

@ -686,7 +686,7 @@ public:
const GridView& gridView,
const CartesianIndexMapper& cartMapper,
const double grav,
const int num_pressure_points,
const int num_pressure_points = 2000,
const bool applySwatInit = true);
using Vec = std::vector<double>;