1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-17 07:04:41 +00:00

now HDF5, Minuit and NLopt are really optional dependencies

This commit is contained in:
2016-04-12 20:31:53 +01:00
parent 9bf538dfca
commit bd9e0262ca
6 changed files with 23 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
#include <LatAnalyze/CompiledFunction.hpp>
#include <LatAnalyze/MinuitMinimizer.hpp>
#include <LatAnalyze/GslMinimizer.hpp>
using namespace std;
using namespace Latan;
@@ -16,8 +16,8 @@ int main(int argc, char* argv[])
}
source = argv[1];
DoubleFunction f = compile(source, 1);
MinuitMinimizer minimize;
DoubleFunction f = compile(source, 1);
GslMinimizer minimize;
DVec init(1);
double min;