ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class template jcd_simple_solver

ietl::jcd_simple_solver

Synopsis

// In header: <alps/src/ietl/jacobi.h>

template<typename MATRIX, typename VS> 
class jcd_simple_solver {
public:
  // types
  typedef vectorspace_traits< VS >::vector_type              vector_type;   
  typedef vectorspace_traits< VS >::scalar_type              scalar_type;   
  typedef ietl::number_traits< scalar_type >::magnitude_type magnitude_type;

  // construct/copy/destruct
  jcd_simple_solver(const MATRIX &, const VS &);

  // public member functions
  void operator()(const vector_type &, const magnitude_type &, 
                  const vector_type &, vector_type &, const magnitude_type &);
};

Description

jcd_simple_solver public construct/copy/destruct

  1. jcd_simple_solver(const MATRIX & matrix, const VS & vec);

jcd_simple_solver public member functions

  1. void operator()(const vector_type & u, const magnitude_type & theta, 
                    const vector_type & r, vector_type & t, 
                    const magnitude_type & rel_tol);
Copyright © 2011 Matthias Troyer, Bela Bauer, Robin Jäger

PrevUpHomeNext