summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-02 16:01:16 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-02 16:01:16 +0000
commit57a4ff3594b485a65fef206e03245a995f2feaf7 (patch)
treee60b6fa27bf5d4fa96fcd4aadb96fcef8b658aac /src/Nerve_GIC/example
parentca4682c8e798de69a8fd0f20d45d87afc82ab01e (diff)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2050 636b058d-ea47-450e-bf9e-a15bfbe3eedb
Former-commit-id: 5d5ac9254bef7efff947be09a2fa587a7732f00d
Diffstat (limited to 'src/Nerve_GIC/example')
-rw-r--r--src/Nerve_GIC/example/simple_GIC.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Nerve_GIC/example/simple_GIC.cpp b/src/Nerve_GIC/example/simple_GIC.cpp
index f12676f3..e3d19cc8 100644
--- a/src/Nerve_GIC/example/simple_GIC.cpp
+++ b/src/Nerve_GIC/example/simple_GIC.cpp
@@ -28,7 +28,8 @@ 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_cover_from_function(function_file_name,resolution,gain,0);
- GIC.find_GIC_simplices();
+ //GIC.find_GIC_simplices();
+ GIC.find_GIC_simplices_with_functional_minimal_cover(resolution,gain);
Simplex_tree stree; GIC.create_complex(stree);
std::streambuf* streambufffer;