1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-23 01:02:02 +01:00

first minimiser implementation

This commit is contained in:
2014-02-20 20:21:45 +00:00
parent 242c3f4225
commit 5a3f6a6106
8 changed files with 384 additions and 2 deletions

View File

@ -18,6 +18,7 @@ noinst_PROGRAMS = \
exCompiledDoubleFunction\
exMat \
exMathInterpreter \
exMin \
exPlot \
exRand
@ -29,6 +30,10 @@ exMat_SOURCES = exMat.cpp
exMat_CFLAGS = -g -O2
exMat_LDFLAGS = -L../latan/.libs -llatan
exMin_SOURCES = exMin.cpp
exMin_CFLAGS = -g -O2
exMin_LDFLAGS = -L../latan/.libs -llatan
exMathInterpreter_SOURCES = exMathInterpreter.cpp
exMathInterpreter_CFLAGS = -g -O2
exMathInterpreter_LDFLAGS = -L../latan/.libs -llatan