diff --git a/web/app/sketcher/parametric.js b/web/app/sketcher/parametric.js index 88e95e8f..a6ca374b 100644 --- a/web/app/sketcher/parametric.js +++ b/web/app/sketcher/parametric.js @@ -294,10 +294,10 @@ TCAD.TWO.ParametricManager.prototype.prepare = function(locked) { for (var i = 0; i < solvers.length; i++) { var alg = subSystems[i].alg; if (solvers[i].solve(rough, alg) !== 1) { - alg = alg == 1 ? 2 : 1; - if (solvers[i].solve(rough, alg) == 1) { - subSystems[i].alg = alg; - } + //alg = alg == 1 ? 2 : 1; + //if (solvers[i].solve(rough, alg) == 1) { + // subSystems[i].alg = alg; + //} } } },