From e987d5fe4abd349e957651355e63f76f8a8b293e Mon Sep 17 00:00:00 2001 From: Nate MacFadden Date: Mon, 4 Mar 2024 16:15:14 -0500 Subject: [PATCH] default stretching c=1 just sugar... since we most frequently run Cone.tip_of_stretched_cone(self, c=1) and since other stretchings are equivalent (just scale the point) --- src/cytools/cone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cytools/cone.py b/src/cytools/cone.py index 153cfbd..2db77b8 100644 --- a/src/cytools/cone.py +++ b/src/cytools/cone.py @@ -780,7 +780,7 @@ def extremal_hyperplanes(self, tol=1e-4, verbose=False): """ return self.dual().extremal_rays(tol=tol, verbose=verbose) - def tip_of_stretched_cone(self, c, backend=None, check=True, + def tip_of_stretched_cone(self, c=1, backend=None, check=True, constraint_error_tol=5e-2, max_iter=10**6, show_hints=True, verbose=False): """