From 94d98ed0dcaae94a549b1cfbe30c386aefd74ea9 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Mon, 11 May 2020 06:47:13 +0200 Subject: [PATCH] c3t3 cell info in the .mesh file is subdomain_index() the recent internal changes in build_triangulation() use subdomain_index(), which is part of the concept MeshCellBase_3 --- Mesh_3/test/Mesh_3/test_c3t3_into_facegraph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mesh_3/test/Mesh_3/test_c3t3_into_facegraph.cpp b/Mesh_3/test/Mesh_3/test_c3t3_into_facegraph.cpp index 124cb0f75aa..6df89caf971 100644 --- a/Mesh_3/test/Mesh_3/test_c3t3_into_facegraph.cpp +++ b/Mesh_3/test/Mesh_3/test_c3t3_into_facegraph.cpp @@ -49,8 +49,8 @@ int main (int argc, char** argv){ cit != c3t3.triangulation().finite_cells_end(); ++cit) { - CGAL_assertion(cit->info() >= 0); - c3t3.add_to_complex(cit, cit->info()); + CGAL_assertion(cit->subdomain_index() >= 0); + c3t3.add_to_complex(cit, cit->subdomain_index()); for(int i=0; i < 4; ++i) { if(cit->surface_patch_index(i)>0)