#include <ExecStreamGraphImpl.h>
Public Member Functions | |
ExplicitEdgePredicate () | |
ExplicitEdgePredicate (EdgeWeightMap weightMapInit) | |
bool | operator() (Edge const &edge) const |
Public Attributes | |
EdgeWeightMap | weightMap |
Definition at line 79 of file ExecStreamGraphImpl.h.
ExecStreamGraphImpl::ExplicitEdgePredicate::ExplicitEdgePredicate | ( | ) | [inline] |
ExecStreamGraphImpl::ExplicitEdgePredicate::ExplicitEdgePredicate | ( | EdgeWeightMap | weightMapInit | ) | [inline] |
Definition at line 90 of file ExecStreamGraphImpl.h.
00091 : weightMap(weightMapInit) 00092 { 00093 }
bool ExecStreamGraphImpl::ExplicitEdgePredicate::operator() | ( | Edge const & | edge | ) | const [inline] |
Definition at line 95 of file ExecStreamGraphImpl.h.
00096 { 00097 return boost::get(weightMap, edge) > 0; 00098 }
Definition at line 81 of file ExecStreamGraphImpl.h.