| 1026 | } |
| 1027 | |
| 1028 | inline boost::graph_traits<vtkGraph*>::degree_size_type out_degree( |
| 1029 | boost::graph_traits<vtkGraph*>::vertex_descriptor u, vtkGraph* g) |
| 1030 | { |
| 1031 | return g->GetOutDegree(u); |
| 1032 | } |
| 1033 | |
| 1034 | inline boost::graph_traits<vtkDirectedGraph*>::degree_size_type in_degree( |
| 1035 | boost::graph_traits<vtkDirectedGraph*>::vertex_descriptor u, vtkDirectedGraph* g) |
nothing calls this directly
no test coverage detected