summaryrefslogtreecommitdiff
path: root/src/GudhUI/model
diff options
context:
space:
mode:
authorsalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 12:01:58 +0000
committersalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 12:01:58 +0000
commit6a3d2ddd53e852dee84e6efc70f6d511798bef9c (patch)
treefad69b214afcf23de9a11937d0714f84d47ef3cb /src/GudhUI/model
parenta160f39457e8dc0947dc5d6865c020a285a50df6 (diff)
correct problem priority contraction
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@430 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 16f49b81d6aa01bbfb6e11afa579ac574a87bdaa
Diffstat (limited to 'src/GudhUI/model')
-rw-r--r--src/GudhUI/model/Model.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/GudhUI/model/Model.h b/src/GudhUI/model/Model.h
index abb2fd6a..ab92d0cf 100644
--- a/src/GudhUI/model/Model.h
+++ b/src/GudhUI/model/Model.h
@@ -234,9 +234,13 @@ public:
void show_homology_group(){
+#ifndef _WIN32
+ std::cout << "Works only on linux for the moment\n";
+#else
Clock clock;
run_chomp();
clock.end();
+#endif
}
void show_euler_characteristic(){
@@ -263,6 +267,7 @@ public:
private:
void run_chomp(){
save_complex_in_file_for_chomp();
+ std::cout << "Call CHOMP library\n";
system("../src/utils/homsimpl chomp.sim");
}