xternal_queens.c
Go to the documentation of this file.
30/*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
303 * | separate | set this to `TRUE` if you would like the handler to separate, e.g. generate cuts |
304 * | enforce | set this to `TRUE` if you would like the handler to enforce solutions. This means that when the handler declares an LP or pseudo solution as infeasible, it can resolve infeasibility by adding cuts, reducing the domain of a variable, performing a branching, etc. |
306 * | propagate | set this to `TRUE` if you want to propagate solutions, this means tighten variables domains based on constraint information |
307 * | local | set this to `TRUE` if the constraint is only locally valid, e.g., generated in a branch and bound node |
308 * | modifiable | set this to `TRUE` if the constraint may be modified during solution process, e.g. new variables may be added (colum generation) |
309 * | dynamic | set this to `TRUE` if this constraint is subject to aging, this means it will be removed after being inactive for a while (you should also say `TRUE` to removable in that case) removable set this to `TRUE` to allow the deletion of the relaxation of the constraint from the LP |