2014-09-22 15:19:30 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <LatAnalyze/Function.hpp>
|
|
|
|
#include <LatAnalyze/GslHybridRootFinder.hpp>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Latan;
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
constexpr double a = 1., b = 10.;
|
2015-02-24 17:00:19 +00:00
|
|
|
DoubleFunction f1([a](const double *x){return a*(1.-x[0]);}, 2);
|
|
|
|
DoubleFunction f2([b](const double *x){return b*(x[1]-x[0]*x[0]);}, 2);
|
2014-09-22 15:19:30 +01:00
|
|
|
vector<DoubleFunction *> system = {&f1, &f2};
|
2014-10-14 16:36:20 +01:00
|
|
|
GslHybridRootFinder solve(2);
|
2014-09-22 15:19:30 +01:00
|
|
|
DVec init(2), x;
|
|
|
|
|
|
|
|
solve.setVerbosity(Solver::Verbosity::Debug);
|
|
|
|
init(0) = -10.; init(1) = -5.;
|
|
|
|
solve.setInit(init);
|
|
|
|
x = solve(system);
|
|
|
|
cout << "solution: " << x.transpose() << endl;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|