Salome HOME
025edd9595fb2cb809060f386891fdb6b6e871d3
[modules/yacs.git] / src / engine / SetOfPoints.cxx
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 #include "SetOfPoints.hxx"
21 #include "BagPoint.hxx"
22 #include "LinkedBlocPoint.hxx"
23 #include "ForkBlocPoint.hxx"
24 #include "ElementaryPoint.hxx"
25 #include "Exception.hxx"
26
27 #include <algorithm>
28
29 using namespace YACS::ENGINE;
30
31 SetOfPoints::SetOfPoints(const std::list<Node *>& nodes):_bp(0)
32 {
33   std::list<AbstractPoint *> nodes2;
34   for(std::list<Node *>::const_iterator it=nodes.begin();it!=nodes.end();it++)
35     {
36       nodes2.push_back(new ElementaryPoint(*it));
37     }
38   _bp=new BagPoint(nodes2,0);
39 }
40
41 SetOfPoints::~SetOfPoints()
42 {
43   delete _bp;
44 }
45
46 void SetOfPoints::basicSimplify()
47 {
48   while(_bp->size()>1)
49     {
50       bool somethingDone(false);
51       _bp->deal1(somethingDone);
52       if(somethingDone)
53         continue;
54       _bp->deal2(somethingDone);
55       if(somethingDone)
56         continue;
57       _bp->deal2Bis(somethingDone);
58       if(somethingDone)
59         continue;
60       _bp->deal2Ter(somethingDone);
61       if(!somethingDone)
62         throw Exception("SetOfPoints::simplify : not implemented yet !\nPlease check if there are any recursively redundant links (can be removed by removeRecursivelyRedundantCL method).");
63     }
64 }
65
66 void SetOfPoints::simplify()
67 {
68   while( _bp->internalContinueForSimplify() )
69     {
70       bool somethingDone(false);
71       _bp->deal1(somethingDone);
72       if(somethingDone)
73         continue;
74       _bp->deal2(somethingDone);
75       if(somethingDone)
76         continue;
77       _bp->deal2Bis(somethingDone);
78       if(somethingDone)
79         continue;
80       _bp->deal2Ter(somethingDone);
81       if(somethingDone)
82         continue;
83       _bp->dealNotSimpleCase(somethingDone);
84       if(!somethingDone)
85         throw Exception("SetOfPoints::simplify : not implemented yet !\nPlease check if there are any recursively redundant links (can be removed by removeRecursivelyRedundantCL method).");
86     }
87   if( _bp->presenceOfNonSimpleCase() )
88     {
89       _bp->expandNonSimpleCase();
90     }
91 }
92
93 std::string SetOfPoints::getRepr() const
94 {
95   return _bp->getRepr();
96 }
97
98 AbstractPoint *SetOfPoints::findPointWithNode(Node *node)
99 {
100   if(node==0)
101     return 0;
102   return _bp->findPointWithNode(node);
103 }
104
105 const std::list<AbstractPoint *>& SetOfPoints::getListOfPoints() const
106 {
107   return _bp->getListOfPoints();
108 }
109
110 int SetOfPoints::getMaxLevelOfParallelism() const
111 {
112   return _bp->getMaxLevelOfParallelism();
113 }
114
115 void SetOfPoints::getWeightRegardingDPL(ComplexWeight *weight)
116 {
117   _bp->getWeightRegardingDPL(weight);
118 }
119
120 void SetOfPoints::partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const
121 {
122   _bp->partitionRegardingDPL(pd,zeMap);
123 }
124
125 AbstractPoint *SetOfPoints::getUniqueAndReleaseIt() const
126 {
127   return _bp->getUniqueAndReleaseIt();
128 }
129
130 void SetOfPoints::accept(PointVisitor *pv)
131 {
132   _bp->accept(pv);
133 }