From 5485d57c5632c54c5c377a17672b88357c6455db Mon Sep 17 00:00:00 2001 From: Bryn Keller Date: Mon, 30 Jan 2017 18:12:18 -0800 Subject: Use default representation for example rather than vector_vector --- python/README.rst | 6 ++++-- python/src/simple_example.py | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/README.rst b/python/README.rst index 0c6c391..52bc150 100644 --- a/python/README.rst +++ b/python/README.rst @@ -99,8 +99,10 @@ Now the code:: import phat - # define a boundary matrix with the chosen internal representation - boundary_matrix = phat.boundary_matrix(representation = phat.representations.vector_vector) + boundary_matrix = phat.boundary_matrix() + + # or define a boundary matrix with the chosen internal representation + # boundary_matrix = phat.boundary_matrix(representation = phat.representations.bit_tree_pivot_column) # set the respective columns -- (dimension, boundary) pairs boundary_matrix.columns = [ (0, []), diff --git a/python/src/simple_example.py b/python/src/simple_example.py index 955e213..7aa6214 100644 --- a/python/src/simple_example.py +++ b/python/src/simple_example.py @@ -21,8 +21,10 @@ if __name__ == "__main__": import phat - # define a boundary matrix with the chosen internal representation - boundary_matrix = phat.boundary_matrix(representation = phat.representations.vector_vector) + boundary_matrix = phat.boundary_matrix() + + # or define a boundary matrix with the chosen internal representation + # boundary_matrix = phat.boundary_matrix(representation = phat.representations.bit_tree_pivot_column) # set the respective columns -- (dimension, boundary) pairs boundary_matrix.columns = [ (0, []), -- cgit v1.2.3