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
No related tags found
No related merge requests found
...@@ -181,8 +181,10 @@ namespace AMDiS { ...@@ -181,8 +181,10 @@ namespace AMDiS {
GET_PARAMETER(0, path + "->macro file name", &meshFilename); GET_PARAMETER(0, path + "->macro file name", &meshFilename);
std::string serFilename(""); std::string serFilename("");
GET_PARAMETER(0, path + "->serialization file name", &serFilename); GET_PARAMETER(0, path + "->serialization file name", &serFilename);
if ( meshFilename.length() > 0) if ( meshFilename.length() > 0) {
mesh->setName(path); mesh->setName(path);
readImplMesh = true;
}
else else
if ( serFilename.length() > 0 ) { if ( serFilename.length() > 0 ) {
//INFO(5,1)("loading implicit mesh %s \n", serFilename.c_str()); //INFO(5,1)("loading implicit mesh %s \n", serFilename.c_str());
...@@ -206,6 +208,8 @@ namespace AMDiS { ...@@ -206,6 +208,8 @@ namespace AMDiS {
bool ProblemImplicitScal::createImplicitMesh() bool ProblemImplicitScal::createImplicitMesh()
{ {
FUNCNAME("ProblemImplicitScal::createImplicitMesh()");
INFO(5,1)("setting implicit mesh\n");
if (!isImplicitMesh()) if (!isImplicitMesh())
return false; return false;
std::string path = name + "->implicit mesh->"; 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