Salome HOME
d884552c47e72da7551b3daf7060c4fb0f6b6637
[modules/yacs.git] / src / engine / SetOfPoints.hxx
1 // Copyright (C) 2015-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __SETOFPOINTS_HXX__
21 #define __SETOFPOINTS_HXX__
22
23 #include "YACSlibEngineExport.hxx"
24 #include "PlayGround.hxx"
25 #include "PointVisitor.hxx"
26 #include "AutoRefCnt.hxx"
27
28 #include <map>
29 #include <list>
30 #include <string>
31
32 namespace YACS
33 {
34   namespace ENGINE
35   {
36     class Node;
37     class BagPoint;
38     class AbstractPoint;
39     class ComposedNode;
40     
41     class YACSLIBENGINE_EXPORT SetOfPoints
42     {
43     public:
44       SetOfPoints(const std::list<Node *>& nodes);
45       SetOfPoints(BagPoint *bp):_bp(bp) { }
46       ~SetOfPoints();
47       void basicSimplify();
48       void simplify();
49       std::string getRepr() const;
50       AbstractPoint *findPointWithNode(Node *node);
51       const std::list<AbstractPoint *>& getListOfPoints() const;
52       int getMaxLevelOfParallelism() const;
53       void getWeightRegardingDPL(ComplexWeight *weight);
54       void partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const;
55       AbstractPoint *getUniqueAndReleaseIt() const;
56       void accept(PointVisitor *pv);
57     private:
58       BagPoint *_bp;
59     };
60   }
61 }
62
63
64 #endif