-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathchangelog.in
7282 lines (6391 loc) · 167 KB
/
changelog.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Main authors:
# Christian Schulte <schulte@gecode.org>
#
# Copyright:
# Christian Schulte, 2005
#
# Last modified:
# $Date: 2013-11-05 09:51:31 +0100 (Tue, 05 Nov 2013) $ by $Author: schulte $
# $Revision: 14055 $
#
# This file is part of Gecode, the generic constraint
# development environment:
# http://www.gecode.org
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
#
# This file contains entries for changelogs
#
# There are two kinds of entries: one marking releases and the others
# being actual entries.
#
# All the lines for describing entries must start at the beginning.
#
# A release is described as follows:
# [RELEASE]
# Version: <version string>
# Date: <when release>
# [DESCRIPTION]
# ... All the text up to the next [ENTRY] is included
# as description
#
# An entry is described as follows:
# [ENTRY]
# Module:
# kernel|search|int|set|cpltset|example|minimodel|iter|support|
# scheduling|driver|test|gist|flatzinc|other
# What: bug|documentation|performance|new|removed|change
# Rank: minor|major
# Bug: <optional, for number from bugzilla>
# Thanks: <optional, who reported etc>
# [DESCRIPTION]
# ... All the text up to the next [ENTRY] or [RELEASE] is included
# as description
# [MORE]
# ... If a more section is included, then it will be displayed as an
# optional section in the html page.
#
[RELEASE]
Version: 4.2.1
Date: 2013-11-05
[DESCRIPTION]
This release fixes several major bugs and adds some minor
improvements.
[ENTRY]
Module: other
What: change
Rank: minor
[DESCRIPTION]
Compiles with MSVC 2013.
[ENTRY]
Module: search
What: bug
Rank: major
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Fix for restart-based search when the master does not have a branching.
[ENTRY]
Module: search
What: bug
Rank: major
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Restart-based search did not work when the cutoff limit did not
strictly increase.
[ENTRY]
Module: search
What: new
Rank: minor
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Added support for a repeat cutoff generator.
[ENTRY]
Module: int
What: performance
Rank: minor
Thanks: Anne Meyer
[DESCRIPTION]
Fix performance of domain consistent element for the case that the result
variable is assigned.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Bauke Conijn
[DESCRIPTION]
Fixed incorrect propagation in sortedness with permutation variables.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Duane Leslie
[DESCRIPTION]
Fixed cumulative constraint for 0-usage tasks.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Duane Leslie
[DESCRIPTION]
Fixed special case check for cumulative that would wrongly classify
some instances as disjunctive.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Kish Shen
[DESCRIPTION]
The nroot constraint now propagates correctly for negative
numbers when the exponent is odd.
[ENTRY]
Module: other
What: bug
Rank: minor
[DESCRIPTION]
Fix CMake to also build FlatZinc and Driver correctly.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
Fixed bug in auxiliary variable branching.
[ENTRY]
Module: minimodel
What: new
Rank: minor
Thanks: Philippe Kezirian
[DESCRIPTION]
The sum of IntArgs can now be computed similarly to the sum of
IntVarArgs.
[ENTRY]
Module: kernel
What: new
Rank: minor
Thanks: Kish Shen
[DESCRIPTION]
Activity information can now be initialized with a branch merit function.
[ENTRY]
Module: int
What: new
Rank: minor
Thanks: Kish Shen
[DESCRIPTION]
Activity information can now be initialized with a branch merit function.
[ENTRY]
Module: set
What: new
Rank: minor
Thanks: Kish Shen
[DESCRIPTION]
Activity information can now be initialized with a branch merit function.
[ENTRY]
Module: float
What: new
Rank: minor
Thanks: Kish Shen
[DESCRIPTION]
Activity information can now be initialized with a branch merit function.
[RELEASE]
Version: 4.2.0
Date: 2013-07-19
[DESCRIPTION]
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.
[ENTRY]
Module: iter
What: bug
Rank: minor
Thanks: Farshid Hassani Bijarbooneh, Joseph Scott
[DESCRIPTION]
Fixed segfault in NaryUnion iterator.
[ENTRY]
Module: kernel
What: new
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: search
What: removed
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: kernel
What: change
Rank: minor
Thanks: Kish Shen
[DESCRIPTION]
Low-level support for AFC is now public.
[ENTRY]
Module: search
What: new
Rank: minor
[DESCRIPTION]
Search options have an additional field nogoods_limit that
defines too which depth a search tree is inspected for no-goods.
[ENTRY]
Module: kernel
What: change
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: driver
What: new
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: search
What: new
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
[DESCRIPTION]
Added support for value_precede_int and value_precede_set constraints.
[ENTRY]
Module: flatzinc
What: bug
Rank: major
Thanks: Chris Mears
[DESCRIPTION]
Fixed a memory leak in FlatZincSpace and a few more in the FlatZinc
parser.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Chris Mears
[DESCRIPTION]
Fixed a bug in implicit search heuristic that could lead to a
segmentation fault when minimizing an array element.
[ENTRY]
Module: other
What: bug
Rank: minor
Thanks: Victor Zverovich
[DESCRIPTION]
Fixes link error for CMake with MSVC.
[RELEASE]
Version: 4.1.0
Date: 2013-07-01
[DESCRIPTION]
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).
[ENTRY]
Module: driver
What: bug
Rank: minor
Thanks: Vincent Barichard
[DESCRIPTION]
Fixed a race condition when using parallel search.
[ENTRY]
Module: set
What: bug
Rank: minor
[DESCRIPTION]
Fixed SET_VAR_ACTIVITY_SIZE_MIN/MAX, which used to compute
size/activity instead of activity/size.
[ENTRY]
Module: kernel
What: performance
Rank: minor
[DESCRIPTION]
Implement the AFC search heuristic using FastMutex, which greatly
improves parallel search performance on Mac OS X when using AFC.
[ENTRY]
Module: support
What: new
Rank: minor
[DESCRIPTION]
Added FastMutex class that is implemented using spin locks on
some platforms.
[ENTRY]
Module: int
What: bug
Rank: minor
Thanks: Victor Zverovich
[DESCRIPTION]
Fixed INT_VALUES_MAX() branching (INT_VALUES_MIN() was used instead).
[ENTRY]
Module: float
What: bug
Rank: minor
[DESCRIPTION]
Fixed FLOAT_VAR_ACTIVITY_SIZE_MIN/MAX, which used to compute
size/activity instead of activity/size.
[ENTRY]
Module: example
What: new
Rank: minor
Thanks: Stefano Gualandi
[DESCRIPTION]
Added LDSB-based symmetry breaking to graph coloring example.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Peter Nightingale
[DESCRIPTION]
Fixed printing of float variables to be compatible with MiniZinc output.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Peter Nightingale
[DESCRIPTION]
Fixed a segmentation fault when using FlatZinc with float variables
that have initializers.
[ENTRY]
Module: set
What: bug
Rank: major
Thanks: Stefano Gualandi
[DESCRIPTION]
Fixed crash due to combination of LDSB and Activity.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Stefano Gualandi
[DESCRIPTION]
Fixed crash due to combination of LDSB and Activity.
[ENTRY]
Module: int
What: bug
Rank: major
[DESCRIPTION]
The internal representation of integer variable domains could leak
memory to the space.
[ENTRY]
Module: flatzinc
What: new
Rank: major
[DESCRIPTION]
The FlatZinc interpreter now supports float variables as objective
functions.
[ENTRY]
Module: gist
What: new
Rank: major
[DESCRIPTION]
Gist now can show information on the alternatives in a search tree,
using the new menu options "Label branches" and "Label path".
[ENTRY]
Module: float
What: bug
Rank: minor
[DESCRIPTION]
Random value selection for float branchings was not declared with
the right types.
[ENTRY]
Module: set
What: new
Rank: major
[DESCRIPTION]
Set branchings now take an optional argument for a
user-defined print function. See MPG for details.
[ENTRY]
Module: float
What: new
Rank: major
[DESCRIPTION]
Float branchings now take an optional argument for a
user-defined print function. See MPG for details.
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Integer and Boolean branchings now take an optional argument for a
user-defined print function. See MPG for details.
[ENTRY]
Module: kernel
What: new
Rank: major
[DESCRIPTION]
Branchers now support a print() member function.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: minimodel
What: bug
Rank: minor
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Boolean expressions could lead to a segfault when initialized
with default constructor.
[ENTRY]
Module: kernel
What: new
Rank: minor
[DESCRIPTION]
Both AFC and Activity can be changed by a set() function.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Added if-then-else constraint (called ite) for integer variables.
[ENTRY]
Module: driver
What: new
Rank: minor
Thanks: Pascal Francq
[DESCRIPTION]
Added classes FloatMinimizeScript and FloatMaximizeScript for
cost-based optimization with a float cost variable.
[ENTRY]
Module: driver
What: change
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: int
What: change
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: float
What: new
Rank: minor
Thanks: Pascal Francq
[DESCRIPTION]
Added classes FloatMinimizeSpace and FloatMaximizeSpace for
cost-based optimization with a float cost variable.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
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).
[ENTRY]
Module: flatzinc
What: new
Rank: minor
Thanks: Tias Guns
[DESCRIPTION]
Added int2float constraint which was missing in the FlatZinc
interpreter.
[ENTRY]
Module: int
What: bug
Rank: minor
Thanks: David Rijsman
[DESCRIPTION]
Fixed binpacking crash when the b and s arrays are empty.
[ENTRY]
Module: other
What: change
Rank: minor
Thanks: Cliff Yapp
[DESCRIPTION]
CMake build system tweaked for out-of-source-dir building.
[ENTRY]
Module: float
What: bug
Rank: minor
Thanks: Duong Khanh Chuong
[DESCRIPTION]
Fixed missing propagation in reified rel-constraints.
[ENTRY]
Module: search
What: bug
Rank: major
Thanks: Chris Mears, Roberto Castañeda Lozano
[DESCRIPTION]
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.
[RELEASE]
Version: 4.0.0
Date: 2013-03-14
[DESCRIPTION]
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 \ref
PageHowToChange_4 "How to Change to Gecode 4.0.0".
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Renamed the FlatZinc executable to fzn-gecode, to better distinguish
it when installed alongside other FlatZinc implementations.
[ENTRY]
Module: int
What: new
Rank: major
Author: Christopher Mears
[DESCRIPTION]
Gecode now supports Lightweight Dynamic Symmetry Breaking (LDSB),
see MPG for details.
[ENTRY]
Module: set
What: new
Rank: major
Author: Christopher Mears
[DESCRIPTION]
Gecode now supports Lightweight Dynamic Symmetry Breaking (LDSB),
see MPG for details.
[ENTRY]
Module: int
What: new
Rank: major
Thanks: Manuel Loth
[DESCRIPTION]
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).
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Added domain constraint that constrains a variable (or an array)
according to the domain of another variable.
[ENTRY]
Module: set
What: new
Rank: minor
[DESCRIPTION]
Added domain constraint that constrains a variable (or an array)
according to the domain of another variable.
[ENTRY]
Module: set
What: new
Rank: minor
[DESCRIPTION]
Added domain constraints for arrays of set variables.
[ENTRY]
Module: kernel
What: change
Rank: minor
[DESCRIPTION]
The default constrain() function for best-solution search now
does by default nothing (it used to throw an exception).
[ENTRY]
Module: driver
What: new
Rank: major
[DESCRIPTION]
Added commandline options to control restart-based search, see
MPG for details.
[ENTRY]
Module: search
What: new
Rank: major
[DESCRIPTION]
Added support for restart-based search, see MPG for details.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
[DESCRIPTION]
Added support for more search annotations (defined in gecode.mzn), and for
the restart and decay command line options.
[ENTRY]
Module: other
What: new
Rank: minor
Thanks: Victor Zverovich
[DESCRIPTION]
Added CMake build script for Gecode (CMakeLists.txt).
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Added variants of dom that copy the domain from one variable to
another.
[ENTRY]
Module: driver
What: new
Rank: minor
[DESCRIPTION]
Decay values can now be passed on the command line using the
switch -decay.
[ENTRY]
Module: search
What: change
Rank: major
[DESCRIPTION]
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).
[MORE]
That looks like an annoying change but is in fact essential: the
strategies using accumulated failure count and activity now could
have run into division by zero issues. And just changing the
implementation is not good enough because the values of these
measures can now be exposed during tie-breaking.
[ENTRY]
Module: other
What: new
Rank: major
[DESCRIPTION]
Variable selection using AFC now supports decay. Read more in MPG.
[ENTRY]
Module: int
What: performance
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
The mzn-gecode shell script now passes arguments correctly to the
FlatZinc interpreter.
[ENTRY]
Module: other
What: change
Rank: minor
[DESCRIPTION]
Compiles with MSVC 2012.
[ENTRY]
Module: gist
What: change
Rank: minor
[DESCRIPTION]
Updated to compile with Qt version 5.0 (still works with Qt >= 4.3 as well).
[ENTRY]
Module: int
What: bug
Rank: minor
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Fixed precede constraint with less than two values.
[ENTRY]
Module: set
What: bug
Rank: minor
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Fixed precede constraint with less than two values.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
The nooverlap constraint now allows sharing of unassigned
variables in its argument arrays.
[ENTRY]
Module: set
What: new
Rank: major
[DESCRIPTION]
Added half-reification for reified constraints (see Modeling and
Programming with Gecode for details).
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Added half-reification for reified constraints (see Modeling and
Programming with Gecode for details).
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Simon Ekvy
[DESCRIPTION]
Removed spurious debug output for among constraint.
[ENTRY]
Module: int
What: bug
Rank: major
Thanks: Lin Yong
[DESCRIPTION]
Fixed a bug where bounds consistent distinct reported subsumption
instead of failure in certain cases.
[ENTRY]
Module: support
What: bug
Rank: minor
[DESCRIPTION]
Fixed a concurrency problem that caused an exception to be thrown at
the end of a multi-threaded search on some platforms.
[ENTRY]
Module: int
What: change
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: kernel
What: change
Rank: major
[DESCRIPTION]
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).
[ENTRY]
Module: int
What: change
Rank: minor
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Generalized definition of no-overlap propagators for better reuse.
[ENTRY]
Module: iter
What: documentation
Rank: minor
[DESCRIPTION]
Clarified for several iterators that when using the assignment
operator both iterators must be allocated from the very same
region.
[ENTRY]
Module: int
What: change
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: set
What: change
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: kernel
What: new
Rank: minor
[DESCRIPTION]
The random seeds for variable and value branching options can now
be initialized from a hardware random number generator (see MPG
for details).
[ENTRY]
Module: search
What: change
Rank: major
[DESCRIPTION]
The restart best solution search engine has been removed (it is
subsumed by the new restart-based meta search engine RBS).
[ENTRY]
Module: minimodel
What: new
Rank: minor
[DESCRIPTION]
Added pow and nroot expressions for integer variables.
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Added pow and nroot constraints.
[ENTRY]
Module: int
What: bug
Rank: minor
[DESCRIPTION]
Fixed potential rounding issues in sqr and sqrt constraints.
[ENTRY]
Module: search
What: performance
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: int
What: bug