Pallas Solver
0.1
C++ Global Optimization Algorithms
|
Range of values to test for the ith
degree of freedom.
More...
#include <brute.h>
Public Member Functions | |
ParameterRange () | |
Default constructor. More... | |
ParameterRange (double start, double stop, int size) | |
Constructor. More... | |
Public Attributes | |
double | start |
double | stop |
int | size |
Range of values to test for the ith
degree of freedom.
For a given degree of freedom in an objective function, this struct specifies the number of points to test along the given degree of freedom to test between start
and stop
. The search is inclusive, i.e. [start, stop]
.
start | double. The first value to test along the degree of freedom. |
stop | double. The last value to test along the degree of freedom. |
size | int. The discrete number of samples to test on the range [start, stop] |
|
inline |
Default constructor.
All values are initialized to 0.
|
inline |
Constructor.
Specifies the interval over which the ith degree of freedom should be tested.
start | double. The first value to test along the degree of freedom. |
stop | double. The last value to test along the degree of freedom. |
size | int. The discrete number of samples to test on the range [start, stop] . |
int pallas::Brute::ParameterRange::size |
The discrete number of samples to test on the range [start, stop]
.
double pallas::Brute::ParameterRange::start |
The first value to test along the degree of freedom.
double pallas::Brute::ParameterRange::stop |
The last value to test along the degree of freedom.