summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example
diff options
context:
space:
mode:
Diffstat (limited to 'src/Nerve_GIC/example')
-rw-r--r--src/Nerve_GIC/example/simple_GIC.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Nerve_GIC/example/simple_GIC.cpp b/src/Nerve_GIC/example/simple_GIC.cpp
index ec183a5d..fd6d9ee6 100644
--- a/src/Nerve_GIC/example/simple_GIC.cpp
+++ b/src/Nerve_GIC/example/simple_GIC.cpp
@@ -28,10 +28,11 @@ int main(int argc, char **argv) {
Gudhi::graph_induced_complex::Graph_induced_complex GIC;
GIC.set_graph_from_rips(threshold, off_file_name);
+ //GIC.set_graph_from_OFF(off_file_name);
GIC.set_function_from_coordinate(coord, off_file_name);
GIC.set_cover_from_function(resolution,gain,0);
- //GIC.find_GIC_simplices();
- GIC.find_GIC_simplices_with_functional_minimal_cover(resolution,gain);
+ GIC.find_GIC_simplices();
+ //GIC.find_GIC_simplices_with_functional_minimal_cover();
Simplex_tree stree; GIC.create_complex(stree);
std::streambuf* streambufffer;