summaryrefslogtreecommitdiff
path: root/src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp')
-rw-r--r--src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp b/src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp
index a8130e25..4697ec05 100644
--- a/src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp
+++ b/src/Simplex_tree/test/simplex_tree_make_filtration_non_decreasing_unit_test.cpp
@@ -127,7 +127,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(make_filtration_non_decreasing_on_nan_values, type
st.make_filtration_non_decreasing();
std::cout << "Check all filtration values are NaN" << std::endl;
- for (auto f_simplex : st.filtration_simplex_range()) {
+ for (auto f_simplex : st.complex_simplex_range()) {
BOOST_CHECK(std::isnan(st.filtration(f_simplex)));
}
@@ -142,7 +142,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(make_filtration_non_decreasing_on_nan_values, type
BOOST_CHECK(st.make_filtration_non_decreasing());
std::cout << "Check all filtration values are now defined" << std::endl;
- for (auto f_simplex : st.filtration_simplex_range()) {
+ for (auto f_simplex : st.complex_simplex_range()) {
BOOST_CHECK(!std::isnan(st.filtration(f_simplex)));
}
} \ No newline at end of file