summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-10 21:17:19 +0000
committerglisse <glisse@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-10 21:17:19 +0000
commitc537a466ffdd812d92098bcea04cdf6f0bfc64ec (patch)
tree797e1fd9fe73e6a831d4422da0e99e3058cd8e91 /src
parent0567f550258966a12911cd3ffe490852c022c358 (diff)
Example text and copyright year
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/sparserips-python@3937 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6d5bf6a2c55f7c4fd4f3f5159651b3ffa057ffdd
Diffstat (limited to 'src')
-rwxr-xr-xsrc/cython/example/sparse_rips_persistence_diagram.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cython/example/sparse_rips_persistence_diagram.py b/src/cython/example/sparse_rips_persistence_diagram.py
index 3bed87c1..d58c244c 100755
--- a/src/cython/example/sparse_rips_persistence_diagram.py
+++ b/src/cython/example/sparse_rips_persistence_diagram.py
@@ -8,7 +8,7 @@ import gudhi
Author(s): Marc Glisse
- Copyright (C) 2016 Inria
+ Copyright (C) 2018 Inria
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -25,11 +25,11 @@ import gudhi
"""
__author__ = "Marc Glisse"
-__copyright__ = "Copyright (C) 2016 Inria"
+__copyright__ = "Copyright (C) 2018 Inria"
__license__ = "GPL v3"
print("#####################################################################")
-print("RipsComplex creation from points")
+print("Sparse RipsComplex creation from points")
rips = gudhi.RipsComplex(points=[[0, 0], [0, 0.1], [1, 0], [0, 1], [1, 1]],
max_edge_length=42, sparse=.5)