TaskModelFloatBranch Branching on float variables Gecode::FloatNumBranch Gecode::FloatAFC Gecode::FloatActivity Gecode::FloatVarBranch Gecode::FloatValBranch Gecode::FloatAssign Variable selection for float variables Value selection for float variables Value selection for assigning float variables bool(* typedef bool(* Gecode::FloatBranchFilter)(const Space &home, FloatVar x, int i) )(const Space &home, FloatVar x, int i) FloatBranchFilter Branch filter function type for float variables. The variable x is considered for selection and i refers to the variable's position in the original array passed to the brancher. double(* typedef double(* Gecode::FloatBranchMerit)(const Space &home, FloatVar x, int i) )(const Space &home, FloatVar x, int i) FloatBranchMerit Branch merit function type for float variables. The function must return a merit value for the variable x. The value i refers to the variable's position in the original array passed to the brancher. FloatNumBranch(* typedef FloatNumBranch(* Gecode::FloatBranchVal)(const Space &home, FloatVar x, int i) )(const Space &home, FloatVar x, int i) FloatBranchVal Branch value function type for float variables. Returns a value for the variable x that is to be used in the corresponding branch commit function. The integer i refers to the variable's position in the original array passed to the brancher. void(* typedef void(* Gecode::FloatBranchCommit)(Space &home, unsigned int a, FloatVar x, int i, FloatNumBranch nl) )(Space &home, unsigned int a, FloatVar x, int i, FloatNumBranch nl) FloatBranchCommit Branch commit function type for float variables. The function must post a constraint on the variable x which corresponds to the alternative a. The integer i refers to the variable's position in the original array passed to the brancher. The value nl is the value description computed by the corresponding branch value function. GECODE_FLOAT_EXPORT BrancherHandle GECODE_FLOAT_EXPORT BrancherHandle Gecode::branch (Home home, const FloatVarArgs &x, FloatVarBranch vars, FloatValBranch vals, FloatBranchFilter bf=NULL, FloatVarValPrint vvp=NULL) branch Home home const FloatVarArgs & x FloatVarBranch vars FloatValBranch vals FloatBranchFilter bf NULL FloatVarValPrint vvp NULL Branch over x with variable selection vars and value selection vals. GECODE_FLOAT_EXPORT BrancherHandle GECODE_FLOAT_EXPORT BrancherHandle Gecode::branch (Home home, const FloatVarArgs &x, TieBreak< FloatVarBranch > vars, FloatValBranch vals, FloatBranchFilter bf=NULL, FloatVarValPrint vvp=NULL) branch Home home const FloatVarArgs & x TieBreak< FloatVarBranch > vars FloatValBranch vals FloatBranchFilter bf NULL FloatVarValPrint vvp NULL Branch over x with tie-breaking variable selection vars and value selection vals. GECODE_FLOAT_EXPORT BrancherHandle GECODE_FLOAT_EXPORT BrancherHandle Gecode::branch (Home home, FloatVar x, FloatValBranch vals, FloatVarValPrint vvp=NULL) branch Home home FloatVar x FloatValBranch vals FloatVarValPrint vvp NULL Branch over x with value selection vals. GECODE_FLOAT_EXPORT BrancherHandle GECODE_FLOAT_EXPORT BrancherHandle Gecode::assign (Home home, const FloatVarArgs &x, FloatAssign vals, FloatBranchFilter fbf=NULL, FloatVarValPrint vvp=NULL) assign Home home const FloatVarArgs & x FloatAssign vals FloatBranchFilter fbf NULL FloatVarValPrint vvp NULL Assign all x with value selection vals. GECODE_FLOAT_EXPORT BrancherHandle GECODE_FLOAT_EXPORT BrancherHandle Gecode::assign (Home home, FloatVar x, FloatAssign vals, FloatVarValPrint vvp=NULL) assign Home home FloatVar x FloatAssign vals FloatVarValPrint vvp NULL Assign x with value selection vals.