2014-02-06 18:52:13 +00:00
|
|
|
/*
|
|
|
|
* CompiledFunction.hpp, 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Latan_CompiledFunction_hpp_
|
|
|
|
#define Latan_CompiledFunction_hpp_
|
2014-02-06 18:07:27 +00:00
|
|
|
|
2014-03-13 18:51:01 +00:00
|
|
|
#include <LatAnalyze/Global.hpp>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Functional/Function.hpp>
|
|
|
|
#include <LatAnalyze/Core/MathInterpreter.hpp>
|
2014-02-06 18:07:27 +00:00
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
BEGIN_LATAN_NAMESPACE
|
2014-02-06 18:07:27 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
2014-03-13 18:20:40 +00:00
|
|
|
* compiled double function class *
|
2014-02-06 18:07:27 +00:00
|
|
|
******************************************************************************/
|
2015-02-24 17:00:19 +00:00
|
|
|
class CompiledDoubleFunction: public DoubleFunctionFactory
|
2014-02-06 18:07:27 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-12 18:32:08 +00:00
|
|
|
// constructors
|
2015-02-24 17:00:19 +00:00
|
|
|
explicit CompiledDoubleFunction(const Index nArg);
|
|
|
|
CompiledDoubleFunction(const std::string &code, const Index nArg);
|
2014-02-12 18:32:08 +00:00
|
|
|
// destructor
|
2014-02-20 22:54:11 +00:00
|
|
|
virtual ~CompiledDoubleFunction(void) = default;
|
2014-02-06 18:07:27 +00:00
|
|
|
// access
|
2014-09-29 15:10:38 +01:00
|
|
|
std::string getCode(void);
|
|
|
|
void setCode(const std::string &code);
|
2014-02-06 18:07:27 +00:00
|
|
|
// function call
|
2015-02-24 17:00:19 +00:00
|
|
|
double operator()(const double *arg) const;
|
2014-02-06 18:07:27 +00:00
|
|
|
// IO
|
2014-02-13 19:23:39 +00:00
|
|
|
friend std::ostream & operator<<(std::ostream &out,
|
|
|
|
CompiledDoubleFunction &f);
|
2015-02-24 17:00:19 +00:00
|
|
|
// factory
|
|
|
|
virtual DoubleFunction makeFunction(const bool makeHardCopy = true) const;
|
2014-02-06 18:07:27 +00:00
|
|
|
private:
|
2015-02-24 17:00:19 +00:00
|
|
|
|
2014-04-08 19:48:52 +01:00
|
|
|
// compile
|
|
|
|
void compile(void) const;
|
|
|
|
private:
|
2015-02-24 17:00:19 +00:00
|
|
|
Index nArg_;
|
2014-09-29 15:10:38 +01:00
|
|
|
std::string code_;
|
2014-04-08 19:48:52 +01:00
|
|
|
std::shared_ptr<MathInterpreter> interpreter_;
|
|
|
|
std::shared_ptr<RunContext> context_;
|
|
|
|
std::shared_ptr<std::vector<unsigned int>> varAddress_;
|
|
|
|
std::shared_ptr<bool> isCompiled_;
|
2014-02-06 18:07:27 +00:00
|
|
|
};
|
|
|
|
|
2014-02-13 19:23:39 +00:00
|
|
|
std::ostream & operator<<(std::ostream &out, CompiledDoubleFunction &f);
|
|
|
|
|
2015-02-24 17:00:19 +00:00
|
|
|
// DoubleFunction factory
|
|
|
|
DoubleFunction compile(const std::string code, const Index nArg);
|
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
END_LATAN_NAMESPACE
|
2014-02-06 18:07:27 +00:00
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
#endif // Latan_CompiledFunction_hpp_
|