Integration (addition) as a unary accumulation. More...
#include <integrator.hxx>
Static Public Member Functions | |
template<class T > | |
static T | neutral () |
neutral element (with return) | |
template<class T > | |
static void | neutral (T &out) |
neutral element (call by reference) | |
template<class T > | |
static T | ineutral () |
inverse neutral element (with return) | |
template<class T > | |
static void | ineutral (T &out) |
inverse neutral element (call by reference) | |
template<class T1 , class T2 > | |
static void | op (const T1 &in1, T2 &out) |
operation (in-place) | |
template<class T1 , class T2 , class T3 > | |
static void | op (const T1 in1, const T2 in2, T3 &out) |
operation (not in-place) | |
template<class T1 , class T2 > | |
static void | iop (const T1 &in1, T2 &out) |
inverse operation (in-place) | |
template<class T1 , class T2 , class T3 > | |
static void | iop (const T1 in1, const T2 in2, T3 &out) |
inverse operation (call by reference) | |
static bool | hasbop () |
bool operation flag | |
template<class T > | |
static bool | bop (const T &in1, const T &in2) |
inverse boolean operation boolean operation (obsolete) | |
template<class T > | |
static bool | ibop (const T &in1, const T &in2) |
inverse boolean operation inverse boolean operation (obsolete) |
Integration (addition) as a unary accumulation.
Definition at line 11 of file integrator.hxx.
static bool opengm::Integrator::bop | ( | const T & | in1, | |
const T & | in2 | |||
) | [inline, static] |
inverse boolean operation boolean operation (obsolete)
Definition at line 53 of file integrator.hxx.
static bool opengm::Integrator::hasbop | ( | ) | [inline, static] |
bool operation flag
Definition at line 48 of file integrator.hxx.
static bool opengm::Integrator::ibop | ( | const T & | in1, | |
const T & | in2 | |||
) | [inline, static] |
inverse boolean operation inverse boolean operation (obsolete)
Definition at line 58 of file integrator.hxx.
static void opengm::Integrator::ineutral | ( | T & | out | ) | [inline, static] |
inverse neutral element (call by reference)
Definition at line 24 of file integrator.hxx.
static T opengm::Integrator::ineutral | ( | ) | [inline, static] |
inverse neutral element (with return)
Definition at line 19 of file integrator.hxx.
static void opengm::Integrator::iop | ( | const T1 | in1, | |
const T2 | in2, | |||
T3 & | out | |||
) | [inline, static] |
inverse operation (call by reference)
Definition at line 44 of file integrator.hxx.
static void opengm::Integrator::iop | ( | const T1 & | in1, | |
T2 & | out | |||
) | [inline, static] |
inverse operation (in-place)
Definition at line 39 of file integrator.hxx.
static void opengm::Integrator::neutral | ( | T & | out | ) | [inline, static] |
neutral element (call by reference)
Definition at line 14 of file integrator.hxx.
static T opengm::Integrator::neutral | ( | ) | [inline, static] |
neutral element (with return)
Definition at line 9 of file integrator.hxx.
static void opengm::Integrator::op | ( | const T1 | in1, | |
const T2 | in2, | |||
T3 & | out | |||
) | [inline, static] |
operation (not in-place)
Definition at line 34 of file integrator.hxx.
static void opengm::Integrator::op | ( | const T1 & | in1, | |
T2 & | out | |||
) | [inline, static] |
operation (in-place)
Definition at line 29 of file integrator.hxx.