Generated on Sun Feb 17 15:24:47 2019 for Gecode by doxygen 1.6.3

Changelog

Changes in Gecode Versions

Gecode Version Numbers

Gecode version numbers x.y.z change according to the following rules (of thumb):

  • when z changes, the programming interfaces for Programming models, and Programming search engines remain stable and only minor additions or improvements are included.
  • when y changes, the above mentioned interfaces might have changed and medium to major additions or improvements are included.
  • the change of x is reserved for radical changes to Gecode.

Changes in Version 6.1.1 (2019-02-14)

This release fixes a number of minor issues and adds post events to general tracers.

  • Kernel
    • Additions
      • General tracers now support post events, see MPG for details. (major)
    • Bug fixes
      • Use locks to guard mutexes in case tracers throw exceptions. (minor, thanks to Conrad Drescher)
      • Fixed potential deadlock when memory has been exhausted. (minor, contributed by Conrad Drescher, Patrick Zimmer)
  • Search engines
    • Bug fixes
      • Use locks to guard mutexes in case tracers throw exceptions. (minor, thanks to Conrad Drescher)
  • Finite domain integers
  • Minimal modeling support
    • Bug fixes
      • exp(0.0) now correctly evaluates to 1.0 (and not 0.0). (minor, thanks to Conrad Drescher)
  • Example scripts
    • Additions
      • Added example for magic squares with pre-filled instances. (minor, contributed by Samuel Gagnon)
  • Gecode/FlatZinc
    • Bug fixes
      • Change table and regular predicates to take 1d arrays as arguments. Otherwise the generated FlatZinc does not typecheck. (minor)
      • Add colon to statistics output to conform with FlatZinc specification. (minor)
  • General
    • Additions
      • Added installation target to the CMake configuration. (minor, thanks to Jip J. Dekker)
    • Other changes
      • Fix compilation problems with the Microsoft Visual Studio IDE which uses -permissive- as default, rather than -permissive as cl.exe does. (minor)
      • Removed the use of glibc macros in the architecture selection process of the boost interval library. This allows for the compilation on unix machines based on a different implementation of the C library. (minor, thanks to Jip J. Dekker)

Changes in Version 6.1.0 (2018-10-17)

This release adds reified extensional constraints; support for negative tables; experimental support for counting-based search (thanks to Samuel Gagnon); and support for standard C++ initializer lists. In addition, the release has lots of bug fixes and performance improvements. It is highly recommended to switch as soon as possible!

  • Kernel
    • Removals
      • Variables cannot any longer be compared by same() and before(). If you want to compare two variables x and y whether they are identical, use x.varimp() == y.varimp(). (major)
    • Other changes
      • The alignment of memory allocated from a Region is now as prescribed by the maximum of std::max_align_t and GECODE_MEMORY_ALIGNMENT (which can be re-defined). Please also check MPG for a tip on alignment of memory handeled by Gecode. (minor, thanks to Rui Machado, Jens Krüger)
      • The function shared() for testing whether a view occurs in an array or whether two arrays contain at least on shared view is no a simple function and not a member function (which means, use shared(x,y) instead of x.shared(y)). (major)
      • Views now are compared by the standard C++ operators "==", "!=", and "\<" (this replaces the same and before functions). (major)
    • Bug fixes
      • Added missing definitions for declarations of creating Home objects from spaces with propagator and brancher groups. (minor)
      • The SharedArray class now has an equality operator. This fixes a problem in the FlatZinc interpreter, which is keeping a hash set of arrays that relies on the equality test. (minor)
  • Search engines
    • Other changes
      • Support for the CPProfiler is now enabled by default. (minor)
      • SEBs now support standard initializer lists but do not any longer support variable argument lists (as the combination is really confusing). (major)
  • Finite domain integers
    • Additions
      • Added support for reified extensional table constraints. (major)
      • Added support for negative table for extensional table constraints. (major)
      • Added experimental support for counting-based search. It can be enabled by running configure with --enable-cbs. See examples/qcp.cpp for an example. (major, contributed by Samuel Gagnon)
      • DFAs now support standard initializer lists. (minor)
      • IntSets now support standard initializer lists, for both individual elements (for example, IntSet s({1,2,3})) as well as ranges (for example, IntSet s({{1,2},{6,9}})). (minor)
      • Integer and Boolean variable argument arrays now support standard initializer lists. (minor)
    • Removals
      • Variables cannot any longer be compared by same() and before(). If you want to compare two variables x and y whether they are identical, use x.varimp() == y.varimp(). (major)
    • Other changes
      • The default propagation for unary has been too weak (likely to hurt Gecode in the MiniZinc competitions of 2017 and 2018), now the default is back to maximal propagation. (minor, thanks to Sara Frimodig)
      • Views now are compared by the standard C++ operators "==", "!=", and "\<" (this replaces the same and before functions). (major)
      • The add function of TupleSet now supports standard initializer lists but do not any longer support variable argument lists (as the combination is really confusing). (major)
      • IntArgs now support standard initializer lists but do not any longer support variable argument lists (as the combination is really confusing). Now one can write IntArgs c({1,2,3}) for example. (major)
    • Bug fixes
      • Fixed scheduling for Boolean variables (funnily, only occured with a newly added propagator). (major)
    • Performance improvements
      • Improved performance of tuple-set extensional constraints by maybe 15-20% through reordering loops. (minor)
  • Finite integer sets
    • Additions
      • Set variable argument arrays now support standard initializer lists. (minor)
    • Removals
      • Variables cannot any longer be compared by same() and before(). If you want to compare two variables x and y whether they are identical, use x.varimp() == y.varimp(). (major)
    • Other changes
      • Views now are compared by the standard C++ operators "==", "!=", and "\<" (this replaces the same and before functions). (major)
  • Floats
    • Additions
      • Float variable argument arrays now support standard initializer lists. (minor)
    • Removals
      • Variables cannot any longer be compared by same() and before(). If you want to compare two variables x and y whether they are identical, use x.varimp() == y.varimp(). (major)
    • Other changes
      • Views now are compared by the standard C++ operators "==", "!=", and "\<" (this replaces the same and before functions). (major)
  • Minimal modeling support
    • Bug fixes
      • Take exponent into account for float expressions with pow and nroot. (minor, thanks to Matthias Balzer)
      • Fixed fall through bug for set expressions. (major, thanks to Robin Eklind)
  • Gecode/FlatZinc
    • Additions
      • Added native support for reified extensional table constraints. (major)
    • Other changes
      • Add -t command line option to fzn-gecode, to support new unified time limit command line option for FlatZinc solvers. (minor)

Changes in Version 6.0.1 (2018-05-21)

Contains a number of small fixes and one large fix for float variables (basically, minimodel using float variables would always lead to overflow and hence throw an exception).

  • Floats
    • Other changes
      • All constraints over float variables now constrain their variables when being posted to avoid overflow. (major, thanks to Kurt Van Den Branden)
      • The interval for a float value is now printed between "[" and "]", whereas the interval for a float variable is printed between "[[" and "]]". (minor)
    • Bug fixes
      • Float values could not be printed. (minor)
  • Minimal modeling support
    • Bug fixes
      • Fixed strict inequalities for Float relations. (minor, thanks to Matthias Balzer)
  • Support algorithms and datastructures
    • Other changes
      • Detect is os_unfair_lock is available at runtime, in order to be able to support older versions of macOS in the same binaries. (minor)
    • Bug fixes
      • Fixed compilation problem on 32 bit platforms. (minor, thanks to Kari Pahula)
  • Gecode/FlatZinc
    • Other changes
      • Add support for annotations to control restart strategy. (minor)
    • Bug fixes
      • Fixed the initialisation of the random number generator for the FlatZinc executable. This fix ensures the generator is always initialised. (minor, thanks to Jip J. Dekker)

Changes in Version 6.0.0 (2018-02-23)

This major release fixes many bugs, adds quite some new functionality, and changes how cloning works (most likely the biggest change we ever did to Gecode): the Boolean share argument is not any longer needed (see how to change your programs in How to Change to Gecode 6.0.0). The added functionality includes experimental support for the CPProfiler, classes for lexicographic optimization (where the cost is defined by an array of variables), a new much faster implementation of extensional constraints using tuple sets, and support for tracing search engines.

  • Kernel
    • Additions
      • Now it can be controlled by an Boolean argument whether AFC information between spaces is shared or not. (minor)
      • Regions can be freed without destroying them. Consult MPG for details. (minor)
    • Removals
      • Choices do not need to implement a size function. (minor)
    • Other changes
      • Shared handles and objects used to implement most shared data structures in Gecode are thread safe now. In most cases they are lock free. (major)
      • The Boolean share argument during cloning is not any longer needed. (major)
      • The unsharing of AFC information during cloning is not any longer needed as it happens automatically when a new AFC object is created. (major)
      • Regions are now created independently of a space and the policy using several regions simultaneously has changed. Consult MPG for details. (major)
    • Bug fixes
      • Fixed virtual method table overwrite bug for Action and CHB. (major)
      • During unsharing of AFC information also the propagator identifiers were changed. (minor)
  • Search engines
    • Additions
      • Added experimental support for the CPProfiler, see MPG for details. This is only enabled, if Gecode has been configured with the option --enable-cpprofiler. (major, contributed by Kevin Leo, Maxim Shishmarev)
    • Bug fixes
      • The statistics for parallel search engines was wrong. (minor)
      • Fixed several race conditions during the termination of parallel search engines. (major)
      • A sequential portfolio ignored stop objects in certain cases. (major)
      • Fixed double deletion bug in parallel portfolio-based search. (major)
      • Fixed a potential memory leak for restart-based search when the root space was failed. (minor)
      • Fixed a race condition in portfolio-based search. (major)
  • Finite domain integers
    • Additions
      • Tuple sets can be initialized from DFAs (and hence regular expressions). (major, contributed by Linnea Ingmar)
      • Now it can be controlled by an Boolean argument whether AFC information between spaces is shared or not. (minor)
    • Removals
      • Removed IPL_SPEED and IPL_MEMORY as they are not any longer needed. (major)
    • Other changes
      • When posting a simple linear constraint (only two variables with unit coefficients) with default integer propagation level, a domain consistent propagator is posted. Now a domain consistent propagator is always posted if the right-hand side constant is zero and otherwise if the computations required can be done with normal integers. (minor)
      • Changed accuracy of delta information for integer views (now, all values between new and old lower/upper bound are reported as being discarded). (minor)
      • Re-implemented tuple sets for simplicity and ease of use. Please see MPG for details. (major)
      • Replaced extensional implementation by a single implementation based on the compact-table propagator described in: J. Demeulenaere et. al., Compact-Table: Efficiently filtering table constraints with reversible sparse bit-sets, CP 2016. Pages 207-223, LNCS, Springer, 2016. The extensional propagator runs up to ten times faster than the old implementations. (major, contributed by Linnea Ingmar)
    • Bug fixes
      • Perform unsharing even in failed spaces to avoid exceptions in later constraint posting. (minor, thanks to Peter Stuckey)
      • Tuple sets used for Boolean variables are allowed to contain only zeros and ones as values. (minor)
      • Fixed printing of group information for tracing. (minor, thanks to Massimo Morara)
      • The bounds propagator for abs is now bounds consistent. (major, thanks to Conrad Drescher)
      • For Boolean variables, an initialized BoolCHB in branching was ignored. (major)
  • Finite integer sets
    • Additions
      • Now it can be controlled by an Boolean argument whether AFC information between spaces is shared or not. (minor)
      • Added checks to avoid posting set relation propagators in case their variables are in fact the same. (minor, thanks to Conrad Drescher)
    • Bug fixes
      • Fixed printing of group information for tracing. (minor, thanks to Massimo Morara)
  • Floats
    • Additions
      • Now it can be controlled by an Boolean argument whether AFC information between spaces is shared or not. (minor)
    • Bug fixes
      • Linear constraints now check whether constant coefficients have mixed signs (include zero) and throw an exception if yes. (minor, thanks to Matthias Balzer)
      • Linear constraints now check properly for numerical overflow. (major, thanks to Matthias Balzer)
      • Fixed printing of group information for tracing. (minor, thanks to Massimo Morara)
  • Minimal modeling support
    • Additions
      • Added IntLexMinimizeSpace and IntLexMaximizeSpace for lexicographic optimization. (major, thanks to Roberto Castañeda Lozano)
      • Added reified dom-expressions. (major, contributed by Matthias Balzer)
      • Added relations between integer and set expressions. (major, contributed by Matthias Balzer)
    • Removals
      • Removed the deprecated classes MinimizeSpace and MaximizeSpace (use IntMinimizeSpace and IntMaximizeSpace instead). (minor)
  • Script commandline driver
    • Additions
      • A new mode "-mode cpprofiler" and several command-line arguments -cpprofiler-* have been added to connect Gecode to the CPProfiler. For more details, see MPG. (major)
      • Added IntLexMinimizeScript and IntLexMaximizeScript for lexicographic optimization. (major, thanks to Roberto Castañeda Lozano)
    • Removals
      • Removed the deprecated classes MinimizeScript and MaximizeScript (use IntMinimizeScript and IntMaximizeScript instead). (minor)
    • Other changes
      • No hyphen must be given for a command line switch and both "-" and "--" are automatically added. (major)
    • Bug fixes
      • The -slice commandline option for sequential portfolios is not ignored any longer. (minor)
  • Support algorithms and datastructures
    • Other changes
      • Replace deprecated OSSpinLock with os_unfair_lock on newer versions of macOS. (minor)
      • Bitsets now use 64 bit integers on all 64 bit architectures. (minor)
  • Gecode/FlatZinc
    • Other changes
      • Share tables for extensional (table) constraints, DFAs for regular constraints, and arrays of constants for element constraints. (minor)
      • Change default propagation level to bounds propagation for global cardinality constraints. (minor)
      • Add redefinition of disjunctive_strict in terms of cumulative. (minor)
      • Make mzn-gecode script use mzn-fzn if minizinc driver is not present. (minor)
      • Add support for int_pow predicate. (minor, thanks to Andreas Schutt)
      • Added support for tracing search engines. (major, thanks to Maxim Shishmarev)
    • Bug fixes
      • Fix syntax errors in definitions of global cardinality predicates. (major, thanks to Andreas Schutt)
      • Fixed declarations of table_int and table_bool constraints. (minor, thanks to Andreas Schutt)

Changes in Version 5.1.0 (2017-04-18)

This is a rather major release, fixing a number of bugs and adding quite a number of new features. Some of the features require changes to your models.

In more detail: extended tracing so that all propagator executions and commit operations can be traced; renamed activity to action to avoid confusion with activity in SAT (and fixed that action information is also recorded during failure); added CHB (conflict-history based branching) heuristic; optimized AFC; all functions taken as arguments by Gecode are now based on std::function-types; instead of branching with INT_VAR_* and INT_VAL_* for Boolean variables, BOOL_VAR_* and BOOL_VAL_* must be used. There are a number of additional changes, so you might want to read the whole changelog.

  • Kernel
    • Additions
      • Trace recorders have been renamed to variable (or view) trace recorders. New trace recorders have been added that can trace all propagate and commit operations. See MPG for details. (major)
      • Tracing now also records failure-events, see MPG for details. (minor)
      • Added support for CHB (conflict-history based branching) heuristic for branching. (major)
    • Removals
      • Choices do not need to implement a size() member function (unused since years). (minor)
    • Other changes
      • Replaced initialized() function by operator bool() for RND, Action, AFC, CHB. (minor)
      • Disabled propagators can be disabled again (convenience). (minor)
      • Reimplemented the infrastructure to record AFC, much simpler and much faster. (major)
      • Renamed Activity to Action to avoid confusion with activity in SAT. (major)
      • Variable implementations are not allowed to return a failed modification event directly (such as in return ME_INT_FAILED;), they need to call the function fail() instead (such as in return fail(home);). (major)
      • Activity for branching was not counted when propagation lead to a failed space, this is done now. The activity of a variable is now by default initialized to 1. That makes activity actually useful... (major)
      • Variable implementations do not need to define cancel() functions, the kernel provides generic implementations (this only matters for users implementing their own variables). Also cleaned up some inlining mess which reduces object code size by around 10%. (major)
    • Bug fixes
      • Computing the afc for an assigned variable would crash. (major)
      • In certain situations the AFC could be incremented twice (could only have occured for linear constraints with Boolean variables and sequence constraints). (major)
  • Search engines
    • Bug fixes
      • Fixed crashes in sequential and parallel portfolios using parallel or restart-based best solution search engines as assets. (major)
  • Finite domain integers
    • Additions
      • Tracing now also records failure-events, see MPG for details. (minor)
      • Added support for CHB (conflict-history based branching) heuristic for branching. See MPG for details. (major)
      • Added if-then-else constraint (called ite) also for Boolean variables. (minor)
      • Relations between arrays now support also a mix between integer (or Boolean) variable array and integer array. (minor)
    • Removals
      • The integer value selections INT_VAL_NEAR_MIN(), INT_VAL_NEAR_MAX(), INT_VAL_NEAR_INC(), and INT_VAL_NEAR_DEC() have been removed. It is much better to use LNS (large neighbourhood search), see MPG for details. (minor)
    • Other changes
      • Renamed Activity to Action to avoid confusion with activity in SAT. (major)
      • Branching on Boolean variables now requires to use BOOL_VAR_...() and BOOL_VAL_...() functions instead of the INT_... variants. (major)
      • Functions passed to wait() and when() can now be of std::function type. (major)
  • Finite integer sets
    • Additions
      • Tracing now also records failure-events, see MPG for details. (minor)
      • Added reified versions of relation constraints between a set and an integer variable. (minor)
      • Added reified cardinality() constraint. (minor)
      • Added support for CHB (conflict-history based branching) heuristic for branching. See MPG for details. (major)
      • Added if-then-else constraint (called ite) also for set variables. (minor)
    • Other changes
      • Renamed Activity to Action to avoid confusion with activity in SAT. (major)
      • Functions passed to wait() can now be of std::function type. (major)
  • Floats
    • Additions
      • Tracing now also records failure-events, see MPG for details. (minor)
      • Added support for CHB (conflict-history based branching) heuristic for branching. See MPG for details. (major)
      • Added if-then-else constraint (called ite) also for float variables. (minor)
    • Other changes
      • Renamed Activity to Action to avoid confusion with activity in SAT. (major)
      • Functions passed to wait() can now be of std::function type. (major)
    • Bug fixes
      • The right-hand side of a linear constraint was a number rather than a value (FloatNum rather than FloatVal) leading to rounding errors. (major)
  • Support algorithms and datastructures
    • Additions
      • Added an abstraction RunJobs for executing several jobs in parallel (not officially supported). (minor)
  • Example scripts
    • Other changes
      • The Social golfers example now includes a model variant that uses integer distinct for ensuring all player-pairs are distinct. (minor)
  • Gecode/FlatZinc
    • Bug fixes
      • Some FlatZinc constraints were not guarded with assertions, which could make Gecode crash on incorrect models. (minor)
      • Add assertions to regular constraint definition to avoid posting with invalid arguments. (minor)
      • Fix parser to work with newer versions of GCC compiler. (minor, thanks to David Hotham)
  • General
    • Other changes
      • Gecode requires now at least the Microsoft Visual Studio 2013 compiler. (major)
      • Enable C++11 standard on compilers that need an explicit switch. Can be switched off using --disable-cpp11 during configuration. (minor)

