|
Pallas Solver
0.1
C++ Global Optimization Algorithms
|
Stores information about the state of the system for at a given iteration number. More...
#include <brute.h>
Public Member Functions | |
| HistoryOutput (unsigned int iteration_number, const Vector ¤t_solution, double best_cost, const Vector &best_solution) | |
| Constructor. More... | |
Public Attributes | |
| unsigned int | iteration_number |
| Vector | current_solution |
| double | best_cost |
| Vector | best_solution |
Stores information about the state of the system for at a given iteration number.
|
inline |
Constructor.
| iteration_number | unsigned int. The number of global optimization iterations that have elapsed. |
| current_solution | Vector. Candidate solution vector for the current iteration. |
| best_cost | double. Cost associated with the best solution found at any iteration thus far during optimization. |
| best_solution | Vector. Best solution found at any iteration thus far during optimization. |
| double pallas::Brute::HistoryOutput::best_cost |
Cost associated with the best solution found at any iteration thus far during optimization.
| Vector pallas::Brute::HistoryOutput::best_solution |
Best solution found at any iteration thus far during optimization.
| Vector pallas::Brute::HistoryOutput::current_solution |
Candidate solution for the current iteration.
| unsigned int pallas::Brute::HistoryOutput::iteration_number |
The number of global optimization iterations that have elapsed.
1.8.11