#include #include #include TEST_CASE("triangle_triangle_adjacency: dot", "[igl]" "[slow]") { const auto test_case = [](const std::string ¶m) { Eigen::MatrixXd V; Eigen::MatrixXi F,TT,TTi; // Load example mesh: GetParam() will be name of mesh file igl::read_triangle_mesh(test_common::data_path(param), V, F); igl::triangle_triangle_adjacency(F,TT,TTi); REQUIRE (TT.rows() == F.rows()); REQUIRE (TTi.rows() == F.rows()); REQUIRE (TT.cols() == F.cols()); REQUIRE (TTi.cols() == F.cols()); for(int f = 0;f= 0) { REQUIRE (F.rows() > TT(f,c)); REQUIRE (0 <= TTi(f,c)); REQUIRE (3 > TTi(f,c)); REQUIRE (f == TT(TT(f,c),TTi(f,c))); } } } // REQUIRE (b == a); // REQUIRE (a==b); // REQUIRE(a == Approx(b).margin(1e-15)) // REQUIRE (1e-12 > a); }; test_common::run_test_cases(test_common::manifold_meshes(), test_case); }