Changes in Version 5.0.0 (2016-10-25)

This release adds a number of new features and fixes many bugs (some rather serious), so it is recommended to switch as soon as possible to this release. Some highlights are: re-added limited discrepancy search (LDS); added sequential and parallel portfolio-based search (PBS); added support for groups of propagators and branchers; added extensive tracing functionality based on groups; propagators can be disabled and re-enabled; support for arbitrary memory allocators; changed the notion of "integer consistency level" to the more expressive concept "integer propagation level".

It is recommended to read the new Chapter in MPG on groups and tracing.

As the interfaces has changed, please consult How to Change to Gecode 5.0.0.

  • Kernel
    • Additions
      • Added additional propagation cost level record() which is reserved for propagators that record information but do not propagate. (minor)
      • Propagators and branchers now have a fixed identity available by id() member functions. (minor)
      • Added an iterator SubscribedPropagators that iterates over the subscribed propagators of views and variable implementations. (minor, thanks to Gilles Pesant)
      • Added support for tracing propagation, please see MPG for details. (major)
      • All constraint post functions should now use the macro GECODE_POST at their start: it will check for failure but also will set group information useful for tracing. (major)
      • Added groups of branchers (class BrancherGroup) by which groups of branchers can be controlled. See MPG for details. (major)
      • Added groups of propagators (class PropagatorGroup) by which groups of propagators can be controlled. See MPG for details. (major)
      • Propagators can now be disabled and enabled (through PropagatorGroups). See MPG for details. (major)
      • All propagators must implement a virtual member function reschedule() that can be used to reschedule a propagator according to its subscriptions. See MPG for more details. (major)
      • All variable implementation must implement an additional reschedule() function that can be used to reschedule a propagator according to its subscriptions. See MPG for more details. (major)
      • All branchers of a space can be killed by BrancherGroup::all.kill(home). This is the default for the master() function when using portfolio search. (minor)
      • The clone() function takes an additional optional argument that defines whether AFC information is shared among clones. (major)
      • Missing = SUBSCRIBE annotations for modification events are properly reported. (minor, thanks to Joseph Scott)
    • Removals
      • Removed brancher handles, they are subsumed by brancher groups. (major)
    • Other changes
      • Do not declare new and delete of ArgArrayBase as private to support the use of placement new. (minor, thanks to Matthias Balzer)
      • Do not use local classes as this would require C++-11. (minor, thanks to Mirko Rahn)
      • The iterators over all propagators and branchers of a space are not any longer accessible. Please use group iterators instead. (minor)
      • The member functions propagators() and branchers() of the class Space have been removed as they can be expressed with groups. (minor)
      • Added destructor to NGL class to avoid warnings. (minor, thanks to Conrad Drescher)
      • The master() and slave() configuration functions has been changed as they are now also used for portfolio-based search. Please see "Modeling and Programming with Gecode" for details. (major)
    • Bug fixes
      • Fixed memory leak for regions (occured for many large allocation requests). (major, thanks to Matthias Balzer)
      • Some Gecode macros made the assumption that they can only be used inside the Gecode namespace. Fixed. (minor)
      • Fixed wrong type declaration in region_allocator::deallocate(). (minor, thanks to Matthias Balzer)
  • Search engines
    • Additions
      • Limited Discrepancy Search (LDS) added. Please see MPG for details. (major)
      • Portfolio-based search has been added (both sequential and parallel). Please see "Modeling and Programming with Gecode" for details. (major)
    • Other changes
      • The restart meta search engine must be used with the branch-and-bound engine for best solution search. (minor)
      • For meta search engines, the order of template arguments has been changed: the first is the script type, the second is the engine type. (minor)
    • Bug fixes
      • The restart engine would not properly delete some data structures when being deleted. (minor)
  • Finite domain integers
    • Additions
      • Added relax() function for relaxed assignment of integer and Boolean variables from a previous solution, see MPG for details. (minor)
      • Added support for tracing propagation, please see MPG for details. (major)
      • Added distinct-except-constant constraint. (minor)
      • Added distinct with optional variables. (minor)
      • Added some additional propagation to circuit and path constraints, based on: Kathryn Glenn Francis, Peter Stuckey, Explaining Circuit Propagation, Constraints (2014) 19:1-29. (minor)
      • The unary constraint now can also perform time-tabling propagation. (major)
      • The level of propagation of the cumulative constraint can now be controlled via the integer propagation level argument. Please consult Modeling and Programming with Gecode for details. (major)
      • The level of propagation of the unary constraint can now be controlled via the integer propagation level argument. Please consult Modeling and Programming with Gecode for details. (major)
      • Added variant of argmin and argmax with offset. (minor, thanks to Kish Shen)
    • Other changes
      • The selection for extensional table constraints whether to optimize for speed or memory is now controlled by the integer propagation level argument. The old argument of type ExtensionalPropKind has been removed (the type has been removed as well). (minor)
      • The integer consistency level (IntConLevel) has been renamed to integer propagation level (IntPropLevel). Additional levels for speed, memory, basic, and advanced propagation have been added. See Modeling and Programming with Gecode for details. (major)
    • Bug fixes
      • The domain consistent dom() constraint for integer ranges was only bounds consistent... (major, thanks to Roberto Castañeda Lozano)
      • Fix n-ary lq/le propagator when used on arrays with variables occurring multiply. (minor)
      • The count constraint with INT_GR relation was broken (off-by-one error). (major, thanks to Kish Shen)
      • The binpacking constraint works even if all items are of size zero. (minor, thanks to Kish Shen)
      • Constrain bin variables even for zero-sized items in binpacking constraint. (minor, thanks to Kish Shen)
    • Performance improvements
      • Some count constraints are now optimized in case its arguments are assigned. (minor, thanks to Kish Shen)
  • Finite integer sets
    • Additions
      • Added relax() function for relaxed assignment of set variables from a previous solution, see MPG for details. (minor)
      • Added support for tracing propagation, please see MPG for details. (major)
    • Bug fixes
      • Fixed some idempotency problems in the n-ary union and weight propagators. (minor)
  • Floats
    • Additions
      • Added relax() function for relaxed assignment of float variables from a previous solution, see MPG for details. (minor)
      • Added channeling constraint between float and Boolean variable. (minor)
      • Added support for tracing propagation, please see MPG for details. (major)
    • Bug fixes
      • Enable optimized rounding only if MSVC does not use SSE, otherwise things really go wrong (necessary for MSVC 2015). (major, thanks to Filip Konvicka)
      • FloatValArgs erroneously inherited from PrimArgArray, now it inherits from ArgArray. (minor, thanks to Matthias Balzer)
      • Fixed two infinite recursion bugs in related to use of hull(). (minor, thanks to Conrad Drescher, Patrick Berg)
  • Minimal modeling support
    • Bug fixes
      • Export BoolExpr::Misc for linking. (minor, thanks to Matthias Balzer)
      • Fixed memory leak in constructor for Boolean element expression. (minor, thanks to Matthias Balzer)
      • Fixed special case handling for sqr and pow functions. (minor, thanks to Matthias Balzer)
      • Removed bogus declarations of comparison operators between Boolean variables and float expressions. (minor, thanks to Matthias Balzer)
      • Fixed posting of Boolean element expressions and relations. (minor, thanks to Roberto Castañeda Lozano, Matthias Balzer)
      • Fixed printing of regular expressions. (minor, thanks to Joseph Scott)
  • Script commandline driver
    • Additions
      • The probability for relaxing variables in LNS can be passed with the -relax commandline option. (minor)
      • The discrepancy limit for Limited Discrepancy Search (LDS) can be passed with the -d-l commandline option. (minor)
      • Trace flags can be passed on the commandline. (minor)
      • The number of assets to use for portfolio-based search can be passed on the commandline as -assets. (minor)
    • Other changes
      • The commandline option -icl (for integer consistency level) has been replaced by -ipl (for integer propagation level). All new levels can be specified by a comma separated list as argument to -ipl. (major)
  • Support algorithms and datastructures
    • Additions
      • Gecode supports now arbitrary memory allocators (the behavior can be controlled by the commandline options -enable-allocator and -disable-allocator). For more details, please see MPG. (major)
      • Classes can now inherit from HeapAllocated when using the Gecode heap object for memory management. (minor)
  • Example scripts
    • Other changes
      • The bin-packing model did not use a best-fit solution for the upper bound, but only a first-fit. (minor, thanks to Ananja Muddukrishna)
  • Gecode/FlatZinc
    • Other changes
      • Add support for the alldifferent_except_0 constraint by rewriting to a global cardinality constraint. (minor)
      • The simple LNS using relax_and_reconstruct can now take an optional third argument that is used as an initial solution. (minor)
      • Make bounds propagation the default for global cardinality constraints in FlatZinc. (minor, thanks to Pete Nightingale)
      • Add support for generating the FlatZinc parser using bison version 3. (minor)
    • Bug fixes
      • Fix the FlatZinc parser for cases where variables were aliased to a fixed variable. (major, thanks to Mats Carlsson)
      • Add missing declaration for bool_clause_reif builtin. (minor)
      • FlatZinc interpreter now does not try to post constraints if there was a syntax error during parsing. (minor, thanks to Tommy Persson)
      • Fix a bug in the parser when parsing float variable domains. (minor)
      • Fix branching on introduced variables, which could sometimes lead to unassigned variables appearing in the output. (major, thanks to Andrea Rendl)
      • Improve error messages in FlatZinc for some type errors. (minor, thanks to Jean-Noël Monette)
  • General
    • Other changes
      • Compiles with Visual Studio 2015. (minor)
    • Bug fixes
      • Fixed many small quirks in propagator rewriting, where the information on which propagator is rewritten was omitted. (minor)
      • Made copy constructor for search engines private to trigger compiler error when trying to copy a search engine. (minor, thanks to Mirko Rahn)
      • Fixed some linking issues for static linking. (minor, thanks to Mirko Rahn)

Changes in Version 4.4.0 (2015-03-20)

This release fixes some bugs and improves some search-related aspects.

Note that you will have to change all scripts that inherit from the pre-defined script classes (Script, IntMinimizeScript, IntMaximizeScript, FloatMinimizeScript, FloatMaximizeScript). The change is easy: in your constructor you have to add a call to the constructor of the pre-defined script class with the command line options as argument. Just check any of the Gecode example for how it is done.

  • Search engines
    • Additions
      • Added functions to Stop class that can create common stop objects. (minor)
      • Exposed class definitions for common cutoff generators. (minor)
    • Bug fixes
      • Fix memory leak in the DFS and BAB search engines that could make restart-based search run out of memory very quickly. (major, thanks to Håkan Kjellerstrand)
    • Performance improvements
      • Delay efforts for restarting until it is really needed after a solution has been found. (minor)
  • Minimal modeling support
    • Additions
      • The classes FloatMinimizeSpace and FloatMaximizeSpace can be created with an improvement step for optimization. (minor, thanks to Mark Manser )
  • Script commandline driver
    • Additions
      • An option -step now can pass an improvement step to scripts of type FloatMinimizeScript and FloatMaximizeScript. (minor, thanks to Mark Manser )
      • Added option -seed for passing a seed to random number generators. (minor)
    • Other changes
      • All scripts now must call the constructor of their base class with an option argument.
        Note that you will have to change your models by a call to the constructor of the script class with an option argument! (major)
  • Example scripts
    • Additions
      • Added quasigroup completion benchmarks. (minor)
  • Gecode/FlatZinc
    • Additions
      • An option -step now can pass an improvement step for optimization of float problems. (minor, thanks to Mark Manser )
    • Bug fixes
      • Added support for missing builtins array_float_element (by decomposition), float_lin_lt and float_lin_lt_reif. (minor, thanks to Ahmed Kamal)
      • LNS could fail when the search was restarted before finding the first solution. (minor, thanks to Håkan Kjellerstrand)

Changes in Version 4.3.3 (2015-01-20)

This release adds support for LNS to FlatZinc, adds support for MiniZinc 2, fixes a number of bugs and some new constraints.

  • Search engines
    • Other changes
      • Change the slave function for meta search engines to return whether the search in the slave is going to be complete. This is necessary for example in LNS, where completing the search in the slave does not mean that the overall search is finished. (minor)
    • Bug fixes
      • Now no-goods are extracted properly in case a solution is found. (major, thanks to Zichen Zhu)
  • Finite domain integers
    • Additions
      • Added argmin and argmax constraints. (minor)
  • Finite integer sets
    • Bug fixes
      • The channeling propagator between a SetVar and an array of BoolVars propagated incorrectly when posted on a fixed SetVar. (minor, thanks to Farshid Hassani Bijarbooneh)
  • Gecode/FlatZinc
    • Additions
      • Added support for arg_min and arg_max constraints. (minor)
      • Make a simple form of LNS accessible from FlatZinc. To use it, include gecode.mzn and add the relax_and_reconstruct search annotation defined in that file. (major)
      • Support dom_w_deg search annotation. (minor)
      • Add support for gecode_schedule_cumulative_optional constraint. (minor)
    • Other changes
      • Add support for the MiniZinc 2 min/max builtins. The Gecode MiniZinc library is now compatible with both MiniZinc 1.6 and 2.0. (minor)
      • Search on objective function variable after all other variables (but still before introduced variables). (minor)
    • Bug fixes
      • Fix special case detection for cumulatives constraint, could sometimes incorrectly turn a cumulatives into a disjunctive constraint. (minor, thanks to Mats Carlsson)
      • Fix behavior of -a command line option for satisfaction problems. (minor, thanks to Björn Böttcher)
      • Fix default search annotation for float objectives. (minor, thanks to Chris Mears)
      • Install parser.tab.hh header. (minor, thanks to Willem Van Onsem)

Changes in Version 4.3.2 (2014-11-06)

Fixed major bug in and added extensive tests for the FlatZinc interpreter. If you are using Gecode with FlatZinc you should definitely upgrade!

  • Systematic tests
    • Additions
      • Added long-overdue tests for the FlatZinc interpreter. (major)
  • Gecode/FlatZinc
    • Bug fixes
      • Fixed major bug that would cause the FlatZinc interpreter to crash on most models. (major, thanks to Jean-Noël Monette)
  • General
    • Bug fixes
      • Fix cmake build file to work better when building with Qt. (minor, thanks to Alex Elliott)

Changes in Version 4.3.1 (2014-10-22)

This release fixes some minor issues and a major bug for the FlatZinc interpreter. It considerably extends restart-based search so that it supports LNS (Large Neighborhood Search).

  • Search engines
    • Additions
      • Added a cutoff generator that merges the values of two cutoff generators. (minor)
    • Other changes
      • The restart-based search engine has been made more powerful: the master() and slave() configuration functions have been extended and get more information about each restart and the engine always maintains the last solution found. In particulae, the engine is now powerful enough to support LNS (Large Neighborhood Search). For details, please see MPG. (major)
      • The interface of cutoff generators has been extended in that it now offers current value access (operator()()) as well as increment (operator++()). (minor)
  • Minimal modeling support
    • Bug fixes
      • Removed potentially undefined behavior for regular expressions. (minor, thanks to Léonard Benedetti)
  • Gecode/FlatZinc
    • Bug fixes
      • Fixed FlatZinc aliasing detection on array variables that introduced incorrect aliases between variables. (major, thanks to Mats Carlsson)
      • Fixed parser for integer literals to generate error message when integers are out of bounds. (minor, thanks to Frank Imeson)
      • Fixed the FlatZinc interpreter to accept empty arrays as arguments in annotations. (minor, thanks to Peter Nightingale)
      • Fixed the behaviour for the -n and -a command line options for optimisation models. (minor, thanks to Carleton Coffrin)
  • General
    • Additions
      • Added support for building examples with CMake. (minor, thanks to Petter Strandmark)
    • Bug fixes
      • Gecode can now be used together with boost without conflicts. (minor, thanks to Pierre Talbot)

Changes in Version 4.3.0 (2014-08-28)

This release fixes a large number of both minor and major bugs, has some improvements for FlatZinc, and adds multi-dimensional bin-packing.

  • Kernel
    • Other changes
      • Allow 0.0 as decay value. (minor, thanks to Kish Shen)
    • Bug fixes
      • The function brancher did not return a handle. (minor, thanks to Roberto Castañeda Lozano)
  • Finite domain integers
    • Additions
      • Added multi-dimensional bin-packing constraint. (major, contributed by Stefano Gualandi)
    • Bug fixes
      • Re-enabled parts of not-first-not-last propagation for unary with optional tasks. (minor, thanks to Bauke Conijn)
      • In extremely rare cases, the bounds-consistent distinct (and hence all other distinct propagators as they use the bounds-consistent one internally) propagator could suffer from numerical overflow. (major, thanks to Roberto Castañeda Lozano, Gabriel Hjort Blindell)
      • No-good literals for greater-or-equal did not prune as much as they should. (minor, thanks to Duane Leslie)
  • Finite integer sets
    • Bug fixes
      • Removed compiler warning. (minor, thanks to Victor Zverovich)
  • Floats
    • Bug fixes
      • Removed compiler warning. (minor, thanks to Victor Zverovich)
  • Minimal modeling support
    • Bug fixes
      • Fixed posting of set relations involving constants. (major)
  • Example scripts
    • Additions
      • Added example for multi-dimensional bin-packing constraint. Thanks to Brian and Willem-Jan for allowing us to use their data set. (minor, thanks to Stefano Gualandi, Brian Kell, Willem-Jan Van Hoeve)
  • Systematic tests
    • Bug fixes
      • Removed uninitialized access. (minor, thanks to Victor Zverovich)
  • Gecode/FlatZinc
    • Other changes
      • The --free command line option has been renamed to -f to comply with other FlatZinc solvers. (minor)
    • Bug fixes
      • Added unshare constraints to all constraints that need them. Without unsharing, variables occurring multiply in the same FlatZinc arrays could lead to the FlatZinc interpreter aborting with an error. (minor)
      • Fixed FlatZinc interpreter to compile with clang in C++11 mode. (minor, thanks to Victor Zverovich)
      • Catch exceptions and print proper error message. (minor)
    • Performance improvements
      • The diffn constraint now posts additional implied cumulative constraints to strengthen propagation. (minor)
      • Treat equality constraints in FlatZinc as aliases instead of posting propagators, and post simple domain constraints before more complex propagators to help post the most efficient versions. (minor)
  • General
    • Bug fixes
      • Various fixes for CMake:
        • Set the output directory for runtime target files (executables and DLLs) to bin/ subdirectory of the project's binary directory to avoid collisions when Gecode is used as a subproject.Improve suppression of warnings.
        • Add GECODE_USE_QT variable which specifies whether to use Qt. Qt is used if GECODE_USE_QT is TRUE or unset.
        • Prevent linker warnings on MSVC.
        • Use per-target instead of global include directories. This simplifies use of Gecode as a subproject because add_target_libraries(<target> <gecode-lib>) now sets the necessary include directories for <target> in addition to link dependencies.
        • Fix to fully link internal dependencies needed for creating DLLs: https://github.com/ampl/gecode/pull/2 . (minor, thanks to Victor Zverovich, Tony Kelman)
      • Added patch for PowerPC (downstream patch from Debian). (minor, thanks to Roland Stigge)
      • Added missing boost header files. (minor, thanks to David Rijsman)

Changes in Version 4.2.1 (2013-11-05)

This release fixes several major bugs and adds some minor improvements.

  • Kernel
    • Additions
      • Activity information can now be initialized with a branch merit function. (minor, thanks to Kish Shen)
  • Search engines
    • Additions
      • Added support for a repeat cutoff generator. (minor, thanks to Roberto Castañeda Lozano)
    • Bug fixes
      • Fix for restart-based search when the master does not have a branching. (major, thanks to Roberto Castañeda Lozano)
      • Restart-based search did not work when the cutoff limit did not strictly increase. (major, thanks to Roberto Castañeda Lozano)
  • Finite domain integers
    • Additions
      • Activity information can now be initialized with a branch merit function. (minor, thanks to Kish Shen)
    • Bug fixes
      • Fixed incorrect propagation in sortedness with permutation variables. (major, thanks to Bauke Conijn)
      • Fixed cumulative constraint for 0-usage tasks. (major, thanks to Duane Leslie)
      • Fixed special case check for cumulative that would wrongly classify some instances as disjunctive. (major, thanks to Duane Leslie)
      • The nroot constraint now propagates correctly for negative numbers when the exponent is odd. (major, thanks to Kish Shen)
    • Performance improvements
      • Fix performance of domain consistent element for the case that the result variable is assigned. (minor, thanks to Anne Meyer)
  • Finite integer sets
    • Additions
      • Activity information can now be initialized with a branch merit function. (minor, thanks to Kish Shen)
  • Floats
    • Additions
      • Activity information can now be initialized with a branch merit function. (minor, thanks to Kish Shen)
  • Minimal modeling support
    • Additions
      • The sum of IntArgs can now be computed similarly to the sum of IntVarArgs. (minor, thanks to Philippe Kezirian)
  • Gecode/FlatZinc
    • Bug fixes
      • Fixed bug in auxiliary variable branching. (minor)
  • General
    • Other changes
      • Compiles with MSVC 2013. (minor)
    • Bug fixes
      • Fix CMake to also build FlatZinc and Driver correctly. (minor)

Changes in Version 4.2.0 (2013-07-19)

This release adds no-goods from restarts, removes memory statistics (but Gecode can be configured for more accurate statistics), and fixes a number of bugs.

  • Kernel
    • Additions
      • Added configure switch --enable-peakheap that adds support for memory statistics to the kernel. This comes with a runtime overhead, but provides more accurate information than the previous search engine based statistics. (minor)
    • Other changes
      • Low-level support for AFC is now public. (minor, thanks to Kish Shen)
      • The master() member function used during restart-based search now takes an additional no-goods argument. The default master() function posts no-goods (only effective when enabled in Search::Options). See MPG for details. (minor)
  • Search engines
    • Additions
      • Search options have an additional field nogoods_limit that defines too which depth a search tree is inspected for no-goods. (minor)
      • Added support for no-goods from restarts, see Modeling and Programming with Gecode for details.
        Note that also entails that the statistics will report different a different peak depth than in previous releases of Gecode when using no-goods. (major)
    • Removals
      • Removed memory statistics from the search engines. The reason is that the figures were too inaccurate (memory for shared data structure, caches, etc were not counted) and computing the figures was complicated. This feature is replaced by a configure switch that enables peak memory tracking based on operating system information. (major)
  • Script commandline driver
    • Additions
      • When using restart-based search, the use of no-goods from restarts can be switched on/off with the -nogoods command line option and the depth limit for extraction of no-goods with the -nogoods-limit command line option. (minor)
  • Range and value iterators
    • Bug fixes
      • Fixed segfault in NaryUnion iterator. (minor, thanks to Farshid Hassani Bijarbooneh, Joseph Scott)
  • Gecode/FlatZinc
    • Additions
      • Added support for value_precede_int and value_precede_set constraints. (minor)
    • Bug fixes
      • Fixed a memory leak in FlatZincSpace and a few more in the FlatZinc parser. (major, thanks to Chris Mears)
      • Fixed a bug in implicit search heuristic that could lead to a segmentation fault when minimizing an array element. (minor, thanks to Chris Mears)
  • General
    • Bug fixes
      • Fixes link error for CMake with MSVC. (minor, thanks to Victor Zverovich)

Changes in Version 4.1.0 (2013-07-01)

This release adds a really useful feature and the required infrastructure to Gist (it now can show information on the alternatives in a search tree), has some new features, and fixes quite a number of bugs (some of which are quite serious, in particular for: LDSB, restart-based search, and FlatZinc).

  • Kernel
    • Additions
      • Branchers now support a print() member function. (major)
      • Both AFC and Activity can be changed by a set() function. (minor)
    • Performance improvements
      • Implement the AFC search heuristic using FastMutex, which greatly improves parallel search performance on Mac OS X when using AFC. (minor)
  • Search engines
    • Bug fixes
      • Fixed a bug in restart-based search, which would crash if the problem is failed at the root or only had a single solution during best-solution search. (major, thanks to Chris Mears, Roberto Castañeda Lozano)
  • Finite domain integers
    • Additions
      • Integer and Boolean branchings now take an optional argument for a user-defined print function. See MPG for details. (major)
      • Added if-then-else constraint (called ite) for integer variables. (minor)
    • Other changes
      • Added classes IntMinimizeSpace and IntMaximizeSpace for cost-based optimization with an integer cost variable. While the classes MinimizeSpace and MaximizeSpace are still available, there use is deprecated and a later release might remove them. (minor)
    • Bug fixes
      • Fixed INT_VALUES_MAX() branching (INT_VALUES_MIN() was used instead). (minor, thanks to Victor Zverovich)
      • Fixed crash due to combination of LDSB and Activity. (major, thanks to Stefano Gualandi)
      • The internal representation of integer variable domains could leak memory to the space. (major)
      • Fixed binpacking crash when the b and s arrays are empty. (minor, thanks to David Rijsman)
  • Finite integer sets
    • Additions
      • Set branchings now take an optional argument for a user-defined print function. See MPG for details. (major)
    • Bug fixes
      • Fixed SET_VAR_ACTIVITY_SIZE_MIN/MAX, which used to compute size/activity instead of activity/size. (minor)
      • Fixed crash due to combination of LDSB and Activity. (major, thanks to Stefano Gualandi)
  • Floats
    • Additions
      • Float branchings now take an optional argument for a user-defined print function. See MPG for details. (major)
      • Added classes FloatMinimizeSpace and FloatMaximizeSpace for cost-based optimization with a float cost variable. (minor, thanks to Pascal Francq)
    • Bug fixes
      • Fixed FLOAT_VAR_ACTIVITY_SIZE_MIN/MAX, which used to compute size/activity instead of activity/size. (minor)
      • Random value selection for float branchings was not declared with the right types. (minor)
      • Fixed missing propagation in reified rel-constraints. (minor, thanks to Duong Khanh Chuong)
  • Minimal modeling support
    • Bug fixes
      • Boolean expressions could lead to a segfault when initialized with default constructor. (minor, thanks to Roberto Castañeda Lozano)
  • Script commandline driver
    • Additions
      • Added classes FloatMinimizeScript and FloatMaximizeScript for cost-based optimization with a float cost variable. (minor, thanks to Pascal Francq)
    • Other changes
      • Added classes IntMinimizeScript and IntMaximizeScript for cost-based optimization with an integer cost variable. While the classes MinimizeScript and MaximizeSpcript are still available, there use is deprecated and a later release might remove them. (minor)
    • Bug fixes
      • Fixed a race condition when using parallel search. (minor, thanks to Vincent Barichard)
  • Support algorithms and datastructures
    • Additions
      • Added FastMutex class that is implemented using spin locks on some platforms. (minor)
  • Example scripts
    • Additions
      • Added LDSB-based symmetry breaking to graph coloring example. (minor, thanks to Stefano Gualandi)
  • Gist
    • Additions
      • Gist now can show information on the alternatives in a search tree, using the new menu options "Label branches" and "Label path". (major)
  • Gecode/FlatZinc
    • Additions
      • The FlatZinc interpreter now supports float variables as objective functions. (major)
      • Added {int,bool,set,float}_default_search annotations. These can be used on solve items to declare the default search strategy for the respective variable types. (minor)
      • Added int2float constraint which was missing in the FlatZinc interpreter. (minor, thanks to Tias Guns)
    • Bug fixes
      • Fixed printing of float variables to be compatible with MiniZinc output. (minor, thanks to Peter Nightingale)
      • Fixed a segmentation fault when using FlatZinc with float variables that have initializers. (minor, thanks to Peter Nightingale)
      • Fixed the random search strategies to all use the same random number generator instead of different generators all initialised with the same seed (and therefore all producing the same sequences). (minor)
  • General
    • Other changes
      • CMake build system tweaked for out-of-source-dir building. (minor, thanks to Cliff Yapp)

Changes in Version 4.0.0 (2013-03-14)

This release adds a multitude of new features, fixes many bugs, and offers a number of performance improvements. There are too many major improvements to even summarize them here all, so here are just some highlights: LDSB as automatic symmetry breaking during search; restart-based search; complete redesign and reimplementation of branching enhancing the expressiveness massively (AFC with decay, activity, user-defined variable and value selection, tie-break control, better randomization, ...); half-reification; addition of floating point constraints.

It is recommended to read the new Chapter in MPG on branching as the changes are substantial and require you to change your programs, see also the full list of changes below.

As the interfaces has changed, please consult How to Change to Gecode 4.0.0.

  • Kernel
    • Additions
      • The random seeds for variable and value branching options can now be initialized from a hardware random number generator (see MPG for details). (minor)
      • All ArgArrays now accept STL vectors and input iterators for construction. (minor)
      • The kernel now can record the activity of variables. The activity of a variable is defined as how often the domain of a variable has been pruned during search. For details, see "Modeling and Programming with Gecode". (major)
    • Other changes
      • The default constrain() function for best-solution search now does by default nothing (it used to throw an exception). (minor)
      • The entire infrastructure for variable-value branchers has been reimplemented from scratch. The new design makes a much better compromise between code size, efficiency, and expressiveness: the efficiency is about the same (for examples with no propagation and just branching one can note a slowdown of 2-4%) while code size shrinks drastically (the overall code size for integer variables shrinks by 20%) and the architecture is much more expressive (in particular, it supports tie-break limits, see MPG). (major)
      • Throw exception when the user-defined copy constructor of a class that inherits from Space does not call the Space copy constructor. (minor)
    • Performance improvements
      • Fixed a bug in the main memory allocation routine: now heap block sizes are decreased dynamically as they should be. Also changed the memory configuration parameters as explained in: Zandra Norman, Memory Management for Gecode. KTH Royal Institute of Technology, Sweden, Bachelor thesis, TRITA-ICT-EX-2012:143, 2012. (major, thanks to Zandra Norman)
  • Search engines
    • Additions
      • Added support for restart-based search, see MPG for details. (major)
    • Other changes
      • Variable selection for branching used the quotient of size divided by degree, accumulated failure count, or activity. They now use the inverse. That is, for example, it is not any longer INT_VAR_SIZE_DEGREE_MIN() but INT_VAR_DEGREE_SIZE_MAX() (that is, largest degree divided by size). (major) Details
      • The restart best solution search engine has been removed (it is subsumed by the new restart-based meta search engine RBS). (major)
    • Performance improvements
      • The search engines now do not allocate memory on the search stack for the rightmost branch of each node. This means that the search tree depth is now computed differently. It now represents the actual peak depth required at any one time, taking into account that rightmost branches reuse the stack entry of their parents. (minor)
  • Finite domain integers
    • Additions
      • Gecode now supports Lightweight Dynamic Symmetry Breaking (LDSB), see MPG for details. (major, contributed by Christopher Mears)
      • Added value selection strategies for branching INT_VAL_NEAR_MIN(), INT_VAL_NEAR_MAX(), INT_VAL_NEAR_INC(), and INT_VAL_NEAR_DEC(). They can take a previous assignment to the variables to branch on and try to choose values which are near (see MPG for details). (major, thanks to Manuel Loth)
      • Added domain constraint that constrains a variable (or an array) according to the domain of another variable. (minor)
      • Added variants of dom that copy the domain from one variable to another. (minor)
      • The nooverlap constraint now allows sharing of unassigned variables in its argument arrays. (minor)
      • Added half-reification for reified constraints (see Modeling and Programming with Gecode for details). (major)
      • Added pow and nroot constraints. (major)
      • The binpacking constraint now also accepts items of size zero. (minor, thanks to Kathrin Dannmann, Roberto Castañeda Lozano)
      • Added activity-based branching strategies for integer and Boolean variables: INT_VAR_ACTIVITY_MIN, INT_VAR_ACTIVITY_MAX, INT_VAR_ACTIVITY_SIZE_MIN, INT_VAR_ACTIVITY_SIZE_MAX. For details, see "Modeling and Programming with Gecode". (major)
    • Other changes
      • The coefficients for linear constraints are now divided by their greatest common divisor. That means that some equations can be handled now that previously threw an OutOfLimits exception, and some equations can be handled with the more efficient integer precision propagators that previously required double precision. (minor)
      • Generalized definition of no-overlap propagators for better reuse. (minor, thanks to Roberto Castañeda Lozano)
      • The interface for branching on integer and Boolean variables has changed considerably (supporting user-defined variable and value selection, tie-break limit functions, handlers to created branchers, and more). In order to change, you have to add () to all variants of INT_VAR, INT_VAL, and INT_ASSIGN. For example, INT_VAR_SIZE_MIN becomes the function call INT_VAR_SIZE_MIN() and INT_VAL_MIN_MIN becomes the function call INT_VAL_MIN_MIN(). Some of these functions expect additional arguments and can take also optional arguments (this replaces the VarBranchOptions and ValBranchOptions). Please read the new "Branching" chapter in MPG. (major)
      • Respect IntConLevel argument for reified linear constraints with a single integer variable. (minor)
    • Bug fixes
      • Fixed precede constraint with less than two values. (minor, thanks to Roberto Castañeda Lozano)
      • Fixed a bug where bounds consistent distinct reported subsumption instead of failure in certain cases. (major, thanks to Lin Yong)
      • Fixed potential rounding issues in sqr and sqrt constraints. (minor)
      • Fixed copying of tuple sets in extensional constraints and IntSets in sequence constraints (could lead to crashes when using parallel search). (major, thanks to Manuel Baclet)
      • Added missing propagation for nary min/max constraint. (minor, thanks to Jean-Noël Monette)
      • Make extensional constraints work with empty tuple sets. (minor, thanks to Peter Nightingale)
      • Fix count (global cardinality constraint) for multiple occurrences of the same value in the cover array. (minor, thanks to Peter Nightingale)
    • Performance improvements
      • Arithmetic, linear, and cumulative constraints now resort to internal operations using "long long int" rather than "double". This improves performance but also extends the range over integer coefficients that can be handled by linear constraints. (major)
  • Finite integer sets
    • Additions
      • Gecode now supports Lightweight Dynamic Symmetry Breaking (LDSB), see MPG for details. (major, contributed by Christopher Mears)
      • Added domain constraint that constrains a variable (or an array) according to the domain of another variable. (minor)
      • Added domain constraints for arrays of set variables. (minor)
      • Added half-reification for reified constraints (see Modeling and Programming with Gecode for details). (major)
      • Added activity-based branching strategies for set variables: SET_VAR_ACTIVITY_MIN, SET_VAR_ACTIVITY_MAX, SET_VAR_ACTIVITY_SIZE_MIN, SET_VAR_ACTIVITY_SIZE_MAX. For details, see "Modeling and Programming with Gecode". (major)
      • Added channeling constraint between arrays of set variables. (major, contributed by Denys Duchier)
    • Other changes
      • The interface for branching on integer and Boolean variables has changed considerably (supporting user-defined variable and value selection, tie-break limit functions, handlers to created branchers, and more). In order to change, you have to add () to all variants of SET_VAR, SET_VAL, and SET_ASSIGN. For example, SET_VAR_SIZE_MIN becomes the function call SET_VAR_SIZE_MIN() and SET_VAL_MIN_INC becomes the function call SET_VAL_MIN_INC(). Some of these functions expect additional arguments and can take also optional arguments (this replaces the VarBranchOptions and ValBranchOptions). Please read the new "Branching" chapter in MPG. (major)
    • Bug fixes
      • Fixed precede constraint with less than two values. (minor, thanks to Roberto Castañeda Lozano)
  • Floats
    • Additions
      • Added support for float variables. (major, contributed by Vincent Barichard)
  • Minimal modeling support
    • Additions
      • Added pow and nroot expressions for integer variables. (minor)
    • Other changes
      • Made implementations of MiniModel expressions private, so that the MiniModel headers do not have to include propagator headers like gecode/int/linear.hh any longer. (minor)
  • Script commandline driver
    • Additions
      • Added commandline options to control restart-based search, see MPG for details. (major)
      • Decay values can now be passed on the command line using the switch -decay. (minor)
      • Added options -file-sol and -file-stat for writing solutions and statistics to arbitrary files and streams. (minor, thanks to Andrea Pretto)
      • The command line -print-last configures whether only the last solution found is printed. (minor, thanks to Josef Eisl)
    • Other changes
      • Boolean options (BoolOption) can now be given a false or true argument and hence are in-line with all other option types. (minor)
  • Range and value iterators
    • Documentation fixes
      • Clarified for several iterators that when using the assignment operator both iterators must be allocated from the very same region. (minor)
  • Support algorithms and datastructures
    • Bug fixes
      • Fixed a concurrency problem that caused an exception to be thrown at the end of a multi-threaded search on some platforms. (minor)
      • Fixed a bug in the allocation of very large bitsets. (minor, thanks to Max Ostrowski)
  • Example scripts
    • Additions
      • New example: Colored matrix without monochromatic rectangles. (minor)
  • Gist
    • Additions
      • Added option to invoke move cursors during the automatic search. (minor)
    • Other changes
      • Updated to compile with Qt version 5.0 (still works with Qt >= 4.3 as well). (minor)
  • Gecode/FlatZinc
    • Additions
      • Added support for more search annotations (defined in gecode.mzn), and for the restart and decay command line options. (minor)
      • Added native support for lex_less_bool and lex_lesseq_bool. (minor)
      • Gecode/FlatZinc now supports float constraints and variables. (major)
      • The FlatZinc interpreter now supports comparing of nodes in Gist. (major, thanks to Gabriel Hjort Blindell)
      • Added native support for the inverse_set constraint. (minor)
    • Other changes
      • Renamed the FlatZinc executable to fzn-gecode, to better distinguish it when installed alongside other FlatZinc implementations. (minor)
      • The FlatZinc interpreter no longer performs a complete search on variables annotated as var_is_introduced, but tries to extend a solution on the model variables to a solution that includes the introduced variables. Each solution on the model variables is therefore only reported once. (major)
    • Bug fixes
      • The mzn-gecode shell script now passes arguments correctly to the FlatZinc interpreter. (minor)
      • Removed spurious debug output for among constraint. (minor, thanks to Simon Ekvy)
      • Exported registry and helper functions so that users can add constraint handlers to the FlatZinc interpreter. (minor, thanks to Jean-Noël Monette)
  • General
    • Additions
      • Added CMake build script for Gecode (CMakeLists.txt). (minor, thanks to Victor Zverovich)
      • Variable selection using AFC now supports decay. Read more in MPG. (major)
    • Other changes
      • Compiles with MSVC 2012. (minor)

Changes in Version 3.7.3 (2012-03-23)

This release fixes some small bugs in the FlatZinc interpreter and library.

  • Gecode/FlatZinc
    • Additions
      • Added mzn-gecode scripts for conveniently solving MiniZinc models using the Gecode FlatZinc interpreter. (minor)
    • Other changes
      • Removed the print command line option. Instead, for optimization problems, using -a will print all solutions, while not using -a will only print the last one. This is consistent with the G12 FlatZinc command line interface. (minor)
    • Bug fixes
      • Fixed "largest" variable selection strategy for set variables. (minor, thanks to Marco Correia)
      • Fixed the parser for set literals. (minor, thanks to Thibaut Feydy)
      • Integer variables with empty domains result in unsatisfiable models instead of an error message. (minor)
      • Support 0-length array declarations. (minor)

Changes in Version 3.7.2 (2012-02-27)

This release fixes several small bugs.

  • Kernel
    • Additions
      • Added Archive operators for floats and doubles. (minor)
  • Finite domain integers
    • Other changes
      • Throw exception of type OutOfLimits instead of Exception when numerical arguments to sequence constraint are out of range. (minor)
    • Bug fixes
      • Added missing pruning to cumulative edge finding propagator. (minor, thanks to Joseph Scott)
      • Fixed sorted constraint to accept zero-length arrays. (minor, thanks to Kish Shen)
      • Added some missing propagation when posting a channel constraint between an array of Boolean variables and an integer variable. (minor, thanks to Kish Shen)
    • Performance improvements
      • Posting a reified dom constraint on IntVars with an assigned control variable does not create propagators any more, but updates the domain immediately. (minor)
  • Finite integer sets
    • Bug fixes
      • The element constraint with SOT_UNION and IntSetArgs reported subsumption too early, resulting in incorrect propagation. (major, thanks to Denys Duchier)
  • Minimal modeling support
    • Bug fixes
      • The BoolExpr default constructor did not properly initialize its members, causing crashes. (minor)
  • Script commandline driver
    • Bug fixes
      • Fixed rounding for printing the runtime (for example, 1:60:56.157 could be printed...). (minor, thanks to Serge Le Huitouze)
      • Fixed time output for times with zero minutes but nonzero hours. (minor, thanks to Jan Kelbel)
  • Gecode/FlatZinc
    • Bug fixes
      • Export RTTI symbols for the FlatZinc AST so that it can be used by client code. (minor)
      • Do not crash when encountering undefined identifier as constraint argument. (minor, thanks to Nicholas Tung)
  • General
    • Additions
      • Gecode now compiles on NetBSD. (minor, thanks to Adam Russell)
      • Added a macro GECODE_VERSION_NUMBER that is defined as x*1000000+y*100+z for Gecode version x.y.z. (minor, thanks to Denys Duchier)

Changes in Version 3.7.1 (2011-10-10)

This release fixes several bugs, upgrades to MiniZinc version 1.4, and features some minor improvements.

  • Search engines
    • Bug fixes
      • Fixed a bug that crashed the single-thread branch-and-bound search engine when initialized with a failed space. (minor)
  • Finite domain integers
    • Additions
      • Added efficient propagators for n-ary Boolean xor and equivalence (as they are now primitive in MiniZinc). (minor)
      • Domain consistency for simple counting constraints can be switched off. (minor, thanks to Kish Shen)
    • Other changes
      • The semantics of n-ary Boolean implication has been changed (to the more convential reading): rel(home, BOT_IMP, x, y) where x is an array of Boolean variable now assumes implication to be right associative. See MPG for explanation. (minor)
    • Bug fixes
      • Fixed bugs in the computation of the required precision (int or double) for linear propagation, and in division operations of scale views. These could cause an incorrect treatment of overflow in linear constraints. (major)
    • Performance improvements
      • Domain consistent distinct runs 10-20% faster. (minor)
  • Finite integer sets
    • Bug fixes
      • Do not use SharedArray<IntSet> in the set element constraints, because it does not properly udpate the IntSet during copying. This could cause memory corruption. (major)
  • Support algorithms and datastructures
    • Bug fixes
      • Compile again if threads are disabled. (minor)
  • Gist
    • Bug fixes
      • Fixed a crash that occurred when double-clicking an unexplored node while move inspectors were active. (minor)
  • Gecode/FlatZinc
    • Other changes
      • The FlatZinc interpreter is now compatible with the G12 MiniZinc distribution 1.4. This adds support for var and par identifiers that begin with underscores, the array_bool_xor primitive, as well as the command line option -r for specifying a random seed. (minor)
    • Bug fixes
      • Fixed linear inequations over integer variables that are channeled from Boolean variables. (major, thanks to Håkan Kjellerstrand)

Changes in Version 3.7.0 (2011-08-31)

This release adds and improves quite a number of constraints (total lexicographic order for set variables, membership constraints for integer variables, counting constraints for integer variables using integer sets, range, roots, set element constraints for integer variables, number of values for integer variables). All of these constraints (and some more) are now also available in FlatZinc. Additionally, some fixes and improvements.

This release is an important milestone as Gecode now provides native implementations for all important constraints available in MiniZinc/FlatZinc.

The documentation of constraints in "Modeling and Programming with Gecode" now refers to the Global Constraint Catalog (for those constraints that are listed in the catalog).

  • Kernel
    • Additions
      • View arrays can now also use region-allocated memory. (minor)
    • Bug fixes
      • Array slices can now be created from empty arrays. (minor, thanks to Max Ostrowski)
  • Finite domain integers
    • Additions
      • Added normal and reified membership constraints for integer and Boolean variables. (major)
      • The count constraints now also support comparison to integer sets in addition to integers and integer variables (which then implements among from the GCCAT). (major)
      • Added nvalues constraint. (major)
    • Bug fixes
      • Added some additional propagation for the count constraints (now, for example, count(home, x, y, IRT_GQ, 1) also constrains y to only take values supported by x). (minor)
      • The estimation of bounds on linear terms did not handle overflow correctly. (major)
  • Finite integer sets
    • Additions
      • Added set relations SRT_LQ, SRT_LE, SRT_GQ, SRT_GR for total (lexicographic) order. (major)
      • Added set element constraints with singleton integer variables as arguments. (minor)
    • Bug fixes
      • Fixed a memory leak in the set weights constraint, and use IntSharedArray instead of IntArgs as parameters for weights. (minor, thanks to Johannes Inführ)
  • Minimal modeling support
    • Additions
      • Added a convenience function values that restricts the set of values taken by an array of integer variables to a fixed set, using the nvalues constraint. The channel constraints between IntVarArgs and a SetVar now also use nvalues to increase propagation. (minor)
      • Added range and roots, which decompose into set element constraints. (minor)
  • Range and value iterators
    • Other changes
      • Cached iterators such as n-ary union and intersection, minus, and cache (of course) are not any longer template classes but take template constructors and member functions. N-ary union and intersection iterators can now also be initialized incrementaly with iterators of different types. (minor)
  • Example scripts
    • Additions
      • Added Dominating Queens puzzle. (minor)
  • Gist
    • Bug fixes
      • Call solution inspectors also when exploring manually. (minor)
      • Flush output to Gist console, so that output that is not ended by a newline is not lost. (minor)
  • Gecode/FlatZinc
    • Additions
      • Added native support for among, nvalues, int_set_channel, member_bool, member_int, sum_pred, and the range and roots constraints. (major)
    • Other changes
      • The set_in and set_in_reif constraints now work for constant sets even when Gecode is compiled without support for set variables. (minor)
    • Bug fixes
      • Added missing primitives set_le, set_lt, set_ge, and set_gt. (major)
  • General
    • Bug fixes
      • Install generated variable implementation headers instead of the shipped versions (fixes a problem when building Gecode in a separate directory). (minor, thanks to Gustavo Gutierrez)

Changes in Version 3.6.0 (2011-07-15)

This release adds new constraints (value precedence constraints for integer and set variables, no-overlap constraints for rectangles, constraints for Hamiltonian paths), improves and cleans up a number of existing constraints (scheduling, channeling, relation, bin-packing, lexicographic relations), and adds new functionality (support for externalization of choices for distributed search, support for incremental propagation).

Some models might have to be changed as the graph and scheduling modules have been incorporated into the integer module (removing the respective include directives is sufficient).

On top, there are many small fixes, in particular for FlatZinc.

  • Kernel
    • Additions
      • Moved RangeList class, which is a list of ranges implemented as a FreeList, from the set module into the kernel. Also added corresponding Iter::Ranges::RangeList iterator. (minor)
    • Other changes
      • Choices can now be written into an externalized form (called an Archive), and reconstructed from it. This is necessary for serializing paths in a distributed search engine. (major)
  • Search engines
    • Bug fixes
      • Fixed memory leak when passing a failed space to a search engine with cloning option set to false. (minor)
  • Finite domain integers
    • Additions
      • The cumulative constraints now support an IntVar as the capacity argument. (minor)
      • Added value precedence constraint. (major, contributed by Christopher Mears)
      • Added no-overlap constraint that enforces that rectangles do not overlap (also known as diffn). See "Modeling and Programming with Gecode" for details. (major)
      • Added constraints for Hamiltonian paths (called path). See "Modeling and Programming with Gecode" for details. (major)
      • Generalized lexicographic constraint to arrays of different sizes. (minor, thanks to Kish Shen)
      • Added a CachedView that can cache the domain between propagator invocations and provides an efficient test whether a view has changed since the previous invocation as well as an iterator over the removed domain values. This makes it easier to implement incremental propagation algorithms that need exact delta information. (major)
    • Other changes
      • The cumulatives constraint now does not post the s+p=e constraints, harmonizing its semantics with the cumulative and unary constraints. (minor)
      • Changed semantics of rel(home, x, IRT_NQ), enforces that not all variables in x are equal. See "Modeling and Programming with Gecode" for details. (major)
    • Bug fixes
      • Fixed element and sequence propagators, which were only correct by accident (incorrect use of GECODE_ME_CHECK instead of GECODE_ES_CHECK). (minor)
    • Performance improvements
      • Optimized channeling propagator between an array of Boolean variables and an integer variables. (minor)
      • The disequality constraint between variable arrays has an efficient propagator now. (minor)
      • The ordering constraints rel(home, x, IRT_LE) (also for IRT_LQ, IRT_GR, IRT_GQ) now have an optimal implementation (single incremental propagator). (major)
      • Increased performance of bin-packing propagator by 40 to 300 percent by using staging. (major)
      • The channel constraints between two integer arrays are now more memory efficient when offsets are used. (minor)
  • Finite integer sets
    • Additions
      • Added value precedence constraint. (major, contributed by Christopher Mears)
      • Added a CachedView that can cache the domain between propagator invocations and provides an efficient test whether a view has changed since the previous invocation as well as an iterator over the removed domain values. This makes it easier to implement incremental propagation algorithms that need exact delta information. (major)
      • Added channel aliases for set union of an array of integer variables, and renamed channel to channelSorted. (minor, thanks to Marco Correia)
    • Bug fixes
      • Fixed sequence, partition, and union propagators, which were only correct by accident (incorrect use of GECODE_ME_CHECK instead of GECODE_ES_CHECK). (minor)
      • The constructors for set variable arrays and argument arrays threw incorrect VariableEmptyDomain exceptions. (minor)
    • Performance improvements
      • Use new cached views for a more efficient implementation of the channel constraint between IntVarArgs and SetVarArgs. (minor)
    • Documentation fixes
      • Fixed documentation for set channeling constraint. (minor, thanks to Marco Correia)
  • Scheduling constraints
    • Other changes
      • The scheduling module has been removed and its constraints have been added to the integer module. (major)
    • Bug fixes
      • Fixed scheduling code for mandatory flexible tasks, which was only correct by accident (incorrect use of GECODE_ME_CHECK instead of GECODE_ES_CHECK). (minor)
  • Graph constraints
    • Additions
      • Added circuit constraints with offsets. (minor)
    • Other changes
      • The graph module has been removed and its constraints have been added to the integer module. (major)
  • Script commandline driver
    • Bug fixes
      • Fixed a small memory leak in the driver (stop objects were not deleted). (minor, thanks to Jan Kelbel)
  • Example scripts
    • Additions
      • Added Schur's Lemma puzzle. (minor)
  • Gist
    • Other changes
      • Zoom-to-fit can now be selected during search. (minor)
      • Compiles under MSVC 2005 SP1 again. (minor, thanks to Alin Gherman)
    • Bug fixes
      • Changed keyboard shortcuts in Gist so that they work on all platforms: "Inspect" is now Ctrl+number of inspector, for "Inspect before fixpoint" press Alt in addition (on Mac OS, use the Command key instead of Ctrl). (minor)
  • Gecode/FlatZinc
    • Additions
      • Added native support for the precedence constraint. (major)
      • Added native support for the no-overlap constraint (called diffn in MiniZinc/FlatZinc). (major)
      • Support indomain_middle and indomain_interval search annotation by replacing them with indomain_median and indomain_split, respectively. (minor, thanks to Håkan Kjellerstrand)
      • Added native support for link_set_to_booleans, global_cardinality_low_up_closed, and decreasing_bool. (minor)
    • Other changes
      • Adapted the MiniZinc declarations and the command line options for Gecode/FlatZinc to MiniZinc 1.3. The fz binary now works with the minizinc driver script. (minor)
    • Bug fixes
      • Re-enabled the global cardinality constraint in the FlatZinc interpreter. (minor, thanks to Håkan Kjellerstrand)
      • Fixed the MiniZinc definition for the circuit constraints to work with arbitrarily indexed arrays. (minor, thanks to Håkan Kjellerstrand)
  • General
    • Additions
      • Added configure option --enable-small-codesize that results in slightly less efficient but more compact code being generated for non-debug builds. (minor, thanks to Ruben Zilibowitz)
    • Bug fixes
      • Fixed Makefile, now installation works when FlatZinc library is disabled. (minor, thanks to Martin Mann)

Changes in Version 3.5.0 (2011-02-01)

This release fixes serious bugs in parallel search, FlatZinc, fixes some DLL issues on Windows, adds support for FreeBSD, and adds STL-style iterators for arrays.

  • Kernel
    • Additions
      • Added STL compatible iteration support for arrays (variable arrays, argument arrays, view arrays, and shared arrays). (major, contributed by Gregory Crosswhite)
  • Search engines
    • Bug fixes
      • Fixed a serious bug in parallel search (took over a year to isolate the bug). (major, thanks to Denys Duchier, Chris Mears)
  • Minimal modeling support
    • Bug fixes
      • Do not inline construction of linear, Boolean, and set expressions to avoid cross-DLL allocation/deallocation issues on Windows. (minor, thanks to Alexander Kleff)
  • Gecode/FlatZinc
    • Other changes
      • Fixed the definitions of global_cardinality to work with MiniZinc 1.2 and newer, and added corresponding definitions of global_cardinality_closed and global_cardinality_low_up_closed. (major)
    • Bug fixes
      • Fixed incorrect posting of linear constraints with variable arrays of size one. (major, thanks to Roberto Castañeda Lozano)
  • General
    • Additions
      • Gecode now compiles on FreeBSD. (minor, thanks to Peter Penchev)
      • Embed resource information into Gecode DLLs and EXEs on Windows. (major)
    • Other changes
      • Embed manifest into Gecode DLLs on Windows. (minor)

Changes in Version 3.4.2 (2010-10-09)

This release removes LDS from Gecode as it is patented in the US.

  • Search engines
    • Removals
      • Removed limited discrepancy search (LDS) as it is patented in the US. (minor)
  • Gecode/FlatZinc
    • Additions
      • Added support for binpacking constraint. (minor)

Changes in Version 3.4.1 (2010-10-08)

This release adds a new global constraint for binpacking (with extended example) and filter functions for branchers. The reference documentation has been cleaned up. In particular, information on how to obtain, install, and link Gecode has been expanded and moved to "Modeling and Programming with Gecode" (Section 2.6). Additionally, the release fixes some bugs and contains some performance improvements.

  • Kernel
    • Other changes
      • Branching now honors filter functions, where variables are considered for branching only if the filter functions returns true (see "Modeling and Programming with Gecode" for details). (major, thanks to Felix Brandt)
      • Variable implementation views are now parametric with respect to variables but not variable implementations (see "Modeling and Programming with Gecode" for details). (minor)
      • Renamed the template class for variables defined by a variable implementation from Var to VarImpVar and re-added a class Var as base class for any variable type. (minor)
  • Finite domain integers
    • Additions
      • Added a binpacking constraint and propagator. (major)
    • Bug fixes
      • Do not inline functions with variable arguments. (minor, thanks to Gustavo A. Gómez Farhat)
      • The reified dom constraint failed instead of setting the BoolVar to 0 when the minimum argument given was greater than the maximum. (minor, thanks to Kish Shen)
    • Performance improvements
      • Fixed sortedness constraint by replacing an algorithm that is linear in the width of the union of all domains with an algorithm that is quadratic in the number of variables. The previous algorithm crashed for domains with large values due to excessive memory use. (minor, thanks to Kish Shen)
      • Using ICL_DOM for binary linear equations with unit coefficients (such as x = y+3) is now implemented using the much more efficient binary equality propagator instead of the linear equation propagator (which has worst case exponential runtime). (minor)
  • Scheduling constraints
    • Bug fixes
      • Fixed initialization for unary and cumulative edge-finding (just worked accidentally). (major, thanks to Roberto Castañeda Lozano)
  • Minimal modeling support
    • Other changes
      • Added element expression for BoolVarArgs. (minor)
    • Bug fixes
      • Fixed memory allocation for non-linear expressions and made the LinExpr constructor explicit for non-linear expressions (previously the automatic cast from integers to LinExpr was sometimes ambiguous). (minor)
  • Script commandline driver
    • Additions
      • Added a class InstanceOptions that takes one additional string argument. (minor)
  • Range and value iterators
    • Performance improvements
      • Reimplemented n-ary union, minus, and cache iterators for much better efficiency. (minor)
  • Example scripts
    • Additions
      • Added a binpacking model using the binpacking constraint and CDBF (complete decreasing best fit) search. (major)
  • Gist
    • Other changes
      • Only center node on double-click if it was undetermined (otherwise inspecting several nodes becomes slightly annoying). (minor)
    • Performance improvements
      • Saved some memory for each node in Gist (one pointer per node, two integers per inner node, and some additional memory on 64 bit platforms due to optimizing alignment), and speeded up deallocation of the tree (e.g. when resetting or closing Gist). (minor)
  • Gecode/FlatZinc
    • Additions
      • Added support for global_cardinality_low_up. (minor)
    • Performance improvements
      • The FlatZinc parser now uses hash maps instead of STL maps, which significantly increases parsing performance for larger files. Furthermore, a single symbol table is used, also increasing performance and allowing to report duplicate symbol errors, which were previously ignored. (minor)
  • General
    • Documentation fixes
      • Removed obsolete Glossary in reference documentation. (minor)

Changes in Version 3.4.0 (2010-07-26)

This release includes: considerably improved support for posting expressions and relations (also including set and full arithmetic expressions); other improvements for modeling (array initialization and element addition to arrays); state-of-the-art unary and cumulative scheduling propagators (including optional and flexible tasks); major cleanups of the variable and view infrastructure (now also documented in MPG); cleanups of the examples; several other fixes and performance improvements.

This release is the first to be accompanied by a complete version of "Modeling and Programming in Gecode" which has been extended by many new case studies and parts on programming search engines and variables.

  • Kernel
    • Additions
      • Added LocalObject and LocalHandle classes that can be used for space-allocated objects that are shared within a space, for example among several propagators or propagators and branchers. (minor)
    • Other changes
      • The support for dynamically resizing variable arrays has been removed (it was buggy and inefficient). Instead, all argument arrays now support adding elements using operator<<. In addition, all arrays now support concatenation using operator+ and slicing, and variable arrays, view arrays, and variable argument arrays include a test whether all variables are assigned. (major)
    • Bug fixes
      • Posting a propagator in a failed space could make the space non-failed again. (minor)
  • Finite domain integers
    • Additions
      • You can now construct IntArgs from an STL vector, an IntSharedArray, or using simple comprehensions. (minor)
    • Other changes
      • The argument arrays now have constructors that create new variables. (minor)
      • IntArgs with simple sequences of values can now be created using the IntArgs::create static member function. (minor)
    • Performance improvements
      • Optimized element propagator, expect a speed up of around 35-50% in most cases. (minor)
  • Finite integer sets
    • Other changes
      • The argument arrays now have constructors that create new variables. (minor)
    • Bug fixes
      • Fixed the include and exclude tell operations of set variables so that they work with empty ranges. (minor)
  • Scheduling constraints
    • Additions
      • Added scheduling constraints for tasks with flexible duration (for both unary and cumulative resources), and made all scheduling propagators deal correctly with zero length tasks. (major)
      • Added propagators for cumulative scheduling. (major)
  • Minimal modeling support
    • Additions
      • The minimodel library now provides convenient post functions for set constraints. (major)
    • Other changes
      • The Matrix class now supports const operations and has an output operator. (minor)
      • Linear expressions can now contain non-linear parts, such as multiplications or divisions, or set expressions such as cardinality. (major)
      • The minimodel post functions have been split into two functions, rel and expr. While rel posts a constraint, expr returns a new variable constrained to the given expression. This change makes it possible to get rid of the reification operator (~) as well as the tt and ff functions, which were previously needed to distinguish between relations and expressions. Boolean equivalence and implication can now be expressed using operators (==,<<,>>). (major)
      • Array slices can now be empty. (minor)
    • Bug fixes
      • Fixed a bug in minimodel, which could crash when using zero coefficients. (minor, thanks to Håkan Kjellerstrand)
    • Performance improvements
      • Posting linear expressions performs more aggressive optimizations for assigned variables. (minor)
      • Arithmetic modeling functions now try to avoid creating new variables and posting propagators for common cases. (minor)
  • Script commandline driver
    • Other changes
      • The driver now catches SIGINT (i.e., pressing Ctrl-C) and stops the search properly, printing statistics up to the point where it stopped. (minor)
      • Running a script in time mode stops all iterations and samples immediately if a single run reaches a limit (eases benchmarks with timeouts). (minor)
  • Example scripts
    • Additions
      • New custom branching for the BACP example using a custom value selection. (minor)
    • Removals
      • Removed stress tests, the real examples are much more stressful, actually! (minor)
    • Other changes
      • The Nonogram example now uses AFC as the default branching and includes some more instances. (minor)
      • Take advantage of the better modeling support for the BIBD, Golomb ruler, Kakuro, Black Hole, and Warehouse examples (nothing but dusting off examples that have been around for ages). (minor)
  • Gist
    • Other changes
      • If an inspector throws an exception, an error message is printed indicating which inspector caused the problem. Previously, Gist would crash with a Qt error that was difficult to trace. (minor)
    • Bug fixes
      • Fixed bug in Gist where signals were sent across threads, which makes Qt crash in certain situations on some platforms. (minor)
      • Fixed bug in interactive search where every move in the tree required recomputation. (minor, thanks to David Zaremby)
  • Gecode/FlatZinc
    • Bug fixes
      • Boolean relations were incorrect on assigned arguments. (minor)
      • Fixed garbage collection of variables that are not printed. The bug lead to variables being mixed up in the output. (minor)
  • General
    • Removals
      • Variables do not have init functions any longer as they are not needed, see MPG for discussion. (minor)
    • Other changes
      • Completely cleaned up variables and views, drastically saving code. (major)
      • The configure script now checks for qmake-qt4 and moc-qt4, which are used on some Linux systems to distinguish between Qt3 and Qt4. (minor)
      • The build system now supports Visual C++ 2010. (minor)

Changes in Version 3.3.1 (2010-04-09)

This release adds many new features to Gist, fixes two major bugs in extensional constraints, and has some more cleanups to comply with the first release of the "Modeling and Programming with Gecode" document. And, as always some small fixes and cleanups.

  • Kernel
    • Other changes
      • The (unused and unusable) CopiedHandle have been removed. (minor)
    • Bug fixes
      • Fixed bug in VarArray::resize function that occurred when shrinking variable arrays. (minor)
  • Finite domain integers
    • Bug fixes
      • Fixed extensional constraint with finite automata for very unlikely (but apparantely possible) border case. (major)
      • The extensional constraints with tuple sets could cause crashes when used with parallel search. (major)
  • Finite integer sets
    • Removals
      • Removed Set::IntSetPropagator and Set::IntSetRePropagator because they are subsumed by the MixBinaryPropagator patterns. (minor)
    • Bug fixes
      • Fixed channeling between set and integer variables which did not propagate enough. (minor)
  • Scheduling constraints
    • Other changes
      • Tasks in unary scheduling constraints may now have processing times of 0. (minor)
    • Bug fixes
      • The unary scheduling propagator with optional tasks missed some propagation sometimes. (minor)
  • Script commandline driver
    • Additions
      • You can now register Gist inspectors in the driver options. (minor)
  • Example scripts
    • Additions
      • Added Gist inspectors for the Knights and Queens examples. (minor)
  • Gist
    • Additions
      • In addition to inspectors, you can now also register comparators, which can be used to compare two nodes in the tree. In combination with the option to compare before computing a fixpoint of the second node, this lets you see what exactly was modified by a branching. (major)
      • Gist can now stop exploration after all alternatives of a certain branching are exhausted. This feature can be turned on by posting a special branching using the Gist::stopBranch post function. Gist will then stop whenever that special branching becomes active. (major)
      • Added inspection of nodes before fixpoint computation. (minor)
      • Nodes can now be bookmarked. (minor)
      • Added inspectors that react whenever a node is selected. (minor)
    • Bug fixes
      • Missing export declarations prevented embedding Gist as a widget. There is now example code for embedding Gist in the directory gecode/gist/standalone-example. (minor)
      • Fixed a bug where sometimes clicking on a node would select a different node. (minor)
    • Performance improvements
      • Scrolling and zooming have been reimplemented. The new implementation is more efficient and works around problems that occurred with large trees on some platforms. Zooming is now more intuitive, keeping the current center centered. You can now also zoom by pressing shift while using the mouse wheel. (major)
  • Gecode/FlatZinc
    • Other changes
      • Comply with MiniZinc 1.1. String literals are not allowed any longer except in annotations, the solver outputs UNKNOWN and UNSATISFIABLE instead of just ==========, and the global constraints all_equal, decreasing_int, and decreasing_bool are supported. (minor)
    • Performance improvements
      • Variables that do not have output annotations are now garbage collected during copying. (minor)
      • When using sums of Boolean variables using bool2int in MiniZinc, the FlatZinc interpreter now posts the more efficient propagators that work directly on the Boolean variables. (minor)
  • General
    • Documentation fixes
      • Removed many small documentation quirks. (minor)

Changes in Version 3.3.0 (2010-03-15)

This release provides some fixes, some performance improvements for domain propagators, and quite some clean ups how propagators and advisors report their status to the kernel. Many of these clean ups are essential to make it easier to program propagators and branchers with Gecode.

  • Kernel
    • Additions
      • Advisors now can force its propagator to be rescheduled, including recomputation of its cost used for scheduling (normally, a propagator is only rescheduled if its modification event delta changes). An advisor can signal forceful rescheduling by returning ES_NOFIX_FORCE or returning the return value of ES_NOFIX_FORCE_DISPOSE. Read the forthcoming "Modeling and Programming with Gecode" for details. (minor)
    • Other changes
      • The failure macros for posting GECODE_ES_FAIL and GECODE_ME_FAIL now only accept a single argument and assume that "home" actually refers to the home space. Read the forthcoming "Modeling and Programming with Gecode" for details. (minor)
      • The functions ES_FIX_PARTIAL, ES_NOFIX_PARTIAL, ES_FIX_DISPOSE, and ES_NOFIX_DISPOSE are now member of Space. Read the forthcoming "Modeling and Programming with Gecode" for details. (minor)
      • The function ES_SUBSUMED now is a member of Space and accepts a propagator as its single argument. The variant with a size as the second argument is available as ES_SUBSUMED_DISPOSED but use is highly discouraged. Read the forthcoming "Modeling and Programming with Gecode" for details. (minor)
      • The functions ES_SUBSUMED_FIX and ES_SUBSUMED_NOFIX for advisors have been renamed to ES_FIX_DISPOSE and ES_NOFIX_DISPOSE. Read the forthcoming "Modeling and Programming with Gecode" for details. (minor)
    • Bug fixes
      • ViewValBrancher with random value selection did not produce a random sequence of values. (minor)
  • Finite domain integers
    • Additions
      • Integer sets (IntSet) now have a in member function for testing whether an integer is included. (minor)
    • Other changes
      • Patterns for reified propagators have been moved to the Gecode::Int namespace. (minor)
    • Performance improvements
      • Considerably improved performance and memory consumption of the DFA-based extensional constraint (regular). (major)
  • Finite integer sets
    • Other changes
      • Patterns for set propagators have been moved to the Gecode::Set namespace. (minor)
  • Minimal modeling support
    • Additions
      • Linear expressions can freely mix integer and Boolean variables and support construction from variable arrays via a sum function. (minor)
    • Removals
      • Removed special cases for posting linear and Boolean expressions consisting of a single variable only (was highly ambigious). (minor)
  • Support algorithms and datastructures
    • Performance improvements
      • Changed to single, really efficient bitset implementation used allover the system. (major)
  • Gist
    • Bug fixes
      • Avoid inter-thread call to QWidget::update, which apparently causes a slight memory leak (and warning messages on stderr) on Mac OS. (minor)
  • Gecode/FlatZinc
    • Other changes
      • The FlatZinc interpreter can now be extended by plugins that implement custom search strategies. The plugins are implemented as dynamically loaded libraries using the Qt plugin mechanism. An example can be found in the directory gecode/flatzinc/exampleplugin. (minor)
      • The index of the variable used for optimization is now available in the FlatZincSpace class. (minor)
      • Added command line option -print, which controls whether all solutions are printed or only the last one that is found, and -search, to choose between branch-and-bound and restart optimization. (minor)
      • The FlatZinc library can now parse a FlatZinc model into any subclass of FlatZincSpace, so that custom extensions can be built. Annotations on the solve item can now be accessed from the returned FlatZincSpace, so that additional search strategies can be implemented. (minor)
    • Bug fixes
      • The FlatZinc interpreter ignored the -c-d and -a-d command line switches when used with Gist. (minor)
  • General
    • Bug fixes
      • Configure now prepend options to the CXXFLAGS and CFLAGS variables instead of appending them. That way, defining the variables when invoking configure overrides the choices configure makes (e.g. overriding the default -O3 with -O2). (minor)

Changes in Version 3.2.2 (2009-11-30)

This release adds the sequence constraint (contributed by David Rijsman, Quintiq) and has as always some small additions and fixes.

  • Kernel
    • Bug fixes
      • Added missing assignment operator for space-based allocators for STL data structures. (minor, thanks to Gustavo Gutierrez)
  • Search engines
    • Bug fixes
      • The memory reported could be sometimes too low (the previous fix for 3.2.0 did not fix it for branch and bound search). (minor)
  • Finite domain integers
    • Additions
      • Added sequence constraint. (major, contributed by David Rijsman)
    • Bug fixes
      • The global cardinality (count) constraint now accepts unsorted arrays of values. It previously propagated incorrectly if the array was not sorted. (minor, thanks to Alberto Delgado)
      • Fixed bug in the ICL_VAL propagator for global cardinality. (minor)
      • Subscription to constant views did not honor the flag to avoid processing. (minor)
  • Finite integer sets
    • Bug fixes
      • Subscription to constant views did not honor the flag to avoid processing (did not occur in practice). (minor)
  • Script commandline driver
    • Additions
      • Report if search engine has been stopped. (minor)
  • Range and value iterators
    • Other changes
      • Renamed test for subset or disjointness of range iterators to "compare". (minor)
  • Example scripts
    • Additions
      • Added car sequencing example (problem 1 in CSPLib). Uses the new sequence-constraint. (minor)
  • Gecode/FlatZinc
    • Bug fixes
      • Support search annotations with constants in the variable arrays. (minor, thanks to Håkan Kjellerstrand)
      • The set_in and set_in_reif constraints were buggy when used with Boolean variables (which are usually not generated by mzn2fzn so that the issue probably does not occur in practice). (minor)
      • The global_cardinality constraint was not completely compatible with the MiniZinc semantics. It would constrain values not mentioned in the array to have zero occurrences, while in MiniZinc they are unrestricted. (minor)
      • Element constraints in reified positions produced an error in the mzn2fzn translation. (major, thanks to Håkan Kjellerstrand)

Changes in Version 3.2.1 (2009-11-04)

This release fixes one serious bug in the element constraint for matrices; adds branchings using accumulated failure counts (also known as weighted degree); provides some optimizations (mostly for element constraints and for regular expressions with millions of nodes); adds two cute models (word-square and crossword); and a little this and that as always.

  • Kernel
    • Additions
      • Propagators and variables now maintain an accumulated failure count (AFC). (major) Details
  • Finite domain integers
    • Additions
      • Added INT_VAL_RANGES_MIN (and INT_VAL_RANGES_MAX) as value selection for branching: it tries the values from the smallest (largest) range first, if the variable's domain has several ranges, otherwise it splits the domain. (minor)
      • Added AFC-based branching strategies for integer and Boolean variables: INT_VAR_AFC_MIN, INT_VAR_AFC_MAX, INT_VAR_SIZE_AFC_MIN, INT_VAR_SIZE_AFC_MAX. For details, see "Modeling with Gecode". (major)
    • Other changes
      • The semantics of division and modulo has changed to match the C standard. This means that the operations round towards zero, and that the result of the modulo has the same sign as its first argument. (minor)
    • Bug fixes
      • Fixed segfault in matrix element constraint. (major)
      • Added missing dispose function for linear disequality of Boolean variables (the only problem was that with a proper dispose function more memory can be reused when the propagator becomes subsumed, so really a tiny quirk). (minor)
    • Performance improvements
      • Element constraints for integer arrays now accept shared integer arrays (IntSharedArray). By this, the very same array can be shared among several element constraints. Models require no change, as IntArgs are automatically coerced to IntSharedArrays. See "Modeling with Gecode" for more explanation. (minor)
      • Optimized element for matrices (in special cases, the propagator is up to six times as efficient as before). (minor)
  • Finite integer sets
    • Additions
      • Added AFC-based branching strategies for set variables: SET_VAR_AFC_MIN, SET_VAR_AFC_MAX, SET_VAR_SIZE_AFC_MIN, SET_VAR_SIZE_AFC_MAX. For details, see "Modeling with Gecode". (major)
    • Other changes
      • Split rel-op.cpp and rel-op-const.cpp into several compilation units, to avoid excessive memory and time usage of the gcc compiler. (minor)
  • Minimal modeling support
    • Performance improvements
      • Conversion of a regular expression to a DFA would crash on regular expressions with several million nodes (due to running out of call stack space). (minor, thanks to Håkan Kjellerstrand)
  • Example scripts
    • Additions
      • Added word square puzzle. (minor, contributed by Håkan Kjellerstrand)
      • Added crossword puzzle (thanks to Peter Van Beek for providing access to some crossword grids). (minor, thanks to Peter Van Beek)
    • Other changes
      • Sudoku and GraphColor now uses smallest size over accumulated failure count (AFC) as the default heuristic. (minor)
    • Bug fixes
      • The Nonogram example no longer crashes on empty lines. (minor, thanks to Jan Wolter)
  • Gecode/FlatZinc
    • Bug fixes
      • Fixed statistics output (number of solutions was sometimes wrong). (minor)
  • General
    • Other changes
      • Now posting of propagators and branchers take an object of class Home (rather than just a space) that can carry additional information relevant for posting (for example, groups and accumulated failure information). Models do not need to be changed in any way! (major) Details

Changes in Version 3.2.0 (2009-10-05)

This release has some important bug fixes (in particular for global cardinality aka count), the documentation has been improved (worked around some issues with generation by doxygen), integrates the FlatZinc interpreter into the Gecode source tree, provides propagators for disjunctive scheduling (experimental), and lots of small changes and fixes. For more consistent names, branchings are branchers now and branching descriptions are choices (this you might have to adapt to).

  • Kernel
    • Other changes
      • A branching is now a brancher and a branching description is now a choice. (major) Details
  • Search engines
    • Other changes
      • Optimized thread creation by thread pools, now the creation and deletion of arbitrarily many parallel search engines also works for platforms using pthreads (Linux and MacOS). (minor)
      • Path for search provides top and empty methods. (minor, thanks to Vincent Barichard)
    • Bug fixes
      • The memory reported could be sometimes too low (that could only happen when an advisor allocates memory which they do only now). (minor)
      • Compiles again if no threads available. (minor)
  • Finite domain integers
    • Additions
      • Added regret_min and regret_max for IntVar and BoolVar (they were only available for IntView). (minor, thanks to Kish Shen)
      • Added branch and assign for single integer and Boolean variable. (minor)
      • Added element constraints for Matrix arrays. (minor, thanks to Håkan Kjellerstrand)
    • Other changes
      • The element constraint now computes more accurate variable bounds when being posted (to avoid arithmetic overflow in naive models). (minor)
      • The element constraint now throws an exception if used with an empty array. (minor)
      • Moved cumulatives to the new scheduling library. (minor)
      • Moved circuit to the new graph library. (minor)
    • Bug fixes
      • Slightly improved strength of the division propagator. (minor, thanks to Jan Kelbel)
      • Fixed serious bug in the bounds propagator for global cardinality. (major)
    • Performance improvements
      • Extensional propagators using DFAs or REGs (aka regular) use a more compact state representation but create their state more eagerly. That can improve performance considerably (twice as fast) at a slight increase in memory. (minor, thanks to George Katsirelos, Nina Narodytska)
      • Optimized n-ary disjunction and conjunction and the clause constraint. (minor)
      • Linear constraints over Boolean variables with unit coefficients (aka Boolean cardinality constraints) have been reimplemented. Less memory (minus 30%) and more speed. For example, BIBD runs 10% faster now. (minor)
  • Finite integer sets
    • Additions
      • Added branch and assign for single set variable. (minor)
      • Added element constraints for Matrix arrays. (minor, thanks to Håkan Kjellerstrand)
    • Other changes
      • The element constraint with an integer index variable now throws an exception if used with an empty array. (minor)
  • Scheduling constraints
    • Additions
      • Added propagators for disjunctive scheduling (unary resource scheduling). This is still experimental as the propagators are not yet optimized and branching and modelling support is not yet available. (major)
      • Added a new module for scheduling. To use scheduling constraints, you have to include <gecode/scheduling.hh> and link against the scheduling library. (minor)
  • Graph constraints
    • Additions
      • Cost-based variants for circuit added. (minor)
      • Added a new module for graph constraints. To use graph constraints, you have to include <gecode/graph.hh> and link against the graph library. (minor)
  • Minimal modeling support
    • Additions
      • Added element constraints for Matrix interface to arrays. (minor, thanks to Håkan Kjellerstrand)
  • Script commandline driver
    • Additions
      • Added new standard option for options called symmetry. (minor)
    • Other changes
      • The driver takes copies of all string values passed top it. (minor, thanks to Luca Di Gaspero)
  • Support algorithms and datastructures
    • Other changes
      • No longer depend on availability of timersub. (minor, thanks to Alexandre Fayolle)
  • Example scripts
    • Additions
      • Added branching following Warnsdorff's heuristic for Knights. (minor)
    • Other changes
    • Bug fixes
      • Fixed wrong symmetry breaking for TSP. (minor, thanks to Geoffrey Chu)
      • Fixed zero cost edges in TSP examples. (minor)
  • Gist
    • Other changes
      • The Gist console now has a toolbar that provides buttons to clear the text as well as to configure the console window to stay on top of Gist. Furthermore, after adding output, the console now automatically scrolls to the bottom. (minor)
    • Bug fixes
      • Gist now places clones also on the leftmost branch during search. (minor)
  • Gecode/FlatZinc
    • Additions
      • The Gecode interpreter for the FlatZinc language is now part of the main Gecode source tree. (major)
  • General
    • Other changes
      • Compiles with MSVC 2005 again. (minor, thanks to David Rijsman)
    • Bug fixes
      • The configure script checked for Qt 4.2, although Gist requires at least Qt 4.3. (minor)
    • Documentation fixes
      • Cleaned up the generated reference documentation, and introduced a number of workarounds for issues in doxygen. In particular, the documentation for linear constraints over Boolean variables and for the thread abstractions is now generated properly. (major)
      • Mention that also grep is needed for building Gecode. (minor, thanks to Vivian De Smedt)

Changes in Version 3.1.0 (2009-05-20)

This release introduces parallel search, features improved memory management (can double efficiency on MacOS X), and provides a reusable command line driver upon popular request. And, of course, some this and that.

  • Kernel
    • Performance improvements
      • Cache memory blocks from deleted spaces. This hardly increases peak memory consumption. It improves performance on Windows and Linux only by up to 5%, but on MacOS by 50% in some cases (this improvement is absolutely essential for parallel execution). (major)
  • Search engines
    • Additions
      • Added parallel search engines for DFS, BAB, and Restart (but not LDS). Please make sure to read the section "Parallel search" in "Modeling with Gecode". (major) Details
    • Other changes
      • The stop function of stop objects now also takes a second argument of type Search::Options. This is in particular useful for decisions that involve the number of threads used for search. (minor)
  • Finite domain integers
    • Additions
      • Added a wait propagator: executes a function when a variable (or variables) become(s) assigned. (minor)
    • Other changes
      • The INT_VAL_MED value selection now consistently selects the greatest element in the domain not greater than the median. (minor)
  • Finite integer sets
    • Additions
      • Added a wait propagator: executes a function when a variable (or variables) become(s) assigned. (minor)
    • Other changes
      • The set constraint sequentialUnion has been renamed to sequence. (minor)
  • Script commandline driver
    • Additions
      • Added a new module "driver" as a commandline driver for scripts. This is due to popular request: most people have been using the support functionality for examples anyway. This function is now wrapped into a proper module (and Example is now called Script to be more general). See "Modeling with Gecode" for documentation. (major)
    • Other changes
      • If Gist is not available, -mode gist is the same as -mode solution. Invocation with -help also prints information about how Gecode has been configured. (minor)
  • Support algorithms and datastructures
    • Additions
      • Added a tiny portable thread package specifically tailored to the needs for parallel search. Unfortunately, other portable thread packages have just too many issues. (minor)
      • Support::quicksort and Support::insertion support using the less than operator for the sort order by leaving out the comparator object. (minor)
  • Example scripts
    • Additions
      • Added new example for equidistant frequency permutation arrays (EFPA). (minor)
    • Other changes
      • The parameters of the Hamming Codes example are now configurable through command line options (instead of hard-coded). (minor)
  • Gist
    • Other changes
      • Small user interface changes: disable search from hidden nodes, add depth information to status bar, and add statistics for subtrees (available from the node context menu and the Node menu). (minor)
      • Easily add multiple inspectors to Gist. Inspectors are not exclusive any longer, you can select any combination of them to respond to clicks or solutions simultaneously. (minor)
    • Bug fixes
      • Fixed a dead lock that could occur when closing the Gist main window while search is still running. (minor)
      • The inspectors are finalized before Gist exits. This fixes a bug where (at least on Mac OS) some memory was not freed in the correct order. (minor)
      • Gist now correctly centers the current node after search has finished. (minor)

Changes in Version 3.0.2 (2009-03-26)

This is a bug fix release fixing two more embarrassing bugs. However, this time we redesigned our tests carefully such that they cover all changes and optimizations done for the transition from 2.2.0 to 3.0.*. Please update asap.

  • Finite domain integers
    • Bug fixes
      • Fixed bug in optimization of extensional constraints with DFAs (hard to reproduce, almost impossible). (major)
    • Performance improvements
      • Reoptimized element with integer values and created bizarre testcases. (minor)
  • Minimal modeling support
    • Bug fixes
      • Fixed bug in posting of Boolean expressions including reified linear expressions. Again, that escaped our testsuite (also fixed). (major, thanks to Gustavo Guiterrez)
  • Example scripts
    • Bug fixes
      • The radiotherapy example was missing in the Makefile. (minor, thanks to Håkan Kjellerstrand)
  • Gist
    • Other changes
      • A separator is printed between solutions in the TextInspector. (minor)

Changes in Version 3.0.1 (2009-03-24)

This is a bug fix release fixing two embarrassing bugs that were not caught by our test infrastructure. Please update asap.

  • Finite domain integers
    • Bug fixes
      • Fixed bug in element with integer values. (major, thanks to Vincent Barichard)
      • IntSetArgs no longer inherit from PrimArgArray, which was wrong as IntSet is no primitive type and hence does not support vararg initializers. (minor)
      • Fixed bug in reified Boolean linear constraints (an optimization is currently disabled and will be active in the next release: the optimization was incorrect and was never tested). (major, thanks to Alberto Delgado)
  • Example scripts
    • Additions
    • Bug fixes
      • The examples now pass the c-d and a-d command line options correctly to Gist. (minor)
      • The Steel Mill Slab Design example had two bugs in the search heuristic and a missing redundant constraint. (minor, thanks to Chris Mears)

Changes in Version 3.0.0 (2009-03-13)

This release is a major consolidation release: interfaces have been cleaned up (consistent parameter passing, consistent naming, simpler Gist interface, namespaces for operator overloading); some functionality has been extended (propagators can be non-monotonic; branchings support tie-breaking and random variable and value selection); some functionality that did not meet our quality goals has been removed (complete set variables, reflection); usage has been simplified (auto-linking on Windows, more commonly used filename extensions); important aspects have been optimized (memory management, memory usage and efficiency on 64bit machines). These cleanups were in particular necessary to make Gecode easier to document (this release is the first to be accompanied by tutorial documentation explaining how to model with Gecode).

Apart from that, many small fixes and additions. Please see below for the details.

As the interfaces have changed considerably, please consult How to Change to Gecode 3.0.0.

  • Kernel
    • Additions
      • Integrated space and region-based allocators that work with STL classes. (minor, contributed by Filip Konvicka)
      • Added support for synchronized execution during branching (executes a function). (minor, thanks to Denys Duchier)
    • Removals
      • View and value assignments have been removed as they now can be expressed by view and value branchings. (major)
    • Other changes
      • The specification of propagation cost has changed. It now must be computed by the static member functions of the class Gecode::PropCost. (major)
      • The clone operation on spaces is now const. (minor)
      • Introduced CopiedHandle as a new base class for SharedHandle. (minor) Details
      • Made macros semicolon-safe. (minor, thanks to Denys Duchier)
      • The index structure for variable dependencies is now implemented using integers instead of pointers, saving memory on 64 bit machines. (minor) Details
      • Gecode now supports weakly monotonic propagators. (major) Details
      • The functions force and unforce of an actor to force disposal have been removed. (minor) Details
      • The home space is now also passed to the cost function of a propagator. (minor)
      • All functions for checking sharing for arrays (same, shared, unique) require a space argument (for memory management). (minor)
      • The description() member function of a space is not any longer const: it can be called at most once. (minor)
      • The constrain method used for best solution search must be virtual and takes an argument of type const Space& rather than Space* as argument. (major)
      • View and value branchings have been completely reimplemented to support tie-breaking and state (for randomized selection). (major)
    • Bug fixes
      • Updating of a council of advisors crashed if a propagator has no advisors (as we had no example of this kind of propagators). (major, thanks to Vincent Barichard)
  • Search engines
    • Additions
      • The search engines now collect statistics for the number of nodes visited and the maximum depth of the search tree. The information for number of clone and commit operations has been removed as it was too confusing. (minor)
      • Search engines have been completely reimplemented. (major)
  • Finite domain integers
    • Additions
      • Added support for synchronized execution that executes a function or a static member function when a Boolean variable becomes assigned (called when). (minor)
      • Integer sets can now be initialized from integer argument arrays. (minor)
      • Domain constraints (dom) also accept integers now. (minor)
      • Added a Boolean clause constraint that supports conjunction and disjunction of both positive and negative variables. (minor)
    • Removals
      • Support for PropKind has been removed for all but extensional constraints. (minor)
    • Other changes
      • A TupleSet must be finalized before an extensional constraint can be posted using it. (minor)
      • Make the variable deltas generated for minus_r more meaningful if possible. (minor, thanks to David Rijsman)
      • TupleSet now accepts duplicate tuples. (minor)
      • Renamed size() to ranges() for IntSet (returning the number of ranges). Added a size() and width() function that return the size and width of the set respectively. (minor)
      • Tie-breaking and random selection for branch is now supported. (major)
      • The variable selection INT_VAR_DEGREE_MIN and INT_VAR_DEGREE_MAX do not have tiebreaking with smallest domain size built in. (minor) Details
    • Bug fixes
      • Fixed bug in domain consistent min and max propagators. (minor)
      • Fixed off-by-one bug in extensional for DFAs. (major, thanks to Roland Yap Hock Chuan)
      • The binary min and max propagators did not do all pruning they should do. (minor, thanks to Jonathan Cederberg) Details
    • Performance improvements
      • Integrated an efficient implementation of reified linear constraints over Boolean variables. (major, contributed by Tias Guns)
      • Now n-ary Boolean disjunction and conjunction are constant time (rather than linear time, as before), even when a variable for the result is used. (minor)
      • The incremental extensional propagator for tuplesets uses less memory (around 25%) and reports its size correctly. (minor)
      • The element propagator for integer arrays now chooses datastructures according to and the elements of the array. (minor) Details
      • The regular propagator now chooses datastructures according to the size of the DFA. This can save up to 80% memory on a 64 bit machine, and still up to 50% on a 32 bit machine. (minor)
      • Simpler and more efficient memory management for element propagators (integer arrays). (minor)
  • Finite integer sets
    • Additions
      • More set branching strategies have been added (for instance random variable and value selection), as well as set assignment. (minor)
      • Added reified propagators constraining an integer variable to be the minimum or maximum element of a set variable. (minor, thanks to Denys Duchier)
    • Removals
      • Removed automatically generated set projectors, they will come back eventually. This makes no change to the available functionality for set variables. (minor)
    • Other changes
      • Element and convexity constraints on set variables have a more uniform interface, and the match constrained has been renamed to channel. (minor)
      • Reorganized the internal data structures of set variables so that each variable takes up 8 bytes less memory on 64 bit machines. (minor)
      • The values for variable and value selection for branching have been made consistent and extended. (major) Details
    • Bug fixes
      • Fixed bug in creation of set variables. (minor, thanks to Stefano Gualandi)
      • Fixed constructors for set variables. They now throw proper exceptions when trying to create empty variable domains. (minor, thanks to Denys Duchier)
  • Finite integer sets with complete representation
    • Removals
      • Complete sets have been removed (just not good enough). (major)
  • Minimal modeling support
    • Additions
      • Added MinimizeSpace and MaximizeSpace classes for cost-based optimization (requires implementing a cost function returning an integer cost variable). Optimization can now be implemented by inheriting from these classes rather than from Space and by implementing a cost function. (minor)
    • Other changes
    • Performance improvements
      • Posting constraints according to Boolean expressions now uses a negation normalform and by this avoids any propagator for negation and uses fewer propagators due to the new clause constraint. (minor)
  • Range and value iterators
    • Bug fixes
      • Fixed init method of SingletonAppend range iterator. (minor, thanks to Stefano Gualandi)
    • Documentation fixes
      • Mention that arrays for Iter::Values::Arrays must be sorted. (minor, thanks to Anden Blah, Morten Boysen)
  • Support algorithms and datastructures
    • Removals
      • PQueue has been removed (too specialized to be reused anyway). (minor)
      • GECODE_AUTOARRAY has been removed. Use a Region for memory management instead. (minor)
      • GECODE_AUTOSTACK and SentinelStack has been removed. Use StaticStack instead. (minor)
    • Bug fixes
      • Sorting (quicksort and insertion) require strict orders and now work with arrays of more than 2^32 elements. (minor, thanks to Michal Dobrogost)
  • Example scripts
    • Additions
      • New example: the steel mill slab design problem (Problem 38 in <a href="http://csplib.org">CSPLib</a>). (minor) Details
    • Bug fixes
      • A bug in the independent set example has been fixed (most edges were ignored). (minor, thanks to Stefano Gualandi)
      • Fixed a bug in the extensional propagation-version of the domino example. (minor)
    • Performance improvements
      • Improved branching for Nonogram examples. (minor, thanks to Håkan Kjellerstrand)
  • Systematic tests
    • Additions
      • Tests for testing claims of bounds(Z) and bounds(D) consistency. These tests would have found the bug in the binary min and max propagators. (minor) Details
  • Gist
    • Additions
      • Added inspectors that react on every solution instead of a double click. (minor)
    • Other changes
      • Gist now takes an optional argument specifying options for the search, including the inspectors to be used. The Qt interface has been cleaned up, so that Gist is easier to extend. (minor)
  • General
    • Additions
      • For the Microsoft compiler, auto-link information is added during compilation. (minor) Details
    • Removals
      • All support for reflection has been removed: not clean enough, not powerful enough, too difficult, and too much trouble. (major)
    • Other changes
      • All operators are now in their correct namespace. (major, thanks to Max)
      • Changed naming scheme for files. (major) Details
      • Now everything is passed as reference (Space, Propagator, ModEventDelta, Advisor, Branching, and BranchingDesc). (major) Details
      • The memory management has been completely reworked. (major) Details
    • Bug fixes
      • Output operators (<<) now respect formatting width and work with output streams using arbitrary character types. (minor, thanks to Chris Mears)

Changes in Version 2.2.0 (2008-08-25)

This release adds many domain consistent propagators for arithmetic constraints and fixes a number of bugs. Some of these bugs fixed are potentially serious, in particular as they occur very seldom. Please change to 2.2.0 as soon as possible (in particular if you are using the 64bit Microsoft Visual C++ compiler). And, of course, the usual small fixes and changes.

  • Kernel
    • Removals
      • Removed ViewTuple. Just not useful enough... (minor)
    • Other changes
      • Cleaned up Reflection::Var type, overloading did not conform to the C++ standard. (minor)
    • Bug fixes
      • Fixed a bug in the memory alignment on Windows 64bit (very hard to reproduce). (major)
      • Fixed bug that could potentially have affected certain staged propagators. (minor)
      • Generated variable stubs were wrong (could only be observed for new variable types). (major, thanks to Filip Konvicka)
    • Documentation fixes
      • Fixed explanation of ES_FIX and ES_NOFIX for advisors (description was mixed up). (minor, thanks to David Rijsman)
  • Finite domain integers
    • Additions
      • The attempt to access the value of an unassigned integer or Boolean variable (IntVar or BoolVar) throws an exception now. (minor, thanks to Raphael Reischuk)
      • Added bounds consistent division/modulo propagator. (minor)
      • The channel constraint now comes in a version that allows to specify offsets to the array indices. (minor)
      • Added domain consistent multiplication propagator. (minor)
      • Added domain consistent minimum (min) and maximum (max) propagators. (minor)
      • Added domain consistent square root propagator (sqrt). (minor)
      • Added domain consistent squaring propagator (sqr). (minor)
      • Added reified propagators for relations over Boolean variables. (minor)
    • Other changes
      • All functional linear and arithmetic constraints now put sharp bounds on the output variable (eases interfacing to modelling languages). (minor)
    • Bug fixes
      • Fixed a bug in the domain consistent distinct propagator that would cause a stack overflow under rare circumstances. (major)
      • Fixed bug for domain-consistent distinct that never occurred in practice. (minor)
      • Cumulatives did not do all the pruning it should do. (minor, thanks to David Rijsman)
      • Fixed bug in element with IntArgs and sharing between the two IntVars. (minor)
      • Fixed bug in sqrt. (minor, thanks to Jaroslav Mlejnek)
      • Fixed bug in ValSplitMin::branchingSpec. (minor, thanks to David Rijsman)
    • Documentation fixes
      • Added documentation for domain consistent absolute value (abs) propagator. (minor)
  • Finite integer sets
    • Other changes
      • The set selection constraints are now called element. (minor)
    • Bug fixes
      • The ternary intersection propagator was incorrect if any of the sets had a maximum cardinality of Set::Limits::card. (major)
  • Example scripts
    • Removals
      • Example-based support for SAC (singleton arc consistency) has been removed. Might be reintroduced later in a more general fashion. (minor)
  • General
    • Additions
      • Added configure options for adding a prefix and a suffix to the names of the compiled libraries. (minor)
      • The Makefile has a new target, check, which performs a minimal integrity check using some tests from the test suite. (minor)
    • Other changes
      • The configure script now always uses the Microsoft compiler on Windows. Use the CC and CXX environment variables to override this if you want to use gcc. (minor)

Changes in Version 2.1.1 (2008-03-06)

This is a bugfix release.

  • Kernel
    • Bug fixes
      • The generated med_updated function was incorrect, resulting in potential crashes of programs that use SetVars. (major)
      • Made the constructor of Reflection::Var explicit, otherwise overloading for output stream operators does not work as expected. (minor)
  • Finite domain integers
    • Bug fixes
      • Non-shared copying of dfa was broken (matters only for parallel execution). (minor)
  • Finite integer sets with complete representation
    • Documentation fixes
      • The CpltSet variables are now in the correct documentation group. (minor)
  • Gist
    • Bug fixes
      • Fixed redraw artefacts on Windows. (minor)
  • General
    • Bug fixes
      • Fixed boost serialization. (minor)

Changes in Version 2.1.0 (2008-02-29)

This release makes two essential contributions: a partly reimplemented kernel that is faster, is simpler, and uses less memory and lots of small and not so small fixes. This release is the first release where really everything that we can test (rather than everything that we initially believed to matter) has been systematically tested. So, better switch now to 2.1.0!

Apart from that, the value range for variables has been increased (basically, 32 bits minus three values, so that is 32 bits), the reflection API is now fully functional and no longer considered experimental, and we have the usual small additions.

  • Kernel
    • Additions
      • A generic variable class has been added that can be used for interfacing. It can store arbitrary Gecode variables (e.g. IntVar and SetVar), and cast them back using a run-time type check. The update, reflection, and output operations are implemented through the reflection registry. (minor)
    • Other changes
      • Cleaned up reflection. Unreflection is now part of the kernel instead of the serialization library. Branchings now provide a human-readable description of a BranchingDesc. The name function of a Propagator has been renamed to ati (actor type identifier). All reflection is now const where possible. Unreflection of variables now checks dynamically that the variable types match. Unreflection of propagators checks the number of arguments. A tutorial-style section on reflection has been added to the documentation. (minor)
      • Only stable and non-failed spaces can be cloned, otherwise Space::clone raises an exception. This makes cloning and propagation fully orthogonal. To emulate the old behavior, just execute Space::status before Space::clone. (major)
      • The number of propagators and branchings can be accurately retrieved from both failed and non-stable spaces. (minor)
      • Views and variables do not any longer reveal whether they have been modified: this feature committed the kernel to a particular implementation which might not be available in the future. (minor)
      • The kernel has undergone some cleanups and improvements (much of it got actually reimplemented):
        • Automatically generated stubs for variable implementations are directly inlined into the kernel. This improves performance, but more importantly, lifts some limits on the number of variables. Now, the only limit is that the sum of the ceiling of the logarithms of the number of modification events of all variables does not exceed 32 (as an estimate, the kernel now can handle around 10 to 16 variable types). Moreover, if the need for more variable types arises this is straightforward to do.
        • The addition of new variable types for users has been simplified.
        • The main propagation loop has been entirely rewritten (much much simpler). Now, the kernel does not optimize any longer for the case that a variable is modified more than once during propagator execution. While this changes the asymptotic complexity, it reduces the propagator execution overhead by up to 30%. And a propagator is still free to make sure that a variable is modified only once (many propagators do that already).
        • Variable implementations became smaller by one word. Now variable implementations are optimal in the sense that no additional memory is needed for cloning or book-keeping, the memory required for propagation is sufficient.
        • Spaces have lost some weight as memory for datastructures only used during cloning or propagation are shared (saves some 25% of memory per space). (major)
      • Propagator modification events have been renamed to modification event deltas (because that is what they are). (major)
      • To not confuse variable implementations with variables, variable implementations are now always called VarImp, and not Variable. (minor)
    • Bug fixes
      • Fixed bug in unreflection of empty VarArrays. (minor)
  • Search engines
    • Other changes
      • All search engines now take an option value for configuration instead of individual arguments for recomputation, stop objects, etc. (major)
  • Finite domain integers
    • Additions
      • Added interface to extensional constraints defined by TupleSets with BoolVars. (minor)
      • Added sqrt propagator. (minor)
      • Added sqr post function. (minor)
      • Added missing branching for INT_VAR_SIZE_DEGREE_MIN and INT_VAR_SIZE_DEGREE_MAX for Boolean variables. (minor)
    • Removals
      • Removed extensional constraints with offset arguments. (minor)
      • The offset arguments for element constraints have been removed, as you can simply add dummy elements to the array to achieve the same effect. (minor)
    • Other changes
      • Throw an exception if variables occur multiply for array-based channel constraints. (minor)
      • The limits for set variables have been moved from Limits::Set to Set::Limits.
        The range of integer variables have been extended by one bit. For example, on a standard machine (regardless of 32 or 64 bits), the largest possible integer value for an integer variable is 2^31-2, the smallest -2^31+2. With other words, only the integer values 2^31-1, -2^31, and -2^31+1 are missing from the two-complement representation (and we will never use these values for the sake of mental sanity. We promise.). (major)
    • Bug fixes
      • Fixed multiplication propagator for x*y=x. (minor)
      • The overloaded versions of dom for variable arrays could not be resolved automatically. (minor)
      • Distinct with integer offsets checks accurately for overflow now. (minor)
    • Performance improvements
      • IntSet have been reimplemented for efficiency. (minor)
      • Boolean variables consume 20% less memory. (minor)
  • Finite integer sets
    • Removals
      • The offset arguments for selection constraints have been removed, as you can simply add dummy elements to the array to achieve the same effect. (minor)
    • Other changes
      • The limits for set variables have been moved from Limits::Set to Set::Limits.
        The range of set variables has been adapted to the range of integer variables. For example, on a standard machine (regardless of 32 or 64 bits), a set can hold values from -2^30+2 to 2^30-2, its maximum cardinality therefore is 2^31-3. (major)
    • Bug fixes
      • Fixed bugs in several set constraints: rel(Space*,SetVar,IntRelType irt,IntVar) for irt=IRT_NQ, rel(Space*,SetVar,SetOpType sot,const IntSet&,SetRelType srt,SetVar) for sot=SOT_MINUS, srt=SRT_SUP, selectDisjoint, selectUnion with constant IntSet arguments, dom with SRT_NQ. (major)
  • Minimal modeling support
    • Additions
      • Support reified linear expressions with Boolean variables. (minor)
      • All minimodel functionality now understands both IntConLevel and PropKind arguments. (minor)
      • Added sqrt function. (minor)
    • Removals
      • Removed scheduling abstractions. (minor)
    • Bug fixes
      • Reimplemented linear expressions from scratch, they were just hopelessly screwed. (major)
      • Added work-around for compiler bug in MSVC. (minor)
      • Fixed bug in posting linear expressions. (major, thanks to Stanimir Dragiev)
  • Example scripts
    • Additions
      • Simple Singleton Arc Consistency pre-processing has been added as an optional step for examples. (minor)
  • Gist
    • Additions
      • The Gecode Interactive Search Tool (Gist), a Qt-based graphical search engine, is now part of the main Gecode distribution. It is currently included as an experimental beta preview and may not be completely stable yet. (major)
  • General
    • Additions
      • The serialization library now contains a registry of all the Gecode post functions. This makes interfacing to Gecode much easier. The registry is automatically generated from the post functions defined in gecode/int.hh and gecode/set.hh. (major)
      • (De-)Serialization to and from JavaScript added. (major)
    • Other changes
      • Both the cost and propagate function of a propagator take the current modification event delta as input. Likewise, retrieving the modification event for a particular View must use the static function View::me with the passed modification event delta. Again, this feature committed the kernel to a particular implementation which might not be available in the future. (major)
    • Documentation fixes
      • Function prototypes are now highlighted in the detailed function documentation. (minor, thanks to Martin Mann)

Changes in Version 2.0.1 (2008-02-07)

This is a bug-fix only release. Very unfortunately, it fixes three serious bugs in search (LDS, Restart, and assignment branchings). We highly encourage you to switch to Gecode 2.0.1 as soon as possible.

  • Kernel
    • Other changes
      • The VarMapIter can now return both a specification and the actual VarBase* of the currently iterated variable. (minor)
    • Bug fixes
      • Static initialization order was undefined, making reflection work unreliably. In particular, linking Gecode statically did not work. (major)
      • Exceptions did not have rtti information when compiled with gcc and visibility, which meant that they could not be caught. (minor)
      • Fixed a bug in the hash function for pointers, which could return negative array indices. (minor)
    • Performance improvements
      • Be less aggressive in increasing size of heap chunks. (minor)
  • Search engines
    • Bug fixes
      • Assignment branchings wrongly reported that they feature two alternatives rather than one. (major)
      • LDS had numerous quirks. It has been fixed and greatly improved: it detects when the entire search tree has been probed, independent of the maximal discrepancy. (major, thanks to Stefano Gualandi)
      • Restart was broken in case the problem failed immediately with propagation only, both when being initialized or when requesting a next solution. (major, thanks to Stefano Gualandi)
  • Finite domain integers
    • Additions
      • Re-added reified linear constraints for Boolean variables. (minor, thanks to Mohamad Rabbath)
    • Bug fixes
      • Fixed memory leak in IntSet. (minor)
      • Domain-consistent abs could crash in certain (extremely rare) border cases. (minor)
      • Initializing an IntVar with an empty IntSet did not throw the appropriate exception but crashed. (minor)
    • Documentation fixes
      • Fixed bug in documentation of table-based extensional constraint. (minor)
  • Finite integer sets
    • Bug fixes
      • Fixed memory leak in set projection propagators. (minor)
  • Range and value iterators
    • Bug fixes
      • Changed Ranges::Diff to make older versions of gcc happy. (minor, thanks to David Barton)
  • Example scripts
    • Bug fixes
      • Fixed a bug and quirk in Kakuro puzzles. (minor, thanks to Helmut Simonis)
  • Systematic tests
    • Additions
      • Added comprehensive tests for all search engines. (major)
    • Bug fixes
      • Fixed memory leak in reflection tests. (minor)
  • General
    • Bug fixes
      • Fixed linking order so that static linking works again. (minor, thanks to David Barton)
      • Revived boost serialization. The serialization functions will be compiled if Gecode is configured with --with-boost. (minor)

Changes in Version 2.0.0 (2007-11-14)

As witnessed by the version number change, this is a major release with too many changes, fixes, and additions to mention them all: please consult the changelog.

The highlights are:

  • New propagators: channeling between Integer variable and array of Boolean variables, circuit, table constraint (extensional), incremental regular constraint (extensional), incremental Boolean linear constraints
  • Boolean variables have a dedicated implementation: twice as fast, half the memory
  • Advisors for incremental propagation (see: Lagerkvist, Schulte, Advisors for Incremental Propagation, CP 2007)
  • Many crucial performance and scalability improvements: memory management, memory footprint of propagators
  • Many cleanups and more documentation, many new examples
  • New set variables with complete domain representation (CpltSetVar) [experimental]
  • A reflection API to query spaces about their propagators [experimental]

The features marked as experimental are all functional, but might be revised in the next releases.

As Gecode 2.0.0 is a major release, you might have to adapt your programs: How to Change to Gecode 2.0.0.

  • Kernel
    • Additions
      • A reflection API has been added, which allows querying spaces about the variables and propagators they contain. (major)
      • Added advisors as an abstraction for incremental propagation: advisors are executed for their propagator whenever their view changes. Advisors, when not being used, add one word of overhead to each variable and slow down the system in the worst case by less than 1%. In average, no slowdown can be observed. (major)
      • A new propagation condition PC_GEN_NONE (and hence, PC_INT_NONE, ...) has been introduced. Propagator patterns with this propagation condition now do not create any subscriptions. (minor)
      • Support for reference-counted shared objects added: they handle both reference counting as well as non-shared copying. This fixes some bugs with the handling of shared arrays, integer sets, and finite automata. (major)
      • Added classes for shared objects and handles. Handles to shared objects allow to either share copies among spaces when being copied or to create a new shared copy, if requested. (major)
      • Added macro GECODE_REWRITE for rewriting propagators. It is strongly advised to always use this macro! (major)
      • Add a generic class for assignments during search (similar to generic branchings for views and values). (minor)
    • Other changes
      • Shared arrays are now available in the kernel (where they properly belong). This entails that they are available in the Gecode namespace and not in Gecode::Support. (minor)
      • VarArrays can now be resized dynamically. (minor)
      • The way how propagators report subsumption and partial fixpoints has changed. Now, a propagator must first call dispose (which then cancels subscriptions and possibly frees external resources) and only then can return that the propagator is subsumed. For that purpose a new function Gecode::ES_SUBSUMED has been defined. Likewise, ES_FIX_PARTIAL and ES_NOFIX_PARTIAL are functions rather than member functions of Gecode::Propagator. The benefit is that this saves memory and is more efficient. (major)
      • Made all macros type safe. (minor)
      • The propagator abstractions Inhom* have been renamed to Mix*. (minor)
      • Propagators and branchings that require disposal when a space is deleted must now be explicitly registered via a force function and explicitly deregistered by an unforce function. (minor)
    • Bug fixes
      • Branching ids were not properly initialized. This was a serious problem if you posted branchings in spaces other than the root space. (major)
      • Subscription to constant views now should use the propagate member function from a variable implementation: it guarantees execution of a propagator at least once (int and set views have been adopted accordingly). (minor)
    • Performance improvements
      • Improved automatic memory management on Windows platforms. (minor)
      • The memory management policies have been completely reworked. Now memory requests are much more regular. Hence, memory is much more likely to be returned to the operating system. Furthermore, the flush member functions for actors have been removed (they were unneeded) and actors and spaces now have allocated member functions for returning how much memory is allocated by a space.
        Moreover, the memory reported by some propagators has been ignored. Note that this flaw did not affect the benchmark figures on the Gecode webpage. (major)
      • Explicit disposal of actors has been reimplemented (the old design was nothing but darn stupid). The memory overhead of propagators is reduced by 40% for most propagators and 20% for all. That is, a binary propagator takes 30% less memory and a ternary propagator takes 25% less memory. Programs with many binary or ternary propagators can run up to 20% faster. (major)
  • Finite domain integers
    • Additions
      • Added table-based extensional constraint. (major)
      • Added new variable selection based on largest or smallest quotient of size and degree. (minor)
      • Added a new version of count (and also atleast, atmost, exactly) that counts the number of variables equal to integers in an array. (minor, thanks to Martin Mann)
      • Added channel constraints that channel an integer variable to either a single or an array of Boolean variables. (major)
      • Relaxed sharing restrictions for channel, in particular channel(this, x, x) is allowed. (minor)
      • Added propagators for the circuit constraint. (major)
      • Added propagators for linear constraints over Boolean variables, in particular specialized and efficient versions for non-unit coefficients. (major)
      • The element constraint now also supports integer values as result. (minor)
    • Other changes
      • The extensional constraint specified by a DFA or a regular expression (formerly known as regular) is now named "extensional" rather than "regular". (minor)
      • The interface for the global cardinality constraint has been simplified. The constraint is now called count. (minor)
      • Regular expressions (REG) have been moved from the integer module to the minimodel module. (minor)
      • Iterator-based domain operations have been renamed, reimplemented, and extended. Now operations for both range and value iterators are supported and the operations can be told to perform more efficient destructive updates. (major)
      • Sortedness constraints have been renamed to sorted constraints. (minor)
      • The Boolean tell operations one_none and zero_none now also return a ModEvent and hence must be checked for failure. This is needed for simpler advisors. (minor)
      • Integer and Boolean variables are now guaranteed to be inspectable (that is, all const member functions work on them), even though a space is failed. However, the variables might have been modified during a tell operation that has failed. (minor)
      • Boolean variables (and hence Boolean views) do not any longer share the implementation with integer variables. That has the following consequences:
        • Boolean variables are not any longer integer variables. The same holds true for arrays of variables.
        • All constraints that make sense for both Boolean and integer variables have post functions that support both integer and Boolean variables.
        • Memory for Boolean variables is reduced by 50% and performance increases in problems with many Boolean variables by up to 50%. (major)
      • The linear constraints are now more careful (that is, they will use more efficient versions more often if it is safe) to determine whether overflow occurs and which precision (integer or double) should be chosen. (minor)
      • The element constraints now accept an additional offset argument. (minor)
      • All Boolean constraints got a new and regular interface. Rather than providing different post functions for the different constraints, the single post function rel is used: the Boolean operation then is described by a value of type BoolOpType. In addition, all Boolean propagators have been reimplemented for better performance and less memory use. (major)
      • The use of the consistency options were a little confusing, now the rule is: the level of consistency increases from ICL_VAL to ICL_BND to ICL_DOM. (minor)
      • All branching classes for value and view selection are now parametric. (minor)
      • Boolean variables cannot longer be initialized from an integer variable. If needed, a channel propagator must be posted (added). (minor)
      • The equality constraints have been replaced by a variant of rel. (minor)
      • The operations t_one, t_one_none, t_zero, t_zero_none for Boolean views have been renamed to one, one_none, zero, zero_none. (minor)
    • Bug fixes
      • Fixed a border-case bug for n-ary Boolean conjunction and disjunction. (minor)
      • Fixed bug in copying of n-ary or-propagator for a special boundary case. (minor)
      • Branching on maximum regret would always crash on non-range domains. (major)
      • Fixed memory leak in reified dom constraint. (minor)
    • Performance improvements
      • Boolean linear equations and inequalities with constant right-hand sides use constant time propagators whenever appropriate (linear time with less overhead and memory for propagators with few variables). (major)
      • The regular constraint has been reimplemented, the new version runs more than twice as fast. (major)
      • Domain consistent distinct and channel allocate memory from the space heap now. Much simpler. (minor)
      • The multiplication uses integer precision if possible for better performance. (minor)
  • Finite integer sets
    • Additions
      • Added channeling propagator between a SetVar and a BoolVarArray that propagates the characteristic function of the set to the Boolean variables. (minor)
      • Finite set projectors can now be specified using formulas, in addition to set expressions. (minor)
      • Added selection and reified relation constraints with constant sets. (minor)
    • Removals
      • Removed buggy distinct propagator for finite sets. (minor)
    • Other changes
      • Slightly stronger inferences for the finite set sequence and selection constraints. (minor)
      • The finite set selection propagators accept an additional argument that specifies where the indexing should start. It should make some models more natural to express, and helps in porting code from other systems, such as Prolog or Mozart. In addition, the selectUnion propagator is now hand-written again, resulting in better performance. (minor)
    • Bug fixes
      • Fixed the n-ary partition propagator to handle overflow of the sum of cardinalities correctly. (minor)
      • Set projectors could subscribe with bogus propagation conditions. (minor)
      • Fixed memory leak in distinct constraint for sets. (minor)
    • Performance improvements
      • Changed the datastructure for set variables to use singly-linked lists. (minor)
      • Performance of the tell operations on finite set variables was improved. Especially the intersect operation benefits from this. (minor)
  • Finite integer sets with complete representation
    • Additions
      • Finite integer set variables with complete domain representation, based on binary decision diagrams (BDDs), have been added as a new variable type. (major)
  • Minimal modeling support
    • Other changes
      • Linear expressions and relations can also be created from Boolean variables, with the restriction that Boolean relations cannot be reified. (major)
    • Bug fixes
      • Fixed small quirk in posting an absolute propagator via a function. (minor)
    • Performance improvements
      • Boolean expressions erroneously decomposed into ternary Boolean constraints, while not incorrect rather inefficient for large Boolean expressions. (minor)
  • Example scripts
    • Additions
      • New example: Kakuro puzzles. (minor, thanks to Helmut Simonis)
      • Added a model for the traveling salesman problem, mostly intended to exercise the new circuit constraint (as the model is not very competitive). (minor)
      • New example: the balanced academic curriculum problem (problem 030 from CSPlib). (minor)
      • New example: MineSweeper. (minor)
      • New example: Domino. (minor)
      • New example: Pentominoes. The example uses extensional constraints specified as regular expressions to place irregular-shaped pieces on a board. (major)
    • Other changes
      • Most examples have been cleaned up. (major)
      • Parsing of commandline arguments has been completely redone and is much more extensible and flexible. (minor)
    • Bug fixes
      • Examples reported wrong number of propagator invocations (the invocations for problem setup were missing). (minor)
      • The number of colors in graph-color was off by one. (minor)
      • Orientation of Sudokus now match the orientation in the specification-file. (minor)
  • Systematic tests
    • Additions
      • Added simple testing for branchings. (minor)
  • General
    • Additions
      • When compiling with gcc, the default visibility of symbols in the generated dynamic library is set to hidden. (minor)
      • Added dist and distdir targets for creating source distribution. (minor, thanks to Martin Mann)
      • On windows with MSVC, always build program database files to ease debugging of applications using Gecode (files are also included in packages). (minor, thanks to Filip Konvicka)
      • Variable arrays, view arrays, and argument arrays can directly be printed on standard output streams. (minor)
    • Other changes
      • The structure of includes has been drastically simplified. Support for iterators ("gecode/iter.hh") is automatically included with integers ("gecode/int.hh") and sets ("gecode/set.hh"). Likewise, all support functionality becomes available by including "gecode/support.hh" (one can assume that this is included in "gecode/kernel.hh"). (minor)
      • The values (and types) for selecting how to branch have been made uniform for all variables types: they start with INT_ (or SET_ or CPLTSET_), followed by either VAL or VAR and the respective strategy. (minor)
      • All of Gecode has been put under the MIT license (which the previous license was a simple rewording of). (minor)
    • Bug fixes
      • Removed huge number of casts that could (only potentially) compromise portability. (minor)

Changes in Version 1.3.1 (2006-10-25)

This is a minor release which fixes a major bug (the first real serious bug). Please update as soon as possible.

  • Kernel
    • Bug fixes
      • Branch&Bound search with ViewValBranchings (all standard branchings) together with batch recomputation was severely broken. The problems ranged from wrong search trees (missing solutions) to segmentation faults. The fix changes the way assigned variables are removed from the array in a ViewValBranching. (major, thanks to Rafael Meneses)
  • Finite domain integers
    • Bug fixes
      • Bounds-consistent distinct catches border case when an assigned variable during bounds propagation leads to value removal for value propagation. (minor)
      • IntVar::init now also raises exceptions for illegal domain specifications. (minor, thanks to Alejandro Arbelaez)
    • Performance improvements
      • Bounds-consistent distinct eliminates assigned variables more aggressively (can save up to 10% runtime in some cases). (minor)

Changes in Version 1.3.0 (2006-09-19)

This release adds a compiler for finite set projectors and provides new infrastructure making it easier to add new variable domains. In addition, it contains recent bug fixes and minor improvements.

  • Kernel
    • Additions
      • Subscription to variables now features an additional and optional Boolean argument whether the propagator is to be processed. This allows dynamically creation of subscriptions during propagation. (major)
      • Variables can now be deallocated when the Space is deallocated (for example in case of failure). This is important in case a variable implementation needs to reference external resources. Deallocation can be switched on in the high-level description used for generating the variable implementation. (minor)
    • Bug fixes
      • Now commits can be interleaved with adding new constraints during batch recomputation. This also entails that commit does not raise an exception when applied to an already failed space (it is simply ignored). The bug could not be observed (unless you did some very fancy search engines yourself) and one could actually see it as an extension. (minor)
    • Performance improvements
      • Variable implementations are now generated from a high-level description (taking care of all aspects relating to modification events and propagation conditions). While simplifying the implementation of new variable domains considerably, this also can, in lucky cases, deliver a speed-up of 5%. (major)
      • Allocate subscriptions in separate memory area. Can speedup execution in some (but few) cases by up to 15-20%. (major)
  • Search engines
    • Additions
      • Branch-and-bound search now interleaves recomputation with adding bounding constraints. This can prune the search tree much earlier: instead of recomputing many nodes from the same copy node and then adding a constraint that fails all these nodes, it might be possible to already fail the copy node directly. In principle, the difference can be exponential, however for examples we tried the effect is minor. (major)
  • Finite domain integers
    • Other changes
      • Renamed lex constraint to rel (as it also supports equality and disequality). (minor)
    • Performance improvements
      • Make count constraints with integer number of equal occurrences more incremental using dynamic subscriptions (gives a 20-30% speedup). (minor)
    • Documentation fixes
      • Fixed documentation problem due to doxygen... (minor)
  • Finite integer sets
    • Additions
      • Compiler for finite set projectors. Given a specification of a finite set constraint as a projector set, it generates C++ code for the corresponding propagator. Together with the dynamic propagator for finite set projectors, this implements the backend of the technique described in the paper "Generating Propagators for Finite Set Constraints" (Tack, Schulte, Smolka; CP 2006.). (major)
  • Minimal modeling support
    • Additions
      • Added aliases lex, atleast, atmost, and exactly for the count constraint. (minor)
    • Bug fixes
      • Under certain conditions (posting in a failed space), the post function returned uninitialized variables. (minor, thanks to Rafael Meneses)
  • Example scripts
    • Additions
      • Added an example for solving Black Hole patience games. (minor)
  • General
    • Additions
      • Also pass options for linking standard libraries for MSVC. (minor, thanks to Jorge Marques Pelizzoni)
      • New configure switches: --enable-audit to include audit code, which may contain expensive checks of internal invariants or alternative, checked implementations of critical parts of Gecode. --enable-universal and --with-sdk, to support building universal binaries on Mac OS X. (minor)
    • Bug fixes
      • The pkg-config files now contain the correct path if you configured to the default prefix (i.e. /usr/local). (minor)

Changes in Version 1.2.2 (2006-07-25)

This release switches recomputation back on and removes some experimental code that had sneaked into the system...

  • Kernel
    • Performance improvements
      • Some experimental code had sneaked into the release, slowing down the system by more than 10%... (major)
  • Search engines
    • Bug fixes
      • With the changes to search in Gecode 1.2.1 recomputation was actually almost switched off... (major)
  • Finite domain integers
    • Performance improvements
      • Improve performance of domain-consistent distinct (by providing special ternary version). Can reduce runtime by 10-20% for some examples. (minor)
      • Cut memory requirements for element (for integer arrays) by half. (minor)
  • Example scripts
    • Additions
      • Added stress test for element constraint (originally due to Neng-Fa Zhou). (minor)
      • Added stress test for min constraint. (minor)
      • Added possibility to stop the search for solutions in examples based on the time taken, the number of fails, or both. (minor)
      • Added an example for solving Peacable co-existing armies of Queens. (minor)

Changes in Version 1.2.1 (2006-07-19)

In addition to the usual fixes and improvements, the biggest change is that all branchings now must support branching descriptions. This also entails straightforward changes (simplifications) to search-related space operations and to the implementation of search engines.

  • Kernel
    • Additions
      • Added a macro GECODE_NEVER that assert that this command is never executed. This is preferred over assert(false) as it is used for optimization, if supported by a compiler (for example, Microsoft Visual C++). (minor)
    • Other changes
      • The ViewValBranching class now passes the home space to all member functions used in selecting the view and the value. (minor, thanks to Martin Mann)
      • The interface for branchings has changed considerably, reflecting the fact now that all branchings must support branching descriptions. This is also reflected in the Space::status operation which has its arguments reversed and corrected const qualifiers on its arguments. But the good news is that it is considerably simpler than before. (major)
      • The status operation does not any longer accept an argument for the number of alternatives. The number of alternatives is now available from a branching description (where it is passed upon creation of the description). This reflects the fact that branching descriptions are mandatory now. (major)
      • Change exceptions thrown by Gecode to be compliant with C++ exceptions. (minor)
    • Bug fixes
      • As Boolean variables can be derived from integer variables, the assumption that a not yet assigned Boolean variable can not be modified is wrong. (minor)
  • Search engines
    • Other changes
      • Branchings now must return branching descriptions and commit operations also insist on being provided with branching descriptions. This change reflects that batch recomputation is of vital importance for efficiency in Gecode. (major)
    • Bug fixes
      • Fixed a serious bug where during recomputation the search stack was always inspected behind the last element: the reason why recomputation never crashed has been that stacks always keep one element extra for optimization. So, serious bug but looks as if no one stumbled over this... (major)
      • Search engines now correctly count the number of propagation steps including propagation that occurs when adaptive recomputation creates additional clones. (minor)
  • Finite domain integers
    • Removals
      • Removed bounds-consistent propagation for count constraint (not worth the trouble, just use domain-consistent). (minor)
    • Bug fixes
      • Fixed fixpoint detection bug in n-ary min and max propagators. (minor)
      • Min and max propagators now correctly handle cases such as min(x,y)=x. (minor)
      • Assignment branchings (that is, branchings with a single alternative) could possibly take the wrong values for assignment during recomputation. (minor)
    • Performance improvements
      • Make Boolean linear constraints with constant right hand sides more incremental using dynamic subscriptions (gives a 20-30% speedup). (major)
      • Made n-ary Boolean conjunction and disjunction more incremental by using dynamic subscriptions. (minor)
      • Provide special versions of Boolean propagators optimizing cases where n-ary disjunctions are true. (minor)
      • Change implementation of Boolean propagators from conjunction to disjunction so that disjunction can be used as special case for Boolean sum with inequalities. (minor)
  • Finite integer sets
    • Additions
      • Added finite set projection propagators. They allow to propagate all finite set constraints expressible as finite set projectors, including negated and reified constraints. (major)
    • Bug fixes
      • Fixed fixpoint detection for n-ary partition propagator. (minor)
  • Minimal modeling support
    • Performance improvements
      • Take advantage of specialized Boolean propagators in Boolean expressions and relations. (minor)
  • Support algorithms and datastructures
    • Additions
      • Added simple class encapsulating a linear congruential pseudo-random number generator. (minor)
  • General
    • Bug fixes
      • Renamed macros so as to avoid nameclashes (all macros start with GECODE_). (minor)
    • Documentation fixes
      • Generate one page per version released in changelog. (minor)

Changes in Version 1.2.0 (2006-06-20)

This release makes quite some drastic changes to how propagators and branchings are deleted: instead of using destructors they use a dispose method that allows passing a home space during deletion (we will use this infrastructure measure to speed up cloning considerably a little later). Moreover the directory structure has changed on popular request so that all include files are to be found in a gecode subdirectory. Apart from that, some small fixes and extensions due to requests.

  • Kernel
    • Additions
      • Spaces can be queried for number of propagators and branchings. (minor)
    • Other changes
      • The branch member function for branchings now also takes a home space as argument. (minor)
      • Canceling subscriptions on views and variable implementations now require also a home space (this has become possible due to not using destructors but ordinary "dispose" member functions). (major)
      • Actors (propagators and branchings) do not any longer use destructors but a "dispose" member function that takes a home space as argument and must return the size of the actor. Important: this requires that dispose member functions from super-classes and class members are called explicitly! (major)
    • Performance improvements
      • More aggressive inlining for canceling subscriptions. (minor)
  • Search engines
    • Additions
      • Search engines can now be checked whether they have been stopped. (minor)
    • Bug fixes
      • Fixed linkage of BAB destructor under Cygwin. (minor)
  • Finite domain integers
    • Bug fixes
      • Fixed memory leak in global cardinality constraint. (minor)
      • Fixed bug in equality tests that could lead to reified (dis)equality propagators not achieving domain consistency. (minor, thanks to Martin Mann)
    • Documentation fixes
      • Fixed bug in description of PC_INT_DOM. (minor, thanks to Martin Mann)
  • Finite integer sets
    • Bug fixes
      • Fixed memory leak in finite set distinct propagator. (minor, thanks to Luis Otero)
  • Example scripts
    • Other changes
      • Sudoku example generalized to arbitrarily sized Sudokus. (minor)
  • Systematic tests
    • Additions
      • Added --enable-leak-debug configure option. This option causes the test suite to call mtrace() under Linux, which can be used to test for memory leaks. (minor)
  • General
    • Other changes
      • Moved library source code into gecode subdirectory. Facilitates cleaner installation. Programs compiling against Gecode now need to include e.g. "gecode/int.hh". (major, thanks to Martin Mann)

Changes in Version 1.1.0 (2006-04-10)

This minor release adds some new constraints (see below), adds support for stopping search engines based on definable criteria, and some other small fixes. Most notably, the test infrastructure has been extended to also check whether propagators correctly claim that they have computed a fixpoint (now all invariants a propagator must obey in Gecode are covered by the test infrastructure). This has lead to many small fixes.

  • Kernel
    • Other changes
      • The status member function now also allows the first argument to be optional. (minor)
  • Search engines
    • Additions
      • Added functionality to interrupt search engines (introduced a Search::Stop class). (major, thanks to Rafael Meneses)
    • Other changes
      • Removed search engines optimizing for copying only (after all, one should always use some recomputation). (major)
  • Finite domain integers
    • Additions
      • Added new constraint channel for variable/value channeling between two variable arrays. (major)
    • Other changes
      • Support for shared views has been removed in sortedness propagator and in the propagator for global cardinality with fixed cardinalities. (minor)
      • Staged propagation for domain-consistent absolute value propagator (minor)
      • EqBnd and EqDom now take two template parameters for their view types. This supports using different views, e.g. to express x0=-x1 using a MinusView. (minor)
      • All distinct propagators raise an exception if a variable occurs multiply in its arguments. (minor)
    • Bug fixes
      • Fixed bug in fixpoint detection of sortedness and global cardinality propagator. (minor)
      • Fixed bug in fixpoint detection of n-ary maximum/minimum propagator. (minor)
      • Fixed bug in fixpoint detection of bounds-consistent element for variables propagator. (minor)
      • Fixed bug in fixpoint detection of bounds-consistent squaring propagator (mult with the same variable twice). (minor)
      • Fixed bug in fixpoint detection of bounds-consistent abs propagator. (minor)
      • Fixed wrong assertion in gcc-bnd propagator. (minor, thanks to Stefano Gualandi)
      • Fixed indexing bug in SupportSet (part of the domain consistent linear equation propagator). (major, thanks to Jean-Christophe Godart)
    • Performance improvements
      • Rewrite n-ary linear, min/max, and Boolean propagators to binary/ternary variants during cloning if possible (saves memory). (minor)
      • Improved initialization of domain-consistent distinct propagator, in common cases for distinct this can save up to 10% runtime. (major)
  • Finite integer sets
    • Other changes
      • Renamed the set propagators minElement to min, maxElement to max, and channelVarVal to channel. (major)
    • Bug fixes
      • A non-debug version of Gecode could not be linked to a program compiled with assertions switched on, as BndSet::isConsistent was missing from the library. (minor, thanks to Javier Mena)
      • Fixed bugs in fixpoint detection of several set propagators (match, convexity, sequence, n-ary (disjoint) union). (minor)
      • Fixed off-by-one bug in SetVarImp::lubMinN and SetVarImp::lubMaxN. (minor, thanks to Patrick Pekczynski)
  • Minimal modeling support
    • Additions
      • Added functions returning variables for arithmetic (min, max, abs, mult, plus, minus). (minor)
    • Bug fixes
      • (In-)Equations were still not correct with respect to the sign. (minor, thanks to Olof Sivertsson)
      • Slice-operation now returns elements in right order. (minor, thanks to Olof Sivertsson)
      • Possible array-out-of bounds access fixed for MiniModel::Matrix. (minor, thanks to Olof Sivertsson)
  • Example scripts
    • Additions
      • Added all-interval series using distinct. (minor)
    • Performance improvements
      • Added redundant constraint to social golfers example. (minor)
  • General
    • Bug fixes
      • Added a configure switch --enable-doc-dot. If enabled, this checks for presence of the dot tool (used for generating graphs in the documentation) (minor, thanks to Kari Pahula)

Changes in Version 1.0.1 (2006-03-01)

Maintenance release including some additions of domain-consistent propagators and a fix for a serious bug in reified linear inequalities.

  • Search engines
    • Other changes
      • Changed default copying recomputation distance to 8. (minor)
  • Finite domain integers
    • Additions
      • Added domain-consistent linear equalities. (major)
      • Added domain-consistent version of the absolute value propagator. (major)
    • Other changes
      • Cost computation for sortedness has been changed from static to dynamic (taking into account the variable reduction the propagator can perform). (minor)
      • Global cardinality changed to non-staged version. Further inference for cardinality variables added. Parts of the graph structure for the domain-consistent propagator have been revised so as to avoid unnecessary propagation in case of fixed cardinalities and to allow better staging for the propagator. Revision of propagation for fixed cardinalities has also been applied to bounds-consistent propagator. (major)
    • Bug fixes
      • Fixed fixpoint detection for ternary min and max. (minor)
      • Fixed subsumption detection for regular with multiple variable occurences. (minor)
      • Fixed a very serious bug in the reified linear inequality propagator. (major, thanks to Dominik Brill)
      • The strongly connected components represented by the permutation variables in the extended version of Sortedness has been fixed restoring bounds consistency on the permutation variables. (major)
  • Minimal modeling support
    • Additions
      • The post functions for linear expressions and relations also take an integer consistency level as optional argument. (minor)
    • Bug fixes
      • (In-)Equations with an int on the left hand side (like 9==x) were translated with a wrong sign (as -9==x). (minor, thanks to Olof Sivertsson)
  • Example scripts
    • Other changes
      • Examples now use per default the recomputation settings as defined in the search module. (minor)
  • General
    • Other changes
      • The soname for libraries on Linux is now set properly, as well as the version information on Darwin (Mac OS). (minor)
      • The build system has been updated to support building both static and shared libraries at the same time on Unix-like systems. (minor)
    • Bug fixes
      • The preprocessor macro NDEBUG for disabling assertions is no longer put into config.hpp. Without this fix, user programs could not use assert if Gecode was compiled with NDEBUG. (minor)
      • Removed some compiler warnings for the Microsoft compiler with -W3. (minor, thanks to Filip Konvicka)
    • Performance improvements
      • Switch assertions off in optimized builds with Microsoft's C++ compiler. (major)

Changes in Version 1.0.0 (2005-12-06, initial release)

No changes, of course.