Skip to content
Snippets Groups Projects
Commit f08bd0c7 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[BUGFIX] changed default value of setupRun to false

this should be the common case
parent e822ea57
Branches
Tags
No related merge requests found
......@@ -148,7 +148,7 @@ shared_ptr<BlockForest> createBlockForest(const math::AABB simulationDomain,
shared_ptr<BlockForest> createBlockForestFromConfig(const Config::BlockHandle& mainConf)
{
bool setupRun = mainConf.getParameter< bool >( "setupRun", true );
bool setupRun = mainConf.getParameter< bool >( "setupRun", false );
Vec3 simulationCorner = mainConf.getParameter<Vec3>("simulationCorner", Vec3(0, 0, 0));
Vec3 simulationSize = mainConf.getParameter<Vec3>("simulationDomain", Vec3(10, 10, 10));
math::AABB simulationDomain = math::AABB( simulationCorner, simulationCorner + simulationSize );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment