Version: 8.3.0
YACS::ENGINE::LinkInfo Class Reference

Class that deal with list of semantics links for high level analysis. More...

#include <LinkInfo.hxx>

Collaboration diagram for YACS::ENGINE::LinkInfo:

Public Member Functions

 LinkInfo (unsigned char level)
 
void clearAll ()
 
void startCollapseTransac ()
 
void endCollapseTransac () throw (Exception)
 
void setPointOfView (ComposedNode *pov)
 
void pushInfoLink (OutPort *semStart, InPort *end, InfoReason reason)
 
void pushWarnLink (OutPort *semStart, InPort *end, WarnReason reason)
 
void pushErrLink (OutPort *semStart, InPort *end, ErrReason reason) throw (Exception)
 
void pushErrSwitch (CollectorSwOutPort *collector) throw (Exception)
 
void pushUselessCFLink (Node *start, Node *end)
 
void takeDecision () const throw (Exception)
 
std::string getGlobalRepr () const
 
std::string getInfoRepr () const
 
std::string getWarnRepr () const
 
std::string getErrRepr () const
 
bool areWarningsOrErrors () const
 
unsigned getNumberOfInfoLinks (InfoReason reason) const
 
unsigned getNumberOfWarnLinksGrp (WarnReason reason) const
 
unsigned getNumberOfErrLinks (ErrReason reason) const
 
std::set< std::pair< Node
*, Node * > > 
getInfoUselessLinks () const
 
std::pair< OutPort *, InPort * > getInfoLink (unsigned id, InfoReason reason) const
 
std::vector< std::pair
< OutPort *, InPort * > > 
getWarnLink (unsigned id, WarnReason reason) const
 
std::pair< OutPort *, InPort * > getErrLink (unsigned id, ErrReason reason) const
 

Static Public Attributes

static const unsigned char ALL_STOP_ASAP = 1
 
static const unsigned char ALL_DONT_STOP = 2
 
static const unsigned char WARN_ONLY_DONT_STOP = 3
 

Static Protected Member Functions

static std::string getStringReprOfI (InfoReason reason)
 
static std::string getStringReprOfW (WarnReason reason)
 
static std::string getStringReprOfE (ErrReason reason)
 
static std::string printThereIsAre (unsigned val, const std::string &other)
 

Private Attributes

ComposedNode_pov
 
unsigned int _level
 
unsigned char _levelOfInfo
 
std::vector< InPort * > _unsetInPort
 
std::vector< InPort * > _onlyBackDefined
 
std::set< std::pair< Node
*, Node * > > 
_uselessLinks
 
std::map< InfoReason,
std::vector< std::pair
< OutPort *, InPort * > > > 
_infos
 
std::map< WarnReason,
std::vector< std::vector
< std::pair< OutPort *, InPort * > > > > 
_collapse
 
std::map< ErrReason,
std::vector< std::pair
< OutPort *, InPort * > > > 
_errors
 
std::vector< CollectorSwOutPort * > _errorsOnSwitchCases
 

Detailed Description

Class that deal with list of semantics links for high level analysis.

Definition at line 82 of file LinkInfo.hxx.

Constructor & Destructor Documentation

LinkInfo::LinkInfo ( unsigned char  level)

Definition at line 32 of file LinkInfo.cxx.

32  :_levelOfInfo(level),_level(0)
33 {
34 }

Member Function Documentation

void LinkInfo::clearAll ( )

Definition at line 36 of file LinkInfo.cxx.

References _collapse, _errors, _errorsOnSwitchCases, _infos, _level, _onlyBackDefined, _unsetInPort, and _uselessLinks.

37 {
38  _level=0;
39  _unsetInPort.clear();
40  _onlyBackDefined.clear();
41  _uselessLinks.clear();
42  _infos.clear();
43  _collapse.clear();
44  _errors.clear();
45  _errorsOnSwitchCases.clear();
46 }
void LinkInfo::endCollapseTransac ( ) throw (Exception)
std::pair< OutPort *, InPort * > LinkInfo::getErrLink ( unsigned  id,
ErrReason  reason 
) const

Definition at line 291 of file LinkInfo.cxx.

References _errors, _onlyBackDefined, _unsetInPort, YACS::ENGINE::E_NEVER_SET_INPUTPORT, and YACS::ENGINE::E_ONLY_BACKWARD_DEFINED.

292 {
293  if(reason==E_NEVER_SET_INPUTPORT)
294  return pair<OutPort *, InPort *>( reinterpret_cast<OutPort *>(0), _unsetInPort[id] );
295  else if(reason==E_ONLY_BACKWARD_DEFINED)
296  return pair<OutPort *, InPort *>( reinterpret_cast<OutPort *>(0), _onlyBackDefined[id] );
297  else
298  {
299  map<ErrReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter=_errors.find(reason);
300  if(iter!=_errors.end())
301  return (*iter).second[id];
302  else
303  return pair<OutPort *, InPort *>( reinterpret_cast<OutPort *>(0), reinterpret_cast<InPort *>(0) );
304  }
305 }
std::string LinkInfo::getErrRepr ( ) const

Definition at line 182 of file LinkInfo.cxx.

References _errors, _errorsOnSwitchCases, _onlyBackDefined, _pov, _unsetInPort, YACS::ENGINE::E_NEVER_SET_INPUTPORT, YACS::ENGINE::E_ONLY_BACKWARD_DEFINED, YACS::ENGINE::ComposedNode::getInPortName(), YACS::ENGINE::ComposedNode::getOutPortName(), and getStringReprOfE().

Referenced by endCollapseTransac(), getGlobalRepr(), and takeDecision().

183 {
184  vector<InPort *>::const_iterator iter;
185  ostringstream stream;
186  for(iter=_unsetInPort.begin();iter!=_unsetInPort.end();iter++)
187  stream << getStringReprOfE(E_NEVER_SET_INPUTPORT) << "\"" << _pov->getInPortName(*iter) << "\"." << endl;
188  for(iter=_onlyBackDefined.begin();iter!=_onlyBackDefined.end();iter++)
189  stream << getStringReprOfE(E_ONLY_BACKWARD_DEFINED) << "\"" << _pov->getInPortName(*iter) << "\"." << endl;
190  map<ErrReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter2;
191  for(iter2=_errors.begin();iter2!=_errors.end();iter2++)
192  for(vector< pair<OutPort *,InPort *> >::const_iterator iter3=(*iter2).second.begin();iter3!=(*iter2).second.end();iter3++)
193  stream << getStringReprOfE((*iter2).first) << " between \"" <<_pov->getOutPortName((*iter3).first) << "\" and \"" << _pov->getInPortName((*iter3).second) << endl;
194  for(vector<CollectorSwOutPort *>::const_iterator iter3=_errorsOnSwitchCases.begin();iter3!=_errorsOnSwitchCases.end();iter3++)
195  (*iter3)->getHumanReprOfIncompleteCases(stream);
196  return stream.str();
197 }
std::string LinkInfo::getGlobalRepr ( ) const

Definition at line 118 of file LinkInfo.cxx.

References YACS::ENGINE::E_ALL, getErrRepr(), getInfoRepr(), getNumberOfErrLinks(), getNumberOfInfoLinks(), getNumberOfWarnLinksGrp(), getWarnRepr(), GLOBAL_MESSAGE1, YACS::ENGINE::I_ALL, printThereIsAre(), and YACS::ENGINE::W_ALL.

Referenced by endCollapseTransac(), main(), and YACS::HMI::EditionProc::synchronize().

119 {
120  ostringstream retS; retS << GLOBAL_MESSAGE1;
121  retS << printThereIsAre(getNumberOfErrLinks(E_ALL),"error") << ".\n";
122  retS << printThereIsAre(getNumberOfWarnLinksGrp(W_ALL),"warning") << ".\n";
123  retS << printThereIsAre(getNumberOfInfoLinks(I_ALL),"info") << ".\n";
125  {
126  retS << "****** ERRORS ******" << endl;
127  retS << getErrRepr() << endl;
128  }
130  {
131  retS << "****** WARNINGS ******" << endl;
132  retS << getWarnRepr() << endl;
133  }
135  {
136  retS << "****** INFO ******" << endl;
137  retS << getInfoRepr() << endl;
138  }
139  return retS.str();
140 }
std::pair< OutPort *, InPort * > LinkInfo::getInfoLink ( unsigned  id,
InfoReason  reason 
) const

Definition at line 271 of file LinkInfo.cxx.

References _infos, and YACS::ENGINE::I_CF_USELESS.

272 {
273  if(reason==I_CF_USELESS)
274  return pair<OutPort *, InPort *>();
275  map<InfoReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter=_infos.find(reason);
276  if(iter!=_infos.end())
277  return (*iter).second[id];
278  else
279  return pair<OutPort *, InPort *>( reinterpret_cast<OutPort *>(0), reinterpret_cast<InPort *>(0) );
280 }
std::string LinkInfo::getInfoRepr ( ) const

Definition at line 142 of file LinkInfo.cxx.

References _infos, _pov, _uselessLinks, YACS::ENGINE::ComposedNode::getChildName(), YACS::ENGINE::ComposedNode::getInPortName(), YACS::ENGINE::ComposedNode::getOutPortName(), and getStringReprOfI().

Referenced by getGlobalRepr().

143 {
144  map<InfoReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter;
145  ostringstream stream;
146  for(iter=_infos.begin();iter!=_infos.end();iter++)
147  {
148  for(vector< pair<OutPort *,InPort *> >::const_iterator iter2=(*iter).second.begin();iter2!=(*iter).second.end();iter2++)
149  {
150  stream << getStringReprOfI((*iter).first) << " between \"" << _pov->getOutPortName((*iter2).first);
151  stream << "\" and \"" << _pov->getInPortName((*iter2).second) << "\"." << endl;
152  }
153  }
154  set< pair<Node *, Node *> >::const_iterator iter3;
155  for(iter3=_uselessLinks.begin();iter3!=_uselessLinks.end();iter3++)
156  {
157  stream << "Useless CF link between \"" << _pov->getChildName((*iter3).first);
158  stream << "\" and \"" << _pov->getChildName((*iter3).second) << "\"." << endl;
159  }
160  return stream.str();
161 }
std::set< std::pair< Node *, Node * > > LinkInfo::getInfoUselessLinks ( ) const

Definition at line 266 of file LinkInfo.cxx.

References _uselessLinks.

Referenced by YACS::ENGINE::Bloc::removeRecursivelyRedundantCL().

267 {
268  return _uselessLinks;
269 }
unsigned LinkInfo::getNumberOfErrLinks ( ErrReason  reason) const

Definition at line 246 of file LinkInfo.cxx.

References _errors, _errorsOnSwitchCases, _onlyBackDefined, _unsetInPort, YACS::ENGINE::E_ALL, YACS::ENGINE::E_NEVER_SET_INPUTPORT, YACS::ENGINE::E_ONLY_BACKWARD_DEFINED, and YACS::ENGINE::E_UNCOMPLETE_SW.

Referenced by areWarningsOrErrors(), and getGlobalRepr().

247 {
248  if(reason==E_ALL)
249  return _errors.size()+_onlyBackDefined.size()+_unsetInPort.size()+_errorsOnSwitchCases.size();
250  else if(reason==E_NEVER_SET_INPUTPORT)
251  return _unsetInPort.size();
252  else if(reason==E_ONLY_BACKWARD_DEFINED)
253  return _onlyBackDefined.size();
254  else if(reason==E_UNCOMPLETE_SW)
255  return _errorsOnSwitchCases.size();
256  else
257  {
258  map<ErrReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter=_errors.find(reason);
259  if(iter!=_errors.end())
260  return (*iter).second.size();
261  else
262  return 0;
263  }
264 }
unsigned LinkInfo::getNumberOfInfoLinks ( InfoReason  reason) const

If 'reason'==I_ALL returns nummmber of types of links info whereas it returns number of info per type.

Definition at line 207 of file LinkInfo.cxx.

References _infos, _uselessLinks, YACS::ENGINE::I_ALL, and YACS::ENGINE::I_CF_USELESS.

Referenced by getGlobalRepr().

208 {
209  if(reason==I_ALL)
210  {
211  map<InfoReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter=_infos.begin();
212  unsigned val=0;
213  for(;iter!=_infos.end();iter++)
214  val+=(*iter).second.size();
215  return val+_uselessLinks.size();
216  }
217  if(reason==I_CF_USELESS)
218  return _uselessLinks.size();
219  else
220  {
221  map<InfoReason, vector< pair<OutPort *,InPort *> > >::const_iterator iter=_infos.find(reason);
222  if(iter!=_infos.end())
223  return (*iter).second.size();
224  else
225  return 0;
226  }
227 }
unsigned LinkInfo::getNumberOfWarnLinksGrp ( WarnReason  reason) const

Definition at line 229 of file LinkInfo.cxx.

References _collapse, PMMLBasicsTestLauncher::ret, and YACS::ENGINE::W_ALL.

Referenced by areWarningsOrErrors(), endCollapseTransac(), and getGlobalRepr().

230 {
231  unsigned ret=0;
232  map<WarnReason, vector< vector< pair<OutPort *,InPort *> > > >::const_iterator iter;
233  if(reason==W_ALL)
234  {
235  for(iter=_collapse.begin();iter!=_collapse.end();iter++)
236  ret+=(*iter).second.size();
237  return ret;
238  }
239  map<WarnReason, vector< vector< pair<OutPort *,InPort *> > > >::const_iterator iter2=_collapse.find(reason);
240  if(iter2!=_collapse.end())
241  return (*iter2).second.size();
242  else
243  return 0;
244 }
std::string LinkInfo::getStringReprOfE ( ErrReason  reason)
staticprotected

Definition at line 364 of file LinkInfo.cxx.

References YACS::ENGINE::E_COLLAPSE_DFDS, YACS::ENGINE::E_COLLAPSE_DS, YACS::ENGINE::E_DS_LINK_UNESTABLISHABLE, YACS::ENGINE::E_NEVER_SET_INPUTPORT, YACS::ENGINE::E_ONLY_BACKWARD_DEFINED, YACS::ENGINE::E_UNPREDICTABLE_FED, LINK_REPR, and PMMLBasicsTestLauncher::ret.

Referenced by getErrRepr().

365 {
366  string ret;
367  if(reason==E_NEVER_SET_INPUTPORT)
368  return "Never set InPort ";
369  if(reason==E_ONLY_BACKWARD_DEFINED)
370  return "Never set InPort only back defined ";
371  switch(reason)
372  {
374  ret="DS unestablishable";
375  break;
376  case E_COLLAPSE_DFDS:
377  ret="DF/DS collapse";
378  break;
379  case E_COLLAPSE_DS:
380  ret="Inter DS collapse";
381  break;
382  case E_UNPREDICTABLE_FED:
383  ret="Unpredictable fed";
384  }
385  ret+=" "; ret+=LINK_REPR;
386  return ret;
387 }
std::string LinkInfo::getStringReprOfI ( InfoReason  reason)
staticprotected

Definition at line 307 of file LinkInfo.cxx.

References YACS::ENGINE::I_BACK, YACS::ENGINE::I_BACK_CRAZY, YACS::ENGINE::I_BACK_USELESS, YACS::ENGINE::I_DFDS, YACS::ENGINE::I_USELESS, LINK_REPR, and PMMLBasicsTestLauncher::ret.

Referenced by getInfoRepr().

308 {
309  string ret;
310  switch(reason)
311  {
312  case I_USELESS:
313  ret="Useless DF";
314  break;
315  case I_BACK:
316  ret="Back";
317  break;
318  case I_BACK_USELESS:
319  ret="Back and useless";
320  break;
321  case I_BACK_CRAZY:
322  ret+="Crazy back";
323  break;
324  case I_DFDS:
325  ret+="DF/DS";
326  }
327  ret+=" "; ret+=LINK_REPR;
328  return ret;
329 }
std::string LinkInfo::getStringReprOfW ( WarnReason  reason)
staticprotected

Definition at line 331 of file LinkInfo.cxx.

References LINK_REPR, PMMLBasicsTestLauncher::ret, YACS::ENGINE::W_BACK_COLLAPSE, YACS::ENGINE::W_BACK_COLLAPSE_AND_USELESS, YACS::ENGINE::W_BACK_COLLAPSE_EL, YACS::ENGINE::W_BACK_COLLAPSE_EL_AND_USELESS, YACS::ENGINE::W_COLLAPSE, YACS::ENGINE::W_COLLAPSE_AND_USELESS, YACS::ENGINE::W_COLLAPSE_EL, and YACS::ENGINE::W_COLLAPSE_EL_AND_USELESS.

Referenced by getWarnRepr().

332 {
333  string ret;
334  switch(reason)
335  {
336  case W_COLLAPSE:
337  ret="Collapse";
338  break;
340  ret="Collapse and useless";
341  break;
342  case W_COLLAPSE_EL:
343  ret="Collapse on ElementaryNode";
344  break;
346  ret+="Collapse on ElementaryNode and useless";
347  break;
348  case W_BACK_COLLAPSE:
349  ret+="Back collapse";
350  break;
352  ret+="Back collapse and useless";
353  break;
354  case W_BACK_COLLAPSE_EL:
355  ret+="Back collapse on ElementaryNode";
356  break;
358  ret+="Back collapse and useless on ElementaryNode";
359  }
360  ret+=" "; ret+=LINK_REPR;
361  return ret;
362 }
std::vector< std::pair< OutPort *, InPort * > > LinkInfo::getWarnLink ( unsigned  id,
WarnReason  reason 
) const

Definition at line 282 of file LinkInfo.cxx.

References _collapse.

283 {
284  map<WarnReason, vector< vector< pair<OutPort *,InPort *> > > >::const_iterator iter=_collapse.find(reason);
285  if(iter!=_collapse.end())
286  return (*iter).second[id];
287  else
288  return vector< pair<OutPort *, InPort *> >();
289 }
std::string LinkInfo::getWarnRepr ( ) const

Definition at line 163 of file LinkInfo.cxx.

References _collapse, _pov, YACS::ENGINE::ComposedNode::getInPortName(), YACS::ENGINE::ComposedNode::getOutPortName(), getStringReprOfW(), and CORBAEngineTest::i.

Referenced by getGlobalRepr().

164 {
165  map<WarnReason, vector< vector< pair<OutPort *,InPort *> > > >::const_iterator iter;
166  ostringstream stream;
167  unsigned i=0;
168  for(iter=_collapse.begin();iter!=_collapse.end();iter++)
169  {
170  stream << getStringReprOfW((*iter).first) << " for group containing following group links: ";
171  vector< vector< pair<OutPort *,InPort *> > >::const_iterator iter2=(*iter).second.begin();
172  for(;iter2!=(*iter).second.end();iter2++)
173  {
174  stream << " Group # " << i++ << " : " << endl;
175  for(vector< pair<OutPort *,InPort *> >::const_iterator iter3=(*iter2).begin();iter3!=(*iter2).end();iter3++)
176  stream << " \"" << _pov->getOutPortName((*iter3).first) << "\" and \"" << _pov->getInPortName((*iter3).second) << endl;
177  }
178  }
179  return stream.str();
180 }
std::string LinkInfo::printThereIsAre ( unsigned  val,
const std::string &  other 
)
staticprotected

Definition at line 389 of file LinkInfo.cxx.

References PMMLBasicsTestLauncher::ret.

Referenced by getGlobalRepr().

390 {
391  ostringstream ret;
392  ret << "There ";
393  if(val==0)
394  ret << "are no";
395  else if(val==1)
396  ret << "is one";
397  else
398  ret << "are " << val;
399  ret << " " << other;
400  if(val==0 || val>1)
401  ret << "s";
402  return ret.str();
403 }
void LinkInfo::pushErrLink ( OutPort semStart,
InPort end,
ErrReason  reason 
) throw (Exception)

Definition at line 86 of file LinkInfo.cxx.

References YACS::ENGINE::E_NEVER_SET_INPUTPORT, and YACS::ENGINE::E_ONLY_BACKWARD_DEFINED.

Referenced by YACS::ENGINE::Bloc::checkCFLinks(), YACS::ENGINE::Bloc::checkControlDependancy(), and YACS::ENGINE::ComposedNode::solveObviousOrDelegateCFLinks().

87 {
88  if(reason==E_NEVER_SET_INPUTPORT)
89  _unsetInPort.push_back(end);
90  else if(reason==E_ONLY_BACKWARD_DEFINED)
91  _onlyBackDefined.push_back(end);
92  else
93  _errors[reason].push_back(pair<OutPort *, InPort *>(semStart,end));
94  if(_level==0)
96  throw Exception(getErrRepr());
97 }
void LinkInfo::pushErrSwitch ( CollectorSwOutPort collector) throw (Exception)

Definition at line 99 of file LinkInfo.cxx.

Referenced by YACS::ENGINE::CollectorSwOutPort::checkConsistency().

100 {
101  _errorsOnSwitchCases.push_back(collector);
102  if(_level==0)
104  throw Exception(getErrRepr());
105 }
void LinkInfo::pushInfoLink ( OutPort semStart,
InPort end,
InfoReason  reason 
)
void LinkInfo::pushUselessCFLink ( Node start,
Node end 
)

Definition at line 107 of file LinkInfo.cxx.

References _uselessLinks.

Referenced by YACS::ENGINE::Bloc::findUselessLinksIn(), and YACS::ENGINE::Bloc::performCFComputationsOnlyOneLevel().

108 {
109  _uselessLinks.insert(pair<Node *,Node *>(start,end));
110 }
void LinkInfo::pushWarnLink ( OutPort semStart,
InPort end,
WarnReason  reason 
)

Definition at line 76 of file LinkInfo.cxx.

References _collapse.

Referenced by YACS::ENGINE::ComposedNode::checkCFLinks(), YACS::ENGINE::ComposedNode::solveObviousOrDelegateCFLinks(), YACS::ENGINE::Bloc::verdictForCollapses(), and YACS::ENGINE::Bloc::verdictForOkAndUseless1().

77 {
78  if(_collapse[reason].empty())
79  _collapse[reason].push_back(vector< pair<OutPort *,InPort *> >());
80  else
81  if(_collapse[reason].back()[0].second!=end)
82  _collapse[reason].push_back(vector< pair<OutPort *,InPort *> >());
83  _collapse[reason].back().push_back(pair<OutPort *,InPort *>(semStart,end));
84 }
void LinkInfo::setPointOfView ( ComposedNode pov)

Definition at line 66 of file LinkInfo.cxx.

References _pov.

67 {
68  _pov=pov;
69 }
void LinkInfo::startCollapseTransac ( )

Definition at line 48 of file LinkInfo.cxx.

References _level.

Referenced by YACS::ENGINE::Bloc::verdictForCollapses().

49 {
50  _level++;
51 }
void LinkInfo::takeDecision ( ) const throw (Exception)

Definition at line 112 of file LinkInfo.cxx.

References _errors, and getErrRepr().

113 {
114  if(!_errors.empty())
115  throw Exception(getErrRepr());
116 }

Member Data Documentation

std::map<WarnReason, std::vector< std::vector< std::pair<OutPort *,InPort *> > > > YACS::ENGINE::LinkInfo::_collapse
private
std::map<ErrReason, std::vector< std::pair<OutPort *,InPort *> > > YACS::ENGINE::LinkInfo::_errors
private

Definition at line 93 of file LinkInfo.hxx.

Referenced by clearAll(), getErrLink(), getErrRepr(), getNumberOfErrLinks(), and takeDecision().

std::vector<CollectorSwOutPort *> YACS::ENGINE::LinkInfo::_errorsOnSwitchCases
private

Definition at line 94 of file LinkInfo.hxx.

Referenced by clearAll(), getErrRepr(), and getNumberOfErrLinks().

std::map<InfoReason, std::vector< std::pair<OutPort *,InPort *> > > YACS::ENGINE::LinkInfo::_infos
private

Definition at line 91 of file LinkInfo.hxx.

Referenced by clearAll(), getInfoLink(), getInfoRepr(), getNumberOfInfoLinks(), and pushInfoLink().

unsigned int YACS::ENGINE::LinkInfo::_level
private

Definition at line 86 of file LinkInfo.hxx.

Referenced by clearAll(), endCollapseTransac(), and startCollapseTransac().

unsigned char YACS::ENGINE::LinkInfo::_levelOfInfo
private

Definition at line 87 of file LinkInfo.hxx.

Referenced by endCollapseTransac().

std::vector<InPort *> YACS::ENGINE::LinkInfo::_onlyBackDefined
private
ComposedNode* YACS::ENGINE::LinkInfo::_pov
private

Definition at line 85 of file LinkInfo.hxx.

Referenced by getErrRepr(), getInfoRepr(), getWarnRepr(), and setPointOfView().

std::vector<InPort *> YACS::ENGINE::LinkInfo::_unsetInPort
private
std::set< std::pair<Node *, Node *> > YACS::ENGINE::LinkInfo::_uselessLinks
private
const unsigned char YACS::ENGINE::LinkInfo::ALL_DONT_STOP = 2
static

Definition at line 127 of file LinkInfo.hxx.

Referenced by main().

const unsigned char YACS::ENGINE::LinkInfo::ALL_STOP_ASAP = 1
static

Definition at line 126 of file LinkInfo.hxx.

Referenced by endCollapseTransac(), and YACS::HMI::GenericGui::onRunLoadedSchema().

const unsigned char YACS::ENGINE::LinkInfo::WARN_ONLY_DONT_STOP = 3
static

Definition at line 128 of file LinkInfo.hxx.

Referenced by endCollapseTransac().


The documentation for this class was generated from the following files: