Skip to content

Commit

Permalink
circuit-sim: jshint ignore vendored dopri fn
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jun 7, 2021
1 parent 434dc95 commit e64c503
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@
this.redraw();
};

/* jshint ignore:start */
/**
* Duplication of the numeric.dopri function to introduce a non-negativity constraint.
*
Expand Down Expand Up @@ -361,7 +362,8 @@ numeric.dopri_nonnegative = function dopri(x0,x1,y0,f,tol,maxit,event) {
}
ret.iterations = it;
return ret;
};
};
/* jshint ignore:end */


CircuitSimulation.prototype.resize = function() {
Expand Down

0 comments on commit e64c503

Please sign in to comment.