From 1726850e83fe98606b65f881dce781c3e0ba141f Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 7 Aug 2018 13:27:23 +0000 Subject: Fix issue #13 : [Global - utilities] use exit(-1) instead of std::abort in utilities git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ninja_cmake_warning_fix_vincent@3749 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 3235f72cc618dcb6ab70b1826a4d3ce2608fa168 --- src/Witness_complex/utilities/strong_witness_persistence.cpp | 2 +- src/Witness_complex/utilities/weak_witness_persistence.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Witness_complex/utilities') diff --git a/src/Witness_complex/utilities/strong_witness_persistence.cpp b/src/Witness_complex/utilities/strong_witness_persistence.cpp index 9d23df74..f386e992 100644 --- a/src/Witness_complex/utilities/strong_witness_persistence.cpp +++ b/src/Witness_complex/utilities/strong_witness_persistence.cpp @@ -151,6 +151,6 @@ void program_options(int argc, char* argv[], int& nbL, std::string& file_name, s std::cout << "Usage: " << argv[0] << " [options] input-file" << std::endl << std::endl; std::cout << visible << std::endl; - std::abort(); + exit(-1); } } diff --git a/src/Witness_complex/utilities/weak_witness_persistence.cpp b/src/Witness_complex/utilities/weak_witness_persistence.cpp index 1315d2ba..ea00cfe7 100644 --- a/src/Witness_complex/utilities/weak_witness_persistence.cpp +++ b/src/Witness_complex/utilities/weak_witness_persistence.cpp @@ -151,6 +151,6 @@ void program_options(int argc, char* argv[], int& nbL, std::string& file_name, s std::cout << "Usage: " << argv[0] << " [options] input-file" << std::endl << std::endl; std::cout << visible << std::endl; - std::abort(); + exit(-1); } } -- cgit v1.2.3 From 76c4bde05eb39e17579c63c7e161648ec689bac6 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Thu, 4 Oct 2018 14:09:04 +0000 Subject: Documentation change for github website git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@3932 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 7044071afd3a3e629ea66ed3647c00d023f60692 --- src/Alpha_complex/utilities/alphacomplex.md | 4 ++-- src/Bottleneck_distance/utilities/bottleneckdistance.md | 2 +- src/Witness_complex/utilities/witnesscomplex.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Witness_complex/utilities') diff --git a/src/Alpha_complex/utilities/alphacomplex.md b/src/Alpha_complex/utilities/alphacomplex.md index 0fe98837..b1a33e4b 100644 --- a/src/Alpha_complex/utilities/alphacomplex.md +++ b/src/Alpha_complex/utilities/alphacomplex.md @@ -143,7 +143,7 @@ where * `` is the path to the input point cloud in [nOFF ASCII format](http://www.geomview.org/docs/html/OFF.html). * `` is the path to the file describing the periodic domain. It must be in the format described -[here](/doc/latest/fileformats.html#FileFormatsIsoCuboid). +[here]({{ site.officialurl }}/doc/latest/fileformats.html#FileFormatsIsoCuboid). **Allowed options** @@ -161,5 +161,5 @@ periodic_alpha_complex_3d_persistence ../../data/points/grid_10_10_10_in_0_1.off N.B.: -* Cuboid file must be in the format described [here](/doc/latest/fileformats.html#FileFormatsIsoCuboid). +* Cuboid file must be in the format described [here]({{ site.officialurl }}/doc/latest/fileformats.html#FileFormatsIsoCuboid). * Filtration values are alpha square values. diff --git a/src/Bottleneck_distance/utilities/bottleneckdistance.md b/src/Bottleneck_distance/utilities/bottleneckdistance.md index 939eb911..a81426cf 100644 --- a/src/Bottleneck_distance/utilities/bottleneckdistance.md +++ b/src/Bottleneck_distance/utilities/bottleneckdistance.md @@ -22,5 +22,5 @@ This program computes the Bottleneck distance between two persistence diagram fi where -* `` and `` must be in the format described [here](/doc/latest/fileformats.html#FileFormatsPers). +* `` and `` must be in the format described [here]({{ site.officialurl }}/doc/latest/fileformats.html#FileFormatsPers). * `` is an error bound on the bottleneck distance (set by default to the smallest positive double value). diff --git a/src/Witness_complex/utilities/witnesscomplex.md b/src/Witness_complex/utilities/witnesscomplex.md index da453cce..7ea397b9 100644 --- a/src/Witness_complex/utilities/witnesscomplex.md +++ b/src/Witness_complex/utilities/witnesscomplex.md @@ -10,7 +10,7 @@ Leave the lines above as it is required by the web site generator 'Jekyll' {:/comment} -For more details about the witness complex, please read the [user manual of the package](/doc/latest/group__witness__complex.html). +For more details about the witness complex, please read the [user manual of the package]({{ site.officialurl }}/doc/latest/group__witness__complex.html). ## weak_witness_persistence ## This program computes the persistent homology with coefficient field *Z/pZ* of a Weak witness complex defined on a set of input points. -- cgit v1.2.3