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