Salome HOME
e33e1b3f8dbcee31d1f1c2b2aacd4adafe40765d
[modules/yacs.git] / src / engine / SetOfPoints.hxx
1 // Copyright (C) 2015-2019  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();
46       void simplify();
47       std::string getRepr() const;
48       AbstractPoint *findPointWithNode(Node *node);
49       const std::list<AbstractPoint *>& getListOfPoints() const;
50       int getMaxLevelOfParallelism() const;
51       void getWeightRegardingDPL(ComplexWeight *weight);
52       void partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const;
53       AbstractPoint *getUniqueAndReleaseIt() const;
54       void accept(PointVisitor *pv);
55     private:
56       BagPoint *_bp;
57     };
58   }
59 }
60
61
62 #endif