Cookbook ======== Basics ------ Here, an exemple of creation of a class det_manip, of use of insert and remove. .. compileblock:: #include struct fun { typedef double result_type; typedef double argument_type; //gives the coefficients of the matrix double operator()(double x, double y) const { return(x-y); } }; int main() { //creation of the class det_manip fun f; int init_size=100; triqs::det_manip::det_manip D(f,init_size); //the initial matrix is empty: std::cout<