Skip to content
Snippets Groups Projects
Commit 067ba67d authored by Naumann, Andreas's avatar Naumann, Andreas
Browse files

initialization flag of scalar implicit mesh was missing, added todo file for gui

parent f5016830
Branches
Tags
No related merge requests found
......@@ -181,8 +181,10 @@ namespace AMDiS {
GET_PARAMETER(0, path + "->macro file name", &meshFilename);
std::string serFilename("");
GET_PARAMETER(0, path + "->serialization file name", &serFilename);
if ( meshFilename.length() > 0)
if ( meshFilename.length() > 0) {
mesh->setName(path);
readImplMesh = true;
}
else
if ( serFilename.length() > 0 ) {
//INFO(5,1)("loading implicit mesh %s \n", serFilename.c_str());
......@@ -206,6 +208,8 @@ namespace AMDiS {
bool ProblemImplicitScal::createImplicitMesh()
{
FUNCNAME("ProblemImplicitScal::createImplicitMesh()");
INFO(5,1)("setting implicit mesh\n");
if (!isImplicitMesh())
return false;
std::string path = name + "->implicit mesh->";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment