Salome HOME
Update copyrights
[modules/yacs.git] / src / engine / ElementaryPoint.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 "ElementaryPoint.hxx"
21 #include "PointVisitor.hxx"
22 #include "Node.hxx"
23
24 using namespace YACS::ENGINE;
25
26 ElementaryPoint::~ElementaryPoint()
27 {
28 }
29
30 AbstractPoint *ElementaryPoint::findPointWithNode(Node *node)
31 {
32   if(node==_node)
33     return this;
34   else
35     return 0;
36 }
37
38 bool ElementaryPoint::contains(Node *node)
39 {
40   return _node==node;
41 }
42
43 Node *ElementaryPoint::getFirstNode()
44 {
45   return _node;
46 }
47
48 Node *ElementaryPoint::getLastNode()
49 {
50   return _node;
51 }
52
53 int ElementaryPoint::getNumberOfNodes() const
54 {
55   return 1;
56 }
57
58 int ElementaryPoint::getMaxLevelOfParallelism() const
59 {
60   return _node->getMaxLevelOfParallelism();
61 }
62
63 void ElementaryPoint::getWeightRegardingDPL(ComplexWeight *weight)
64 {
65   _node->getWeightRegardingDPL(weight);
66 }
67
68 void ElementaryPoint::partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const
69 {
70   _node->partitionRegardingDPL(pd,zeMap);
71 }
72
73 std::string ElementaryPoint::getRepr() const
74 {
75   return _node->getName();
76 }
77
78 void ElementaryPoint::accept(PointVisitor *pv)
79 {
80   pv->beginElementaryPoint(this);
81   pv->endElementaryPoint(this);
82 }