Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fprop_Standard_lex.cpp
Go to the documentation of this file.
1 
14 #include "fprop_Standard_lex.h"
15 
16 //====================================================================
18 {
20 }
21 
22 
23 //====================================================================
24 void Fprop_Standard_lex::invert_D(Field& xq, const Field& b, int& Nconv, double& diff)
25 {
26  m_solver->get_fopr()->set_mode("D");
27  m_solver->solve(xq, b, Nconv, diff);
28 }
29 
30 
31 //====================================================================
32 void Fprop_Standard_lex::invert_DdagD(Field& xq, const Field& b, int& Nconv, double& diff)
33 {
34  m_solver->get_fopr()->set_mode("DdagD");
35  m_solver->solve(xq, b, Nconv, diff);
36 }
37 
38 
39 //====================================================================
40 //============================================================END=====