1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-21 08:34:30 +00:00

minor fixes

This commit is contained in:
2014-10-14 16:36:20 +01:00
parent 9e6bbd95c3
commit 89cf008fb8
5 changed files with 13 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ int main(void)
DoubleFunction f1(2, [a](const double *x){return a*(1.-x[0]);});
DoubleFunction f2(2, [b](const double *x){return b*(x[1]-x[0]*x[0]);});
vector<DoubleFunction *> system = {&f1, &f2};
GslHybridRootFinder solve;
GslHybridRootFinder solve(2);
DVec init(2), x;
solve.setVerbosity(Solver::Verbosity::Debug);