From aeda76352b9b54857030ce3f126b835c8296e311 Mon Sep 17 00:00:00 2001 From: Evan Kiefl Date: Sat, 18 Jan 2025 14:53:55 -0800 Subject: [PATCH] Update docstring --- pooltool/ptmath/roots/quartic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pooltool/ptmath/roots/quartic.py b/pooltool/ptmath/roots/quartic.py index 7bb172a9..e4363e15 100644 --- a/pooltool/ptmath/roots/quartic.py +++ b/pooltool/ptmath/roots/quartic.py @@ -66,8 +66,8 @@ def solve_quartics( `np.inf` is returned. Notes: - - This solver fails for cubic (a=0) and quadratic (a=b=0) formulations with - NotImplementedError. + - This solver fails for cubic (a=0) formulations with NotImplementedError, and + has a subroutine for solving quadratics (a=b=0). """ assert QuarticSolver(solver)