summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/FuncGIC.cpp
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-21 00:15:29 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-21 00:15:29 +0000
commit4714ef44a23b156c16b04550c7b519cf456cb4c2 (patch)
treef7aaea465ad65803f8f55a4ffbd744d31be6a8fb /src/Nerve_GIC/example/FuncGIC.cpp
parentec228f211bd29661951c397fea55f934ab6369ac (diff)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2799 636b058d-ea47-450e-bf9e-a15bfbe3eedb
Former-commit-id: e41f8d57ca5e3e6ab90020f716d6362c73ee48da
Diffstat (limited to 'src/Nerve_GIC/example/FuncGIC.cpp')
-rw-r--r--src/Nerve_GIC/example/FuncGIC.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Nerve_GIC/example/FuncGIC.cpp b/src/Nerve_GIC/example/FuncGIC.cpp
index 56c97b7f..71448ea4 100644
--- a/src/Nerve_GIC/example/FuncGIC.cpp
+++ b/src/Nerve_GIC/example/FuncGIC.cpp
@@ -50,15 +50,17 @@ int main(int argc, char **argv) {
if(!check) std::cout << "Incorrect OFF file." << std::endl;
else{
+ GIC.set_type("GIC");
+
GIC.set_color_from_file(func_file_name);
GIC.set_function_from_file(func_file_name);
GIC.set_graph_from_automatic_rips(Gudhi::Euclidean_distance());
- GIC.set_automatic_resolution_for_GIC(); GIC.set_gain();
+ GIC.set_automatic_resolution(); GIC.set_gain();
GIC.set_cover_from_function();
- GIC.find_GIC_simplices_with_functional_minimal_cover();
+ GIC.find_simplices();
GIC.plot_DOT();