|
boost::program_options::options_description | add_options (void) const |
| Virtual method for adding options to the module. More...
|
|
bool | load (unsigned verbose, std::ostream &out) |
| Loads the data. More...
|
|
bool | check_options (std::string &message) const |
| Checks that the input options' values are coherent. More...
|
|
std::string | get_name (void) const |
| Return the name of the class itself. More...
|
|
std::string | get_output_prefix (void) const |
| Returns a prefix that concatains the input line options used when running the module. More...
|
|
template<class ExplorationAlgorithm > |
void | update_after_selection (ExplorationAlgorithm &explorer, typename ExplorationAlgorithm::EL_sample_rep s) |
|
template<class ExplorationAlgorithm > |
void | update_after_insertion (ExplorationAlgorithm &explorer, typename ExplorationAlgorithm::EL_sample_rep s) |
|
template<class ExplorationAlgorithm > |
void | update_after_tuning (ExplorationAlgorithm &explorer, typename ExplorationAlgorithm::EL_sample_rep s) |
|
template<class ExplorationAlgorithm > |
const FT & | get_initial_temperature (ExplorationAlgorithm &explorer) const |
|
template<class ExplorationAlgorithm > |
const FT & | get_initial_displace_delta (ExplorationAlgorithm &explorer) const |
|
template<class ExplorationAlgorithm > |
const FT & | get_temperature (ExplorationAlgorithm &explorer) const |
|
template<class ExplorationAlgorithm > |
void | set_temperature (ExplorationAlgorithm &explorer, const FT &temperature) |
|
template<class ExplorationAlgorithm > |
const FT & | get_displace_delta (ExplorationAlgorithm &explorer) const |
|
template<class ExplorationAlgorithm > |
void | set_displace_delta (ExplorationAlgorithm &explorer, const FT &displace_delta) |
|
template<class ExplorationAlgorithm > |
const FT & | get_epsilon_height (ExplorationAlgorithm &explorer) const |
|
template<class ExplorationAlgorithm > |
const FT & | get_epsilon_distance (ExplorationAlgorithm &explorer) const |
|
template<class NumberType, class Distance>
class T_Exploration_parameters_with_layers< NumberType, Distance >
Representation of the parameters of the exploration algorithm by layers.
It works as the class T_Exploration_parameters_default except that it is possible to initialize different layers of parameters, each layer initializing its own temperature, lambda_T, displace delta and lambda_D. Each layer is defined by a (possibly infinite) interval of energy for which the parameters are adapted and make more sense for the algorithm.
- Template Parameters
-
NumberType | Output number type of the distance. |
Distance | Distance functor between two conformations. |