2014-02-06 18:52:13 +00:00
|
|
|
/*
|
|
|
|
* CompiledFunction.cpp, part of LatAnalyze 3
|
|
|
|
*
|
2016-04-06 20:11:23 +01:00
|
|
|
* Copyright (C) 2013 - 2016 Antonin Portelli
|
2014-02-06 18:52:13 +00:00
|
|
|
*
|
|
|
|
* LatAnalyze 3 is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* LatAnalyze 3 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Functional/CompiledFunction.hpp>
|
|
|
|
#include <LatAnalyze/Core/Math.hpp>
|
2014-03-13 18:51:01 +00:00
|
|
|
#include <LatAnalyze/includes.hpp>
|
2014-02-06 18:07:27 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Latan;
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Compiled double function implementation *
|
|
|
|
******************************************************************************/
|
2014-02-20 22:54:11 +00:00
|
|
|
// constructors ////////////////////////////////////////////////////////////////
|
2015-02-24 17:00:19 +00:00
|
|
|
CompiledDoubleFunction::CompiledDoubleFunction(const Index nArg)
|
|
|
|
: nArg_(nArg)
|
2014-02-13 19:23:39 +00:00
|
|
|
{}
|
2014-02-06 18:07:27 +00:00
|
|
|
|
2015-02-24 17:00:19 +00:00
|
|
|
CompiledDoubleFunction::CompiledDoubleFunction(const string &code,
|
|
|
|
const Index nArg)
|
2014-03-13 18:20:40 +00:00
|
|
|
: CompiledDoubleFunction(nArg)
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
|
|
|
setCode(code);
|
|
|
|
}
|
|
|
|
|
|
|
|
// access //////////////////////////////////////////////////////////////////////
|
2014-09-29 15:10:38 +01:00
|
|
|
string CompiledDoubleFunction::getCode(void)
|
|
|
|
{
|
|
|
|
return code_;
|
|
|
|
}
|
|
|
|
|
2014-02-06 18:07:27 +00:00
|
|
|
void CompiledDoubleFunction::setCode(const string &code)
|
|
|
|
{
|
2014-09-29 15:10:38 +01:00
|
|
|
code_ = code;
|
2014-02-13 19:23:39 +00:00
|
|
|
interpreter_.reset(new MathInterpreter(code));
|
|
|
|
context_.reset(new RunContext);
|
2014-04-08 19:48:52 +01:00
|
|
|
varAddress_.reset(new std::vector<unsigned int>);
|
|
|
|
isCompiled_.reset(new bool(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
// compile /////////////////////////////////////////////////////////////////////
|
|
|
|
void CompiledDoubleFunction::compile(void) const
|
|
|
|
{
|
|
|
|
if (!*isCompiled_)
|
|
|
|
{
|
|
|
|
varAddress_->clear();
|
2015-02-24 17:00:19 +00:00
|
|
|
for (Index i = 0; i < nArg_; ++i)
|
2014-04-08 19:48:52 +01:00
|
|
|
{
|
2014-09-26 18:41:30 +01:00
|
|
|
varAddress_->push_back(context_->addVariable("x_" + strFrom(i)));
|
2014-04-08 19:48:52 +01:00
|
|
|
}
|
2014-09-26 18:41:30 +01:00
|
|
|
interpreter_->compile(*(context_));
|
2014-04-08 19:48:52 +01:00
|
|
|
*isCompiled_ = true;
|
|
|
|
}
|
2014-02-06 18:07:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// function call ///////////////////////////////////////////////////////////////
|
2014-02-21 01:18:22 +00:00
|
|
|
double CompiledDoubleFunction::operator()(const double *arg) const
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
|
|
|
double result;
|
|
|
|
|
2014-04-08 19:48:52 +01:00
|
|
|
compile();
|
2015-02-24 17:00:19 +00:00
|
|
|
for (unsigned int i = 0; i < nArg_; ++i)
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
2014-09-26 18:41:30 +01:00
|
|
|
context_->setVariable((*varAddress_)[i], arg[i]);
|
2014-02-06 18:07:27 +00:00
|
|
|
}
|
2014-02-12 18:32:08 +00:00
|
|
|
(*interpreter_)(*context_);
|
2014-09-26 18:41:30 +01:00
|
|
|
if (!context_->stack().empty())
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
2014-09-26 18:41:30 +01:00
|
|
|
result = context_->stack().top();
|
|
|
|
context_->stack().pop();
|
2014-02-06 18:07:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = 0.0;
|
|
|
|
LATAN_ERROR(Program, "program execution resulted in an empty stack");
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IO //////////////////////////////////////////////////////////////////////////
|
2014-02-13 19:23:39 +00:00
|
|
|
ostream & Latan::operator<<(ostream &out, CompiledDoubleFunction &f)
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
2014-04-08 19:48:52 +01:00
|
|
|
f.compile();
|
2014-02-12 18:32:08 +00:00
|
|
|
out << *(f.interpreter_);
|
2014-02-06 18:07:27 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
2015-02-24 17:00:19 +00:00
|
|
|
|
|
|
|
// DoubleFunction factory //////////////////////////////////////////////////////
|
|
|
|
DoubleFunction CompiledDoubleFunction::makeFunction(const bool makeHardCopy)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
DoubleFunction res;
|
|
|
|
|
|
|
|
if (makeHardCopy)
|
|
|
|
{
|
|
|
|
CompiledDoubleFunction copy(*this);
|
|
|
|
|
|
|
|
res.setFunction([copy](const double *p){return copy(p);}, nArg_);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res.setFunction([this](const double *p){return (*this)(p);}, nArg_);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
DoubleFunction Latan::compile(const string code, const Index nArg)
|
|
|
|
{
|
|
|
|
CompiledDoubleFunction compiledFunc(code, nArg);
|
|
|
|
|
|
|
|
return compiledFunc.makeFunction();
|
|
|
|
}
|