summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-07-01 11:30:54 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-07-01 11:30:54 +0200
commit9cfde740f445aadd90f3ad8493dd79cf9cb15aba (patch)
tree17fe4c58e5a341238f30d8599b60058b7b1b1206 /src
parentb8dc4c2bac6815b81b7306bed2ece7f079a76ffb (diff)
Code review: it is better to keep GPL for modules depending on CGAL
Diffstat (limited to 'src')
-rw-r--r--src/cython/cython/alpha_complex.pyx2
-rw-r--r--src/cython/cython/bottleneck_distance.pyx2
-rw-r--r--src/cython/cython/euclidean_strong_witness_complex.pyx2
-rw-r--r--src/cython/cython/euclidean_witness_complex.pyx2
-rw-r--r--src/cython/cython/nerve_gic.pyx2
-rw-r--r--src/cython/cython/subsampling.pyx2
-rw-r--r--src/cython/cython/tangential_complex.pyx2
7 files changed, 7 insertions, 7 deletions
diff --git a/src/cython/cython/alpha_complex.pyx b/src/cython/cython/alpha_complex.pyx
index 48c2a046..249d51d0 100644
--- a/src/cython/cython/alpha_complex.pyx
+++ b/src/cython/cython/alpha_complex.pyx
@@ -17,7 +17,7 @@ import os
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Alpha_complex_interface.h" namespace "Gudhi":
cdef cppclass Alpha_complex_interface "Gudhi::alpha_complex::Alpha_complex_interface":
diff --git a/src/cython/cython/bottleneck_distance.pyx b/src/cython/cython/bottleneck_distance.pyx
index 455a8112..4b378cbc 100644
--- a/src/cython/cython/bottleneck_distance.pyx
+++ b/src/cython/cython/bottleneck_distance.pyx
@@ -15,7 +15,7 @@ import os
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Bottleneck_distance_interface.h" namespace "Gudhi::persistence_diagram":
double bottleneck(vector[pair[double, double]], vector[pair[double, double]], double)
diff --git a/src/cython/cython/euclidean_strong_witness_complex.pyx b/src/cython/cython/euclidean_strong_witness_complex.pyx
index e670e9af..26bd8375 100644
--- a/src/cython/cython/euclidean_strong_witness_complex.pyx
+++ b/src/cython/cython/euclidean_strong_witness_complex.pyx
@@ -14,7 +14,7 @@ from libcpp.utility cimport pair
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Euclidean_strong_witness_complex_interface.h" namespace "Gudhi":
cdef cppclass Euclidean_strong_witness_complex_interface "Gudhi::witness_complex::Euclidean_strong_witness_complex_interface":
diff --git a/src/cython/cython/euclidean_witness_complex.pyx b/src/cython/cython/euclidean_witness_complex.pyx
index 192f0221..e687c6f3 100644
--- a/src/cython/cython/euclidean_witness_complex.pyx
+++ b/src/cython/cython/euclidean_witness_complex.pyx
@@ -14,7 +14,7 @@ from libcpp.utility cimport pair
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Euclidean_witness_complex_interface.h" namespace "Gudhi":
cdef cppclass Euclidean_witness_complex_interface "Gudhi::witness_complex::Euclidean_witness_complex_interface":
diff --git a/src/cython/cython/nerve_gic.pyx b/src/cython/cython/nerve_gic.pyx
index c81125b7..3c8f1200 100644
--- a/src/cython/cython/nerve_gic.pyx
+++ b/src/cython/cython/nerve_gic.pyx
@@ -17,7 +17,7 @@ import os
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2018 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Nerve_gic_interface.h" namespace "Gudhi":
cdef cppclass Nerve_gic_interface "Gudhi::cover_complex::Nerve_gic_interface":
diff --git a/src/cython/cython/subsampling.pyx b/src/cython/cython/subsampling.pyx
index 9b80e5e9..1135c1fb 100644
--- a/src/cython/cython/subsampling.pyx
+++ b/src/cython/cython/subsampling.pyx
@@ -16,7 +16,7 @@ import os
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Subsampling_interface.h" namespace "Gudhi::subsampling":
vector[vector[double]] subsampling_n_farthest_points(vector[vector[double]] points, unsigned nb_points)
diff --git a/src/cython/cython/tangential_complex.pyx b/src/cython/cython/tangential_complex.pyx
index 1e20de30..00a84810 100644
--- a/src/cython/cython/tangential_complex.pyx
+++ b/src/cython/cython/tangential_complex.pyx
@@ -17,7 +17,7 @@ import os
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
-__license__ = "MIT"
+__license__ = "GPL v3"
cdef extern from "Tangential_complex_interface.h" namespace "Gudhi":
cdef cppclass Tangential_complex_interface "Gudhi::tangential_complex::Tangential_complex_interface":