3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 19:53:45 +01:00
dft_tools/doc/reference/determinant_manipulation/det_manip_0.cpp
tayral edd1ff4529 Restructuring documentation.
A first general restructuration of the doc according to the pattern [tour|tutorial|reference].
In the reference part, objects are documented per topic.
In each topic, [definition|c++|python|hdf5] (not yet implemented)
2014-10-18 12:21:08 +01:00

42 lines
992 B
C++

#include <triqs/det_manip/det_manip.hpp>
struct fun {
typedef double result_type;
typedef double argument_type;
double operator()(double x, double y) const {
const double pi = acos(-1.);
const double beta = 10.0;
const double epsi = 0.1;
double tau = x - y;
bool s = (tau > 0);
tau = (s ? tau : beta + tau);
double r = epsi + tau / beta * (1 - 2 * epsi);
return -2 * (pi / beta) / std::sin(pi * r);
}
};
int main() {
fun f;
triqs::det_manip::det_manip<fun> D(f, 100);
/// insertions of 3 lines and 3 columns
double x = 2., y = 9., detratio;
std::cout << D.size() << std::endl;
detratio = D.try_insert(0, 0, x, y);
std::cout << D.size() << std::endl;
D.complete_operation();
std::cout << D.size() << std::endl;
detratio = D.try_insert(0, 1, 2., 3.);
D.complete_operation();
detratio = D.try_insert(0, 0, 4., 5.);
D.complete_operation();
/// removal of a line (the 3rd) and a column (the 2nd)
detratio = D.try_remove(2, 1);
D.complete_operation();
}