def aGMRES(A, x, b, M, max_iter, m_max, m_min, m_step, cf, tol, atol, printit): return _solvers.aGMRES(A, x, b, M, max_iter, m_max, m_min, m_step, cf, tol, atol, printit)
def aGMRES(A, x, b, M, max_iter, m_max, m_min, m_step, cf, tol, atol, printit): """aGMRES(Operator A, Vector x, Vector b, Operator M, int & max_iter, int m_max, int m_min, int m_step, double cf, double & tol, double & atol, int printit) -> int""" return _solvers.aGMRES(A, x, b, M, max_iter, m_max, m_min, m_step, cf, tol, atol, printit)