NonlinearOutput Struct Reference
A type that describes the options for the output of a non-linear problem calculation. More...
#include <NonlinearSolver.hpp>
Inheritance diagram for NonlinearOutput:
Collaboration diagram for NonlinearOutput:
Public Member Functions | |
| auto | operator= (bool activate) -> NonlinearOutput & |
| Activate or deactivate output. | |
Public Member Functions inherited from OutputterOptions | |
| auto | operator= (bool active) -> OutputterOptions & |
Assign a boolean value to active member. | |
Public Attributes | |
| std::string | xprefix = "x" |
The prefix for the unknown variables x. | |
| std::string | fprefix = "f" |
| The prefix for the residual functions. | |
| std::vector< std::string > | xnames |
The names of the unknown variables x. More... | |
| std::vector< std::string > | fnames |
| The names of the non-linear functions. More... | |
Public Attributes inherited from OutputterOptions | |
| bool | active = false |
| bool | fixed = false |
| bool | scientific = false |
| unsigned | precision = 6 |
| unsigned | width = 15 |
| std::string | separator = "|" |
Detailed Description
A type that describes the options for the output of a non-linear problem calculation.
Member Data Documentation
◆ xnames
| std::vector<std::string> xnames |
The names of the unknown variables x.
Numbers will be used if not properly set (e.g., x[0], x[1])
◆ fnames
| std::vector<std::string> fnames |
The names of the non-linear functions.
Numbers will be used if not properly set (e.g., f[0], f[1])
The documentation for this struct was generated from the following files:
- Reaktoro/Optimization/NonlinearSolver.hpp
- Reaktoro/Optimization/NonlinearSolver.cpp
Public Member Functions inherited from