2014-02-06 18:52:13 +00:00
|
|
|
/*
|
|
|
|
* Function.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_Function_hpp_
|
|
|
|
#define Latan_Function_hpp_
|
2014-01-30 19:28:30 +00:00
|
|
|
|
2014-03-13 18:51:01 +00:00
|
|
|
#include <LatAnalyze/Global.hpp>
|
|
|
|
#include <LatAnalyze/Mat.hpp>
|
|
|
|
#include <LatAnalyze/MatSample.hpp>
|
2014-01-30 19:28:30 +00:00
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
BEGIN_LATAN_NAMESPACE
|
2014-01-30 19:28:30 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Double function class *
|
|
|
|
******************************************************************************/
|
2014-02-26 18:36:29 +00:00
|
|
|
class DoubleFunction
|
2014-01-30 19:28:30 +00:00
|
|
|
{
|
2014-02-12 18:32:08 +00:00
|
|
|
private:
|
2014-06-03 12:32:29 +01:00
|
|
|
// function type
|
2014-02-21 01:18:22 +00:00
|
|
|
typedef std::function<double(const double *)> vecFunc;
|
2014-01-30 19:28:30 +00:00
|
|
|
public:
|
2014-02-20 22:54:11 +00:00
|
|
|
// constructor
|
2015-02-24 17:00:19 +00:00
|
|
|
explicit DoubleFunction(const vecFunc &f = nullptr, const Index nArg = 0);
|
2014-02-20 22:54:11 +00:00
|
|
|
// destructor
|
|
|
|
virtual ~DoubleFunction(void) = default;
|
2014-02-26 18:36:29 +00:00
|
|
|
// access
|
2016-03-31 12:12:30 +01:00
|
|
|
virtual Index getNArg(void) const;
|
|
|
|
void setFunction(const vecFunc &f, const Index nArg);
|
|
|
|
VarName & varName(void);
|
|
|
|
const VarName & varName(void) const;
|
2014-01-30 19:28:30 +00:00
|
|
|
// function call
|
2015-02-24 17:00:19 +00:00
|
|
|
double operator()(const double *arg) const;
|
2014-02-21 01:18:22 +00:00
|
|
|
double operator()(const DVec &arg) const;
|
|
|
|
double operator()(const std::vector<double> &arg) const;
|
2014-02-12 18:32:08 +00:00
|
|
|
double operator()(std::stack<double> &arg) const;
|
2014-03-03 13:04:53 +00:00
|
|
|
double operator()(void) const;
|
|
|
|
template <typename... Ts>
|
|
|
|
double operator()(const double arg0, const Ts... args) const;
|
2015-02-24 17:00:19 +00:00
|
|
|
// bind
|
2015-07-07 18:49:22 +01:00
|
|
|
DoubleFunction bind(const Index argIndex, const double val) const;
|
|
|
|
DoubleFunction bind(const Index argIndex, const DVec &x) const;
|
2014-06-03 12:32:29 +01:00
|
|
|
// arithmetic operators
|
|
|
|
DoubleFunction operator-(void) const;
|
|
|
|
DoubleFunction & operator+=(const DoubleFunction &f);
|
|
|
|
DoubleFunction & operator+=(const DoubleFunction &&f);
|
|
|
|
DoubleFunction & operator-=(const DoubleFunction &f);
|
|
|
|
DoubleFunction & operator-=(const DoubleFunction &&f);
|
|
|
|
DoubleFunction & operator*=(const DoubleFunction &f);
|
|
|
|
DoubleFunction & operator*=(const DoubleFunction &&f);
|
|
|
|
DoubleFunction & operator/=(const DoubleFunction &f);
|
|
|
|
DoubleFunction & operator/=(const DoubleFunction &&f);
|
|
|
|
DoubleFunction & operator+=(const double x);
|
|
|
|
DoubleFunction & operator-=(const double x);
|
|
|
|
DoubleFunction & operator*=(const double x);
|
|
|
|
DoubleFunction & operator/=(const double x);
|
2014-01-30 19:28:30 +00:00
|
|
|
private:
|
2014-03-03 12:41:48 +00:00
|
|
|
// error checking
|
|
|
|
void checkSize(const Index nPar) const;
|
|
|
|
private:
|
|
|
|
std::shared_ptr<DVec> buffer_{nullptr};
|
2016-03-31 12:12:30 +01:00
|
|
|
VarName varName_;
|
2014-02-21 01:18:22 +00:00
|
|
|
vecFunc f_;
|
2014-01-30 19:28:30 +00:00
|
|
|
};
|
|
|
|
|
2014-06-03 12:32:29 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* DoubleFunction template implementation *
|
|
|
|
******************************************************************************/
|
2014-03-03 13:04:53 +00:00
|
|
|
template <typename... Ts>
|
|
|
|
double DoubleFunction::operator()(const double arg0, const Ts... args) const
|
|
|
|
{
|
2015-01-28 17:21:07 +00:00
|
|
|
static_assert(static_or<std::is_convertible<double, Ts>::value...>::value,
|
2014-03-03 13:04:53 +00:00
|
|
|
"DoubleFunction arguments are not compatible with double");
|
2015-01-28 17:21:07 +00:00
|
|
|
|
|
|
|
const double arg[] = {arg0, static_cast<double>(args)...};
|
2014-03-03 13:04:53 +00:00
|
|
|
|
|
|
|
checkSize(sizeof...(args) + 1);
|
|
|
|
|
|
|
|
return (*this)(arg);
|
|
|
|
}
|
|
|
|
|
2014-06-03 12:32:29 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* DoubleFunction inline arithmetic operators *
|
|
|
|
******************************************************************************/
|
|
|
|
#define MAKE_INLINE_FUNC_OP(op)\
|
|
|
|
inline DoubleFunction operator op(DoubleFunction lhs,\
|
|
|
|
const DoubleFunction &rhs)\
|
|
|
|
{\
|
|
|
|
lhs op##= rhs;\
|
|
|
|
return lhs;\
|
|
|
|
}\
|
|
|
|
inline DoubleFunction operator op(DoubleFunction lhs,\
|
|
|
|
const DoubleFunction &&rhs)\
|
|
|
|
{\
|
|
|
|
return lhs op rhs;\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAKE_INLINE_RSCALAR_OP(op)\
|
|
|
|
inline DoubleFunction operator op(DoubleFunction lhs, const double rhs)\
|
|
|
|
{\
|
|
|
|
lhs op##= rhs;\
|
|
|
|
return lhs;\
|
|
|
|
}\
|
|
|
|
|
|
|
|
#define MAKE_INLINE_LSCALAR_OP(op)\
|
|
|
|
inline DoubleFunction operator op(const double lhs, DoubleFunction rhs)\
|
|
|
|
{\
|
|
|
|
rhs op##= lhs;\
|
|
|
|
return rhs;\
|
|
|
|
}
|
|
|
|
|
|
|
|
MAKE_INLINE_FUNC_OP(+)
|
|
|
|
MAKE_INLINE_FUNC_OP(-)
|
|
|
|
MAKE_INLINE_FUNC_OP(*)
|
|
|
|
MAKE_INLINE_FUNC_OP(/)
|
|
|
|
MAKE_INLINE_RSCALAR_OP(+)
|
|
|
|
MAKE_INLINE_RSCALAR_OP(-)
|
|
|
|
MAKE_INLINE_RSCALAR_OP(*)
|
|
|
|
MAKE_INLINE_RSCALAR_OP(/)
|
|
|
|
MAKE_INLINE_LSCALAR_OP(+)
|
|
|
|
MAKE_INLINE_LSCALAR_OP(*)
|
|
|
|
|
|
|
|
// special case for scalar - function
|
|
|
|
inline DoubleFunction operator-(const double lhs, DoubleFunction rhs)
|
|
|
|
{
|
|
|
|
return (-rhs) + lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
// special case for scalar/function
|
|
|
|
inline DoubleFunction operator/(const double lhs, DoubleFunction rhs)
|
|
|
|
{
|
2015-02-26 18:50:56 +00:00
|
|
|
auto res = [lhs, rhs](const double *arg){return lhs/rhs(arg);};
|
2014-06-03 12:32:29 +01:00
|
|
|
|
|
|
|
rhs.setFunction(res, rhs.getNArg());
|
|
|
|
|
|
|
|
return rhs;
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:23:49 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* DoubleFunctionSample class *
|
|
|
|
******************************************************************************/
|
|
|
|
class DoubleFunctionSample: public Sample<DoubleFunction>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors
|
2014-09-18 17:16:49 +01:00
|
|
|
DoubleFunctionSample(void);
|
|
|
|
DoubleFunctionSample(const Index nSample);
|
|
|
|
EIGEN_EXPR_CTOR(DoubleFunctionSample, DoubleFunctionSample,
|
|
|
|
Sample<DoubleFunction>, ArrayExpr)
|
2014-03-12 19:23:49 +00:00
|
|
|
// destructor
|
|
|
|
virtual ~DoubleFunctionSample(void) = default;
|
|
|
|
// function call
|
|
|
|
DSample operator()(const DMatSample &arg) const;
|
2014-04-18 11:28:51 +01:00
|
|
|
DSample operator()(const double *arg) const;
|
|
|
|
DSample operator()(const DVec &arg) const;
|
|
|
|
DSample operator()(const std::vector<double> &arg) const;
|
|
|
|
template <typename... Ts>
|
|
|
|
DSample operator()(const double arg0, const Ts... args) const;
|
2015-07-07 18:49:22 +01:00
|
|
|
// bind
|
|
|
|
DoubleFunctionSample bind(const Index argIndex, const double val) const;
|
|
|
|
DoubleFunctionSample bind(const Index argIndex, const DVec &x) const ;
|
2014-03-12 19:23:49 +00:00
|
|
|
};
|
|
|
|
|
2014-04-18 11:28:51 +01:00
|
|
|
template <typename... Ts>
|
|
|
|
DSample DoubleFunctionSample::operator()(const double arg0,
|
2014-06-03 12:32:29 +01:00
|
|
|
const Ts... args) const
|
2014-04-18 11:28:51 +01:00
|
|
|
{
|
2015-07-07 18:49:22 +01:00
|
|
|
const double arg[] = {arg0, static_cast<double>(args)...};
|
2014-04-18 11:28:51 +01:00
|
|
|
|
|
|
|
return (*this)(arg);
|
|
|
|
}
|
2014-03-12 19:23:49 +00:00
|
|
|
|
2015-02-24 17:00:19 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* DoubleFunctionFactory class *
|
|
|
|
******************************************************************************/
|
|
|
|
class DoubleFunctionFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
DoubleFunctionFactory(void) = default;
|
|
|
|
// destructor
|
|
|
|
virtual ~DoubleFunctionFactory(void) = default;
|
|
|
|
// factory
|
|
|
|
virtual DoubleFunction makeFunction(const bool makeHardCopy) const = 0;
|
|
|
|
};
|
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
END_LATAN_NAMESPACE
|
2014-01-30 19:28:30 +00:00
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
#endif // Latan_Function_hpp_
|