The Gaudi Framework  v32r0 (3325bb39)
concurrency::RankerByEccentricity Class Reference

#include <src/PRGraph/Visitors/Rankers.h>

Inheritance diagram for concurrency::RankerByEccentricity:
Collaboration diagram for concurrency::RankerByEccentricity:

Public Member Functions

bool visit (AlgorithmNode &) override
 
- Public Member Functions inherited from concurrency::IGraphVisitor
virtual ~IGraphVisitor ()=default
 
virtual bool visitEnter (DecisionNode &) const
 
virtual bool visit (DecisionNode &)
 
virtual bool visitEnter (AlgorithmNode &) const
 
virtual bool visitEnter (DataNode &) const
 
virtual bool visit (DataNode &)
 
virtual bool visitEnter (ConditionNode &) const
 
virtual bool visit (ConditionNode &)
 
virtual void reset ()
 

Detailed Description

Definition at line 39 of file Rankers.h.

Member Function Documentation

bool concurrency::RankerByEccentricity::visit ( AlgorithmNode node)
overridevirtual

Reimplemented from concurrency::IGraphVisitor.

Definition at line 108 of file Rankers.cpp.

108  {
109 
110  std::ifstream myfile;
111  myfile.open( "Eccentricity.graphml", std::ios::in );
112 
113  precedence::PrecTrace execPlan;
114 
115  boost::dynamic_properties dp;
116  using boost::get;
117 
118  dp.property( "name", get( &precedence::AlgoTraceProps::m_name, execPlan ) );
119  dp.property( "Eccentricity", get( &precedence::AlgoTraceProps::m_eccentricity, execPlan ) );
120 
121  boost::read_graphml( myfile, execPlan, dp );
122 
123  typedef boost::graph_traits<precedence::PrecTrace>::vertex_iterator itV;
125 
126  for ( vp = boost::vertices( execPlan ); vp.first != vp.second; ++vp.first ) {
127  precedence::AlgoTraceVertex v = *vp.first;
128  auto index = get( &precedence::AlgoTraceProps::m_name, execPlan );
129  if ( index[v] == node.getNodeName() ) {
130  auto index_eccentricity = get( &precedence::AlgoTraceProps::m_eccentricity, execPlan );
131  float rank = index_eccentricity[v];
132  node.setRank( rank );
133  // std::cout << "Rank of " << index[v] << " is " << rank << std::endl;
134  }
135  }
136  return true;
137  }
auto get(const Handle &handle, const Algo &, const EventContext &) -> decltype(details::deref(handle.get()))
T open(T...args)
boost::graph_traits< PrecTrace >::vertex_descriptor AlgoTraceVertex
boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, AlgoTraceProps > PrecTrace
STL class.

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