Salome HOME
[EDF12520] : Optimization of placements of Kernel containers in ForEachLoop/HP Contai...
[modules/yacs.git] / src / engine / SetOfPoints.hxx
1 // Copyright (C) 2015-2016  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 "AutoRefCnt.hxx"
26
27 #include <map>
28 #include <list>
29 #include <string>
30
31 namespace YACS
32 {
33   namespace ENGINE
34   {
35     class Node;
36     class BagPoint;
37     class AbstractPoint;
38     class ComposedNode;
39     
40     class YACSLIBENGINE_EXPORT SetOfPoints
41     {
42     public:
43       SetOfPoints(const std::list<Node *>& nodes);
44       ~SetOfPoints();
45       void simplify();
46       std::string getRepr() const;
47       AbstractPoint *findPointWithNode(Node *node);
48       const std::list<AbstractPoint *>& getListOfPoints() const;
49       int getMaxLevelOfParallelism() const;
50       double getWeightRegardingDPL() const;
51       void partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const;
52       AbstractPoint *getUniqueAndReleaseIt() const;
53     private:
54       BagPoint *_bp;
55     };
56   }
57 }
58
59
60 #endif