(a, b, c, d float64)
| 1001 | } |
| 1002 | |
| 1003 | func SolveCubicFormula(a, b, c, d float64) (float64, float64, float64) { |
| 1004 | return solveCubicFormula(a, b, c, d) |
| 1005 | } |
| 1006 | |
| 1007 | // see https://www.geometrictools.com/Documentation/LowDegreePolynomialRoots.pdf |
| 1008 | // see https://github.com/thelonious/kld-polynomial/blob/development/lib/Polynomial.js |
nothing calls this directly
no test coverage detected