Skip to content

Commit

Permalink
fix small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrine committed Feb 18, 2019
1 parent 5fb58ff commit 9b2b099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geoopt/manifolds/poincare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _check_shape(self, x, name):
reason = None
return ok, reason

def _check_point_on_manifold(self, x, explain=False, atol=1e-5, rtol=1e-5):
def _check_point_on_manifold(self, x, atol=1e-5, rtol=1e-5):
px = math.project(x, c=self.c)
ok = torch.allclose(x, px, atol=atol, rtol=rtol)
if not ok:
Expand Down

0 comments on commit 9b2b099

Please sign in to comment.