We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54780d1 commit 7727f97Copy full SHA for 7727f97
app/engine/utils/TSQuadraticSeries.js
@@ -54,7 +54,7 @@ export function createTSQuadraticSeries (maxSeriesLength = 0) {
54
* Invariant: BinrySearchTree A contains all calculated a's (as in the general formula y = a * x^2 + b * x + c),
55
* where the a's are labeled in the BinarySearchTree with their Xi when they BEGIN in the point (Xi, Yi)
56
*/
57
- /* eslint-disable max-statements - A lot of variables have to be set */
+ /* eslint-disable max-statements -- A lot of variables have to be set */
58
function push (x, y, w = 1) {
59
if (x === undefined || isNaN(x) || y === undefined || isNaN(y)) { return }
60
0 commit comments