Skip to content

Commit

Permalink
One more verbosity print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
natemacfadden committed Nov 10, 2024
1 parent ddb6b03 commit 50b6084
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cytools/cone.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,8 @@ def rays(self, use_extremal_hyperplanes: bool=False, verbosity: int=0):
rays.append(tuple(-int(c) for c in gen.coefficients()))

# save/return
if verbosity >= 1:
print("Saving the rays & computing dimension...")
self._rays = np.array(rays, dtype=int)
self._dim = np.linalg.matrix_rank(self._rays)
return np.array(self._rays)
Expand Down

0 comments on commit 50b6084

Please sign in to comment.