summaryrefslogtreecommitdiff
path: root/src/Simplex_tree
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-05 14:14:27 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-03-05 14:14:27 +0100
commit19ea0c10f283188282a78ebebf4c1a51f2f40040 (patch)
tree8e29b52c14446251a9755addf9a9e27398042904 /src/Simplex_tree
parent5b5e9fce6a80151f29f98dde67f5e4150edb9a5b (diff)
CR: use complex_simplex_range instead of filtration_simplex_range
Diffstat (limited to 'src/Simplex_tree')
-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