eap 250c4f2244 Regression of XSMESH_TEST/SMESHCOMMON/SMESH_TEST/Grids/smesh/bugs12/M6
Fix the ensuring stability of SMESH_MeshEditor::makeWalls(). Allow
storing both nodes and cells in one map sorted by ID.


struct TIDCompare {
   bool operator () (const SMDS_MeshElement* e1, const SMDS_MeshElement* e2) const
-  { return e1->GetID() < e2->GetID(); }
+  { return e1->GetType() == e2->GetType() ? e1->GetID() < e2->GetID() : e1->GetType() < e2->GetType(); }
2013-04-26 11:46:58 +00:00
2013-04-01 13:05:47 +00:00
2013-04-18 07:58:41 +00:00
2013-04-01 13:05:47 +00:00
2013-04-12 14:40:29 +00:00
2013-04-01 13:05:47 +00:00
2013-04-01 13:05:47 +00:00
2013-04-01 13:05:47 +00:00
2004-06-18 08:34:31 +00:00
2013-04-01 13:05:47 +00:00
2013-04-12 15:28:58 +00:00
2004-06-18 08:34:31 +00:00
2003-11-06 11:34:19 +00:00
2013-04-01 13:05:47 +00:00

The file is empty.
Description
SALOME Mesh module
Readme 91 MiB
Languages
C++ 85.2%
Python 12.8%
CMake 1.1%
HTML 0.4%
C 0.3%
Other 0.1%