Ginger 1.1.5; VERSION ${PROJECT_VERSION}
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1
6#pragma once
7
15class Options {
16 public:
17 unsigned int max_iters = 2000U;
18 double tolerance = 1e-12;
19 double tol_ind = 1e-15;
20};
Options for convergence-based algorithms.
Definition config.hpp:15
unsigned int max_iters
Definition config.hpp:17
double tol_ind
Definition config.hpp:19
double tolerance
Definition config.hpp:18