Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching full:initialize

50             // initialize
51 const int maxIters(iters); // initialize maxIters to iters
55 // Initialize preconditioned Lanczos
57 VectorType v( VectorType::Zero(N) ); //initialize v
58 VectorType v_new(rhs-mat*x); //initialize v_new
61 VectorType w_new(precond.solve(v_new)); // initialize w_new
69 // Initialize other variables
75 VectorType p_old(VectorType::Zero(N)); // initialize p_old=0
76 VectorType p(p_old); // initialize p=0
221 /** Initialize the solver with matrix \a A for further \c Ax=b solving.