Skip to content

Commit

Permalink
add pynormaliz to environment.yml and fix an optional
Browse files Browse the repository at this point in the history
  • Loading branch information
videlec committed Dec 1, 2023
1 parent b55803f commit 08c81eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies:
- sage-flatsurf # optional: sage_flatsurf
- pyeantic >=1.0.0,<2 # optional: pyeantic
- pyintervalxt >=3.1.0,<4 # optional: pyintervalxt
- pynormaliz # optional: pynormaliz
- sphinx >=4.2.0,<6 # optional: doc
- pip
- surface-dynamics # optional: surface_dynamics
Expand Down
4 changes: 2 additions & 2 deletions veerer/veering_triangulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3726,7 +3726,7 @@ def geometric_flips(self, backend=None):
[([3, 4, 5], 1), ([3, 4, 5], 2)]
sage: sorted(f.geometric_flips(backend='sage'))
[([3, 4, 5], 1), ([3, 4, 5], 2)]
sage: sorted(f.geometric_flips(backend='normaliz-QQ')) # optional - PyNormaliz
sage: sorted(f.geometric_flips(backend='normaliz-QQ')) # optional - pynormaliz
[([3, 4, 5], 1), ([3, 4, 5], 2)]
To be compared with the geometric flips in the ambient stratum::
Expand All @@ -3749,7 +3749,7 @@ def geometric_flips(self, backend=None):
[([4], 2), ([5], 1), ([5], 2)]
sage: sorted(f.geometric_flips(backend='sage'))
[([4], 2), ([5], 1), ([5], 2)]
sage: sorted(f.geometric_flips(backend='normaliz-QQ')) # optional - PyNormaliz
sage: sorted(f.geometric_flips(backend='normaliz-QQ')) # optional - pynormaliz
[([4], 2), ([5], 1), ([5], 2)]
TESTS::
Expand Down

0 comments on commit 08c81eb

Please sign in to comment.