Skip to content
Snippets Groups Projects
Commit 78cd78a0 authored by Oliver Sander's avatar Oliver Sander
Browse files

[UGGrid] Don't call STD_BVP_Configure

All it does is a single assignment.  Instead of calling the method,
do the assignment directly.
parent 7540549e
No related tags found
1 merge request!761[uggrid] Simplify domain creation
......@@ -410,8 +410,7 @@ createGrid()
std::string BVPName = MultiGridName + "_Problem";
std::string FormatName = "DuneFormat" + std::to_string(dimworld) + "d";
if (STD_BVP_Configure(BVPName,std::move(ugDomain)))
DUNE_THROW(GridError, "Calling STD_BVP_Configure failed!");
grid_->bvp_->Domain = std::move(ugDomain);
// Make sure there is no old multigrid object with the same name.
// TODO: Can this happen at all?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment