Skip to content

Commit

Permalink
Fixing verified distance computation (that was not yet exercised and …
Browse files Browse the repository at this point in the history
…failed) and adding commment to python tiling code.
  • Loading branch information
unhyperbolic committed Feb 7, 2024
1 parent 82d819b commit 9d41cef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/geometric_structure/geodesic/tiles_for_geodesic.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def compute_tiles_for_geodesic(mcomplex : Mcomplex,
geometric structure and a suitable GeodesicInfo object.
To add the necessary geometric structure to a triangulation, call
add_r13_geometry and .
add_r13_geometry and add_r13_planes_to_tetrahedra.
The GeodesicInfo object needs to be constructed with a line and
GeodesicInfo.find_tet_or_core_curve be called on it.
Expand Down
2 changes: 1 addition & 1 deletion python/hyperboloid/distances.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def _safe_log_non_neg(p):
def _safe_arccosh(p):
if is_RealIntervalFieldElement(p):
RIF = p.parent()
p = pintersection(RIF(1, sage.all.Infinity))
p = p.intersection(RIF(1, sage.all.Infinity))
else:
if p < 0:
RF = p.parent()
Expand Down

0 comments on commit 9d41cef

Please sign in to comment.