#include "termcolor.hpp"
#include "macros.h"
#include "MemCalc.h"
#include "RandomVector.h"
#include "symmetry/functions.h"
#include "DmrgConglutinations.h"
Go to the source code of this file.
|
double | xlogx (double x) |
|
template<typename Symmetry , typename MatrixType_ > |
Biped< Symmetry, MatrixType_ > | operator* (const Biped< Symmetry, MatrixType_ > &A1, const Biped< Symmetry, MatrixType_ > &A2) |
|
template<typename Symmetry , typename MatrixType_ , typename Scalar > |
Biped< Symmetry, MatrixType_ > | operator* (const Scalar &alpha, const Biped< Symmetry, MatrixType_ > &A) |
|
template<typename Symmetry , typename MatrixType_ > |
Biped< Symmetry, MatrixType_ > | operator+ (const Biped< Symmetry, MatrixType_ > &M1, const Biped< Symmetry, MatrixType_ > &M2) |
|
template<typename Symmetry , typename MatrixType_ > |
Biped< Symmetry, MatrixType_ > | operator- (const Biped< Symmetry, MatrixType_ > &M1, const Biped< Symmetry, MatrixType_ > &M2) |
|
template<typename Symmetry , typename MatrixType_ > |
std::ostream & | operator<< (std::ostream &os, const Biped< Symmetry, MatrixType_ > &V) |
|
◆ operator*() [1/2]
template<typename Symmetry , typename MatrixType_ >
Biped< Symmetry, MatrixType_ > operator* |
( |
const Biped< Symmetry, MatrixType_ > & |
A1, |
|
|
const Biped< Symmetry, MatrixType_ > & |
A2 |
|
) |
| |
◆ operator*() [2/2]
template<typename Symmetry , typename MatrixType_ , typename Scalar >
Biped< Symmetry, MatrixType_ > operator* |
( |
const Scalar & |
alpha, |
|
|
const Biped< Symmetry, MatrixType_ > & |
A |
|
) |
| |
◆ operator+()
template<typename Symmetry , typename MatrixType_ >
Biped< Symmetry, MatrixType_ > operator+ |
( |
const Biped< Symmetry, MatrixType_ > & |
M1, |
|
|
const Biped< Symmetry, MatrixType_ > & |
M2 |
|
) |
| |
Adds two Bipeds block- and coefficient-wise.
Definition at line 1179 of file Biped.h.
◆ operator-()
template<typename Symmetry , typename MatrixType_ >
Biped< Symmetry, MatrixType_ > operator- |
( |
const Biped< Symmetry, MatrixType_ > & |
M1, |
|
|
const Biped< Symmetry, MatrixType_ > & |
M2 |
|
) |
| |
Subtracts two Bipeds block- and coefficient-wise.
Definition at line 1233 of file Biped.h.
◆ operator<<()
template<typename Symmetry , typename MatrixType_ >
std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const Biped< Symmetry, MatrixType_ > & |
V |
|
) |
| |
◆ xlogx()