Salome HOME
First version of alg for max level of parallelism computation.
[modules/yacs.git] / src / engine / BlocPoint.cxx
1 // Copyright (C) 2015  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 "BlocPoint.hxx"
21 #include "Node.hxx"
22
23 using namespace YACS::ENGINE;
24
25 BlocPoint::BlocPoint(const std::list<AbstractPoint *>& nodes, AbstractPoint *father):AbstractPoint(father),_nodes(nodes)
26 {
27   for(std::list<AbstractPoint *>::const_iterator it=_nodes.begin();it!=_nodes.end();it++)
28     (*it)->setFather(this);
29 }
30
31 AbstractPoint *BlocPoint::findPointWithNode(Node *node)
32 {
33   for(std::list<AbstractPoint *>::iterator it=_nodes.begin();it!=_nodes.end();it++)
34     {
35       AbstractPoint *ret((*it)->findPointWithNode(node));
36       if(ret)
37         return AbstractPoint::GetDirectSonOf(this,ret);
38     }
39   return 0;
40 }
41
42 AbstractPoint *BlocPoint::getNodeAfter(Node *node)
43 {
44   OutGate *oug(node->getOutGate());
45   std::set<InGate *> fl(oug->edSetInGate());
46   if(fl.size()>=1)
47     {
48       AbstractPoint *ret(0);
49       IsCommonDirectSonOf(this,fl,ret);
50       return ret;
51     }
52   else
53     return 0;
54 }
55
56 AbstractPoint *BlocPoint::getNodeB4(Node *node)
57 {
58   InGate *ing(node->getInGate());
59   std::list<OutGate *> bl(ing->getBackLinks());
60   if(bl.size()>=1)
61     {
62       AbstractPoint *ret(0);
63       IsCommonDirectSonOf(this,bl,ret);
64       return ret;
65     }
66   else
67     return 0;
68 }
69
70 bool BlocPoint::contains(Node *node)
71 {
72   for(std::list<AbstractPoint *>::iterator it=_nodes.begin();it!=_nodes.end();it++)
73     {
74       if((*it)->contains(node))
75         return true;
76     }
77   return false;
78 }
79
80 int BlocPoint::getNumberOfNodes() const
81 {
82   int ret(0);
83   for(std::list<AbstractPoint *>::const_iterator it=_nodes.begin();it!=_nodes.end();it++)
84     ret+=(*it)->getNumberOfNodes();
85   return ret;
86 }
87
88 BlocPoint::~BlocPoint()
89 {
90   for(std::list<AbstractPoint *>::iterator it=_nodes.begin();it!=_nodes.end();it++)
91     delete *it;
92 }