mirror of https://github.com/CGAL/cgal
Merge remote-tracking branch 'remotes/origin/BGL-fix_example-GF' into releases/CGAL-4.5-branch
Fix the example examples/BGL_triangulation_2/emst.cpp: the filtered (finite) triangulation was not used. Tested in CGAL-4.5.1-Ic-167. Approved by the Release Manager.
This commit is contained in:
commit
ad53e42fb3
|
|
@ -75,7 +75,7 @@ main(int,char*[])
|
||||||
|
|
||||||
// In the function call you can see a named parameter: vertex_index_map
|
// In the function call you can see a named parameter: vertex_index_map
|
||||||
std::list<edge_descriptor> mst;
|
std::list<edge_descriptor> mst;
|
||||||
boost::kruskal_minimum_spanning_tree(t,
|
boost::kruskal_minimum_spanning_tree(ft,
|
||||||
std::back_inserter(mst),
|
std::back_inserter(mst),
|
||||||
vertex_index_map(vertex_index_pmap));
|
vertex_index_map(vertex_index_pmap));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue