pickle curving of mesh

This commit is contained in:
Christopher Lackner 2018-11-22 16:23:23 +01:00
parent cd25788ec2
commit a3d7be7e79

View File

@ -1331,6 +1331,7 @@ namespace netgen
archive & str; archive & str;
istringstream ist(str); istringstream ist(str);
geometry = geometryregister.LoadFromMeshFile (ist); geometry = geometryregister.LoadFromMeshFile (ist);
archive << curvedelems->GetOrder();
} }
if (archive.Input()) if (archive.Input())
@ -1343,6 +1344,9 @@ namespace netgen
topology.Update(); topology.Update();
clusters -> Update(); clusters -> Update();
} }
int order;
archive << order;
BuildCurvedElements(order);
SetNextMajorTimeStamp(); SetNextMajorTimeStamp();
} }
} }