Scilab 5.5.2
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
accept_func_vfsa
The Very Fast Simulated Annealing acceptation function.
Calling Sequence
Level = accept_func_vfsa(F_current, F_neigh, T)
Arguments
- F_current
- the current function value 
- F_neigh
- the function value of the neighbour 
- T
- the current temperature 
- Level
- the level of acceptation, in the interval [0,1]. 
Description
The accept_func_vfsa provides the Very Fast Simulated Annealing acceptation function.
If the level computed by the acceptation function is higher than the generated uniform random number in the interval [0,1], then the neighbour is accepted.
The formula used in the implementation is the following.
Examples
level = accept_func_vfsa(10, 9, 10)
See Also
- accept_func_default — The default Simulated Annealing acceptation function.
| Report an issue | ||
| << accept_func_default | Utilities | compute_initial_temp >> |