1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 13:35:38 +01:00
LatAnalyze/examples/exMin.cpp

30 lines
628 B
C++
Raw Normal View History

2014-02-20 20:21:45 +00:00
#include <iostream>
2014-03-13 18:51:01 +00:00
#include <LatAnalyze/CompiledFunction.hpp>
#include <LatAnalyze/MinuitMinimizer.hpp>
2014-02-20 20:21:45 +00:00
using namespace std;
using namespace Latan;
int main(int argc, char* argv[])
{
string source;
if (argc != 2)
{
cerr << "usage: " << argv[0] << " <function>" << endl;
return EXIT_FAILURE;
}
source = argv[1];
CompiledDoubleFunction f(1, source);
MinuitMinimizer minimizer;
double min;
minimizer.setVerbosity(Minimizer::Verbosity::Debug);
min = minimizer(f)(0);
cout << "function minimum = " << min << endl;
return EXIT_SUCCESS;
}