|
cMHN 1.2
C++ library for learning MHNs with pRC
|
#include <prc/core/functors/div.hpp>#include <prc/core/functors/mul.hpp>#include <prc/core/functors/view.hpp>#include <prc/core/tensor/declarations.hpp>#include <prc/tensor_train/operator/declarations.hpp>#include <prc/tensor_train/tensor/declarations.hpp>Go to the source code of this file.
Namespaces | |
| namespace | pRC |
Functions | |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires (TensorTrain::IsTensorish<RA> || TensorTrain::IsOperatorish<RA>) && (IsValue<RB> || IsComplex<RB>) && IsInvocable<Mul, typename RA::Type, RB const &> | |
| static constexpr auto | pRC::operator* (XA &&a, XB &&b) |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires (IsValue<RA> || IsComplex<RA>) && (TensorTrain::IsTensorish<RB> || TensorTrain::IsOperatorish<RB>) && IsInvocable<Mul, RA const &, typename RB::Type> | |
| static constexpr auto | pRC::operator* (XA &&a, XB &&b) |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires (TensorTrain::IsTensorish<RA> || TensorTrain::IsOperatorish<RA>) && (IsValue<RB> || IsComplex<RB>) && IsInvocable<Div, typename RA::Type, RB const &> | |
| static constexpr auto | pRC::operator/ (XA &&a, XB &&b) |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires (TensorTrain::IsTensorish<RA> || TensorTrain::IsOperatorish<RA>) && IsTensorish<RB> && IsInvocable<Mul, XA, typename RB::Type> | |
| static constexpr auto | pRC::operator* (XA &&a, XB &&b) |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires IsTensorish<RA> && (TensorTrain::IsTensorish<RB> || TensorTrain::IsOperatorish<RB>) && IsInvocable<Mul, typename RA::Type, XB> | |
| static constexpr auto | pRC::operator* (XA &&a, XB &&b) |
| template<class XA , class XB , class RA = RemoveReference<XA>, class RB = RemoveReference<XB>> requires (TensorTrain::IsTensorish<RA> || TensorTrain::IsOperatorish<RA>) && IsTensorish<RB> && IsInvocable<Div, XA, typename RB::Type> | |
| static constexpr auto | pRC::operator/ (XA &&a, XB &&b) |