GraphLibrary  0.0.1
A simple library that implements various graph algorithms.
 All Classes Namespaces Files Functions Variables Typedefs Macros
UpdateFlaggedEntities.hpp File Reference

Go to the source code of this file.

Namespaces

 gl::interface
 

Functions

template<class GRAPH , class EDGE_SELECTOR >
void gl::interface::colorFlaggedEdges (GRAPH &graph, EDGE_SELECTOR &&selector)
 Colors edges selectively using a selector function. More...
 
template<class GRAPH , class NODE_SELECTOR >
void gl::interface::colorFlaggedNodes (GRAPH &graph, NODE_SELECTOR &&selector)
 Colors nodes selectively using a selector function. More...
 
template<class GRAPH , class EDGE_SELECTOR , class NODE_SELECTOR >
void gl::interface::colorFlaggedEntities (GRAPH &graph, EDGE_SELECTOR &&edge_selector, NODE_SELECTOR &&node_selector)
 Colors nodes & edges selectively using a selector function. More...