| 1032 | } |
| 1033 | |
| 1034 | inline boost::graph_traits<vtkDirectedGraph*>::degree_size_type in_degree( |
| 1035 | boost::graph_traits<vtkDirectedGraph*>::vertex_descriptor u, vtkDirectedGraph* g) |
| 1036 | { |
| 1037 | return g->GetInDegree(u); |
| 1038 | } |
| 1039 | |
| 1040 | inline boost::graph_traits<vtkGraph*>::degree_size_type degree( |
| 1041 | boost::graph_traits<vtkGraph*>::vertex_descriptor u, vtkGraph* g) |
nothing calls this directly
no test coverage detected