1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/examples/exRootFinder.cpp

24 lines
639 B
C++
Raw Normal View History

2014-09-22 15:19:30 +01:00
#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};
GslHybridRootFinder solve;
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;
}