Ejemplo n.º 1
0
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)
Ejemplo n.º 2
0
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)