Skip to contents

tag: eigen

Usage

prj_eigen(
  solver_type,
  precon_type = NULL,
  max_iteration_step = NULL,
  error_tolerance = NULL,
  scaling = NULL,
  restart = NULL
)

Arguments

solver_type

string:

precon_type

Optional: string:

max_iteration_step

Optional: string | double: ...

error_tolerance

Optional: string | double: ...

scaling

Optional: string | double: ...

restart

Optional: string | double: ...

Examples

prj_eigen(
    solver_type = "BiCGSTAB",
    precon_type = "ILUT",
    max_iteration_step = 10000,
    error_tolerance = 1e-16
)
#> $solver_type
#> [1] "BiCGSTAB"
#> 
#> $precon_type
#> [1] "ILUT"
#> 
#> $max_iteration_step
#> [1] 10000
#> 
#> $error_tolerance
#> [1] 1e-16
#> 
#> $scaling
#> NULL
#> 
#> $restart
#> NULL
#> 
#> $xpath
#> [1] "linear_solvers/linear_solver/eigen"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_eigen"