_facesPeriodicityVector.push_back(pairOfFacesEntries);
- NotifySubMeshesHypothesisModification();
+ // Removed for performance reason since AddFacePeriodicity is called multiple times (one time for each face)
+ // Does not affect the behaviour since it is only called via python, not via GUI.
+ //NotifySubMeshesHypothesisModification();
}
_edgesPeriodicityVector.push_back(edgePeriodicity);
- NotifySubMeshesHypothesisModification();
+ // Removed for performance reason since AddEdgePeriodicity is called multiple times (one time for each edge)
+ // Does not affect the behaviour since it is only called via python, not via GUI.
+ //NotifySubMeshesHypothesisModification();
}
//=======================================================================
_verticesPeriodicityVector.push_back(vertexPeriodicity);
- NotifySubMeshesHypothesisModification();
+ // Removed for performance reason since AddVertexPeriodicity is called multiple times (one time for each vertex)
+ // Does not affect the behaviour since it is only called via python, not via GUI.
+ //NotifySubMeshesHypothesisModification();
}
//=============================================================================