#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include <boost/graph/cuthill_mckee_ordering.hpp>
#include "IOrderingAlgorithm.h"
#include "util.h"
#include "common/error.h"
#include "common/log.h"
Go to the source code of this file.
|
namespace | ug |
| the ug namespace
|
|
|
typedef boost::adjacency_list< boost::vecS, boost::vecS, boost::undirectedS, boost::property< boost::vertex_color_t, boost::default_color_type, boost::property< boost::vertex_degree_t, int > > > | ug::Graph_t |
|
|
template<typename G_t , typename M_t > |
void | ug::induced_subgraph (G_t &ind_g, M_t *A, const std::vector< size_t > &inv_map) |
|
◆ MCKEE_GRAPH_T