mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
Regression of XSMESH_TEST/SMESHCOMMON/SMESH_TEST/Grids/smesh/3D_mesh_Extrusion/A6
TTElemOfElemListMap and TElemOfVecOfNnlmiMap must use same comparator for correct work of makeWalls()
This commit is contained in:
parent
82a6b20865
commit
8a85c65b1e
@ -193,12 +193,13 @@ public:
|
||||
// If the2D, smoothing is performed using UV parameters of nodes
|
||||
// on geometrical faces
|
||||
|
||||
typedef TIDTypeCompare TElemSort;
|
||||
typedef std::map < const SMDS_MeshElement*,
|
||||
std::list<const SMDS_MeshElement*>, TIDTypeCompare > TTElemOfElemListMap;
|
||||
std::list<const SMDS_MeshElement*>, TElemSort > TTElemOfElemListMap;
|
||||
typedef std::map<const SMDS_MeshNode*, std::list<const SMDS_MeshNode*> > TNodeOfNodeListMap;
|
||||
typedef TNodeOfNodeListMap::iterator TNodeOfNodeListMapItr;
|
||||
typedef std::vector<TNodeOfNodeListMapItr> TVecOfNnlmiMap;
|
||||
typedef std::map<const SMDS_MeshElement*, TVecOfNnlmiMap, TIDCompare > TElemOfVecOfNnlmiMap;
|
||||
typedef std::map<const SMDS_MeshElement*, TVecOfNnlmiMap, TElemSort > TElemOfVecOfNnlmiMap;
|
||||
typedef std::auto_ptr< std::list<int> > PGroupIDs;
|
||||
|
||||
PGroupIDs RotationSweep (TIDSortedElemSet & theElements,
|
||||
|
Loading…
Reference in New Issue
Block a user