IterativeMethodRequirements Derived Type

type, public :: IterativeMethodRequirements


Inherited by

type~~iterativemethodrequirements~~InheritedByGraph type~iterativemethodrequirements IterativeMethodRequirements type~iterativemethod IterativeMethod type~iterativemethod->type~iterativemethodrequirements requirements type~linalg linalg type~linalg->type~iterativemethod iterative

Components

Type Visibility Attributes Name Initial
logical, public :: needs_SPD = .false.
logical, public :: needs_diag_dom = .false.
logical, public :: needs_square = .false.
logical, public :: needs_symetric = .false.

Source Code

    type :: IterativeMethodRequirements
        logical :: needs_SPD = .false.
        logical :: needs_diag_dom = .false.
        logical :: needs_square = .false.
        logical :: needs_symetric = .false.
    end type IterativeMethodRequirements