diff --git a/src/util/Numerical.js b/src/util/Numerical.js index f1d62053..3f3a85bd 100644 --- a/src/util/Numerical.js +++ b/src/util/Numerical.js @@ -151,8 +151,6 @@ var Numerical = new function() { * (zero crossings) and and returns the solutions in an array. * * a*x^3 + b*x^2 + c*x + d = 0 - * - * */ solveCubic: function(a, b, c, d, tolerance) { // After Numerical Recipes in C, 2nd edition, Press et al.,