Which values to select for assignment. More...
#include <float.hh>
Public Types | |
enum | Select { SEL_MIN , SEL_MAX , SEL_RND , SEL_VAL_COMMIT } |
Which value selection. More... | |
![]() | |
typedef BranchTraits< FloatVar >::Val | BranchVal |
The corresponding branching value function. | |
typedef BranchTraits< FloatVar >::Commit | BranchCommit |
The corresponding branching commit function. | |
Public Member Functions | |
FloatAssign (Select s=SEL_MIN) | |
Initialize with selection strategy s. | |
FloatAssign (Rnd r) | |
Initialize with random number generator r. | |
FloatAssign (FloatBranchVal v, FloatBranchCommit c) | |
Initialize with value function f and commit function c. | |
Select | select (void) const |
Return selection strategy. | |
![]() | |
ValBranch (void) | |
Initialize. | |
ValBranch (Rnd r) | |
Initialize with random number generator r. | |
ValBranch (BranchVal v, BranchCommit c) | |
Initialize with value function v and commit function c. | |
Rnd | rnd (void) const |
Return random number generator. | |
BranchVal | val (void) const |
Return value function. | |
BranchCommit | commit (void) const |
Return commit function. | |
Protected Attributes | |
Select | s |
Which value to select. | |
![]() | |
Rnd | r |
Random number generator. | |
BranchVal | vf |
Value function. | |
BranchCommit | cf |
Commit function. | |
Initialize with selection strategy s.
Definition at line 37 of file assign.hpp.
|
inline |
Initialize with random number generator r.
Definition at line 41 of file assign.hpp.
|
inline |
Initialize with value function f and commit function c.
Definition at line 45 of file assign.hpp.
|
inline |
Return selection strategy.
Definition at line 49 of file assign.hpp.
|
protected |