Home
last modified time | relevance | path

Searched refs:relAresl (Results 1 – 1 of 1) sorted by relevance

/petsc/src/ksp/ksp/impls/minres/
H A Dminres.c105 …PetscReal Acond = 1.0, Acondl = 0.0, rnorml, rnorm, rootl, relAresl, relres, relresl, Arnorml, … in KSPSolve_MINRES() local
398 relAresl = rootl / Anorm; in KSPSolve_MINRES()
407 PetscReal t2 = 1.0 + relAresl; in KSPSolve_MINRES()
411 if (relAresl <= ksp->rtol) flag = 2; // Good enough LS solution in KSPSolve_MINRES()
425 …ts - 1, flag, (double)rnorml, (double)Arnorml, (double)relresl, (double)relAresl, (double)Anorml, … in KSPSolve_MINRES()
467 relAresl = rnorml > realmin ? Arnorml / (Anorm * rnorml) : 0.0; in KSPSolve_MINRES()
469 …p->its, flag, (double)rnorml, (double)Arnorml, (double)relresl, (double)relAresl, (double)Anorml, … in KSPSolve_MINRES()