summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/GudhUI/model/Model.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/GudhUI/model/Model.h b/src/GudhUI/model/Model.h
index b17a5c8f..48ba9622 100644
--- a/src/GudhUI/model/Model.h
+++ b/src/GudhUI/model/Model.h
@@ -307,9 +307,15 @@ class Model {
private:
void run_chomp() {
save_complex_in_file_for_chomp();
+ std::cout << "POUET" << std::endl;
std::cout << "Call CHOMP library\n";
- int returnValue = system("utils/homsimpl chomp.sim");
- std::cout << "CHOMP returns" << returnValue << std::endl;
+ int returnValue = system("which homsimpl");
+ if (returnValue != 0) {
+ std::cout << "CHOMP must be installed and available in PATH for this functionnality." << std::endl;
+ return;
+ }
+ returnValue = system("homsimpl chomp.sim");
+ std::cout << "CHOMP returns " << returnValue << std::endl;
}
void save_complex_in_file_for_chomp() {