mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
success
This commit is contained in:
parent
7fd42f94bc
commit
c3237d1b24
1 changed files with 2 additions and 1 deletions
|
|
@ -31,9 +31,10 @@ public class GlobalSolver {
|
|||
int count = 0;
|
||||
|
||||
solveLM_COMMONS(subSystem);
|
||||
linearSolvedCallback.run();
|
||||
if (true) return;
|
||||
|
||||
while (subSystem.valueSquared() > eps && (count++ < 1)) {
|
||||
while (subSystem.valueSquared() > eps && (count++ < 1000)) {
|
||||
solveLM_COMMONS(subSystem);
|
||||
// Solver.solve_BFGS(subSystem, false);
|
||||
// Solver.solve_DL(subSystem);
|
||||
|
|
|
|||
Loading…
Reference in a new issue