add missing function required by the concept

This commit is contained in:
Sébastien Loriot 2019-02-26 09:11:07 +01:00
parent 3b6715cef5
commit 5ee640be6c
1 changed files with 11 additions and 0 deletions

View File

@ -650,6 +650,17 @@ degree(typename boost::graph_traits<Face_filtered_graph<Graph, FIMap, VIMap, HIM
return v_deg;
}
template<typename Graph,
typename FIMap,
typename VIMap,
typename HIMap>
typename boost::graph_traits<Graph>::degree_size_type
degree(typename boost::graph_traits<Face_filtered_graph<Graph, FIMap, VIMap, HIMap> >::face_descriptor f,
const Face_filtered_graph<Graph, FIMap, VIMap, HIMap>& w)
{
return degree(f, w.graph());
}
template<typename Graph,
typename FIMap,
typename VIMap,