summaryrefslogtreecommitdiff
path: root/python/README.rst
diff options
context:
space:
mode:
authorBryn Keller <xoltar@xoltar.org>2017-01-30 18:12:18 -0800
committerBryn Keller <xoltar@xoltar.org>2017-01-30 18:12:18 -0800
commit5485d57c5632c54c5c377a17672b88357c6455db (patch)
tree668379dd8f6fef6844b81630106f7efcf9706c00 /python/README.rst
parent872ca92b33ebe92dff2542cbdee6768e575e80aa (diff)
Use default representation for example rather than vector_vector
Diffstat (limited to 'python/README.rst')
-rw-r--r--python/README.rst6
1 files changed, 4 insertions, 2 deletions
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, []),