forked from Gecode/gecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.in
executable file
·10019 lines (8789 loc) · 226 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 <[email protected]>
#
# Copyright:
# Christian Schulte, 2005
#
# 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|
# 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: 6.2.0
Date: 2019-04-12
[DESCRIPTION]
The release enables half-reification in FlatZinc, fixes
indeterminstic behavior for shared branching criteria, and fixes
several aspects for general tracers. It is recommended to upgrade
as soon as possible.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Enable support for half-reified constraints in the Gecode MiniZinc
library. Half-reified constraints are used when a MiniZinc
expression has to be reified and is detected to be in a positive
context. If no Half-reified constraint has been made available by
solver, the full reification will be used. Half-reifed constraints
in the MiniZinc solver library are declared in the same way as
reified constraints, but are appended by "_imp" instead of "_reif".
[ENTRY]
Module: kernel
What: bug
Rank: major
[DESCRIPTION]
For the combination of some constraints (min, max, nvalues, and
some constraints over Boolean variables) with shared variable
selection branching (that is, AFC, Action, and CHB) the behavior
of Gecode was indeterminstic. The indeterminism was based on
using memory addresses for determining the order of variables in
some propagators which in turn affected which propagator might
record failure first and hence influenced the branching decisions.
[ENTRY]
Module: int
What: bug
Rank: major
[DESCRIPTION]
For the combination of binpacking and linear constraints with
shared variable selection branching (that is, AFC, Action, and
CHB) the behavior of Gecode was indeterminstic. The indeterminism
was based on using memory addresses for determining the order of
variables which in turn affected which propagator might record
failure first and hence influenced the branching decisions.
[ENTRY]
Module: example
What: new
Rank: minor
[DESCRIPTION]
Added job-shop scheduling example.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Added order constraint for two unary scheduling tasks.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
[DESCRIPTION]
Support minimum_arg_bool and maximum_arg_bool constraints.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Use native offset calculation instead of additional constraints
for argmin/argmax constraints.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Add BoolVar versions of argmax and argmin.
[ENTRY]
Module: kernel
What: change
Rank: major
Thanks: Conrad Drescher
[DESCRIPTION]
The logic for recording events for general tracers was seriously
broken as events after a call to status() have been ignored.
[ENTRY]
Module: float
What: bug
Rank: minor
Thanks: Kurt Van Den Branden
[DESCRIPTION]
Restore floating point rounding mode under Windows.
[ENTRY]
Module: kernel
What: change
Rank: minor
Thanks: Conrad Drescher
[DESCRIPTION]
Added TE_POST for default arguments for general tracers.
[ENTRY]
Module: search
What: removed
Rank: minor
[DESCRIPTION]
The special constructors for PBS with up to four SEB's have been
removed. Use the SEBs class instead.
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Variables to be assigned during search can now be selected with
all available selection criteria available for branching.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Omitting the variable selection criterion is equivalent to
INT_VAR_NONE().
[ENTRY]
Module: set
What: new
Rank: major
[DESCRIPTION]
Variables to be assigned during search can now be selected with
all available selection criteria available for branching.
[ENTRY]
Module: set
What: new
Rank: minor
[DESCRIPTION]
Omitting the variable selection criterion is equivalent to
SET_VAR_NONE().
[ENTRY]
Module: float
What: new
Rank: major
[DESCRIPTION]
Variables to be assigned during search can now be selected with
all available selection criteria available for branching.
[ENTRY]
Module: float
What: new
Rank: minor
[DESCRIPTION]
Omitting the variable selection criterion is equivalent to
FLOAT_VAR_NONE().
[RELEASE]
Version: 6.1.1
Date: 2019-02-14
[DESCRIPTION]
This release fixes a number of minor issues and adds post events
to general tracers.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
Change table and regular predicates to take 1d arrays as arguments.
Otherwise the generated FlatZinc does not typecheck.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
Add colon to statistics output to conform with FlatZinc specification.
[ENTRY]
Module: kernel
What: bug
Rank: minor
Thanks: Conrad Drescher
[DESCRIPTION]
Use locks to guard mutexes in case tracers throw exceptions.
[ENTRY]
Module: search
What: bug
Rank: minor
Thanks: Conrad Drescher
[DESCRIPTION]
Use locks to guard mutexes in case tracers throw exceptions.
[ENTRY]
Module: minimodel
What: bug
Rank: minor
Thanks: Conrad Drescher
[DESCRIPTION]
exp(0.0) now correctly evaluates to 1.0 (and not 0.0).
[ENTRY]
Module: int
What: changed
Rank: minor
Thanks: Jens Krueger
[DESCRIPTION]
All constructors and the bool test operator of IntSet have been
made explicit to avoid unintended behavior.
[ENTRY]
Module: other
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Added installation target to the CMake configuration.
[ENTRY]
Module: other
What: change
Rank: minor
[DESCRIPTION]
Fix compilation problems with the Microsoft Visual Studio IDE
which uses -permissive- as default, rather than -permissive as
cl.exe does.
[ENTRY]
Module: kernel
What: new
Rank: major
[DESCRIPTION]
General tracers now support post events, see MPG for details.
[ENTRY]
Module: other
What: change
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
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.
[ENTRY]
Module: example
What: new
Rank: minor
Author: Samuel Gagnon
[DESCRIPTION]
Added example for magic squares with pre-filled instances.
[ENTRY]
Module: kernel
What: bug
Rank: minor
Author: Conrad Drescher, Patrick Zimmer
[DESCRIPTION]
Fixed potential deadlock when memory has been exhausted.
[RELEASE]
Version: 6.1.0
Date: 2018-10-17
[DESCRIPTION]
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!
[ENTRY]
Module: search
What: change
Rank: minor
[DESCRIPTION]
Support for the CPProfiler is now enabled by default.
[ENTRY]
Module: int
What: change
Rank: minor
Thanks: Sara Frimodig
[DESCRIPTION]
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.
[ENTRY]
Module: minimodel
What: bug
Rank: minor
Thanks: Matthias Balzer
[DESCRIPTION]
Take exponent into account for float expressions with pow
and nroot.
[ENTRY]
Module: kernel
What: change
Rank: minor
Thanks: Rui Machado, Jens Krüger
[DESCRIPTION]
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.
[ENTRY]
Module: flatzinc
What: new
Rank: major
[DESCRIPTION]
Added native support for reified extensional table constraints.
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Added support for reified extensional table constraints.
[ENTRY]
Module: int
What: new
Rank: major
[DESCRIPTION]
Added support for negative table for extensional table
constraints.
[ENTRY]
Module: int
What: bug
Rank: major
[DESCRIPTION]
Fixed scheduling for Boolean variables (funnily, only occured
with a newly added propagator).
[ENTRY]
Module: kernel
What: bug
Rank: minor
[DESCRIPTION]
Added missing definitions for declarations of creating Home
objects from spaces with propagator and brancher groups.
[ENTRY]
Module: int
What: new
Rank: major
Author: Samuel Gagnon
[DESCRIPTION]
Added experimental support for counting-based search. It can be
enabled by running configure with --enable-cbs. See
examples/qcp.cpp for an example.
[ENTRY]
Module: minimodel
What: bug
Rank: major
Thanks: Robin Eklind
[DESCRIPTION]
Fixed fall through bug for set expressions.
[ENTRY]
Module: int
What: performance
Rank: minor
[DESCRIPTION]
Improved performance of tuple-set extensional constraints by
maybe 15-20% through reordering loops.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Add -t command line option to fzn-gecode, to support new unified
time limit command line option for FlatZinc solvers.
[ENTRY]
Module: kernel
What: change
Rank: major
[DESCRIPTION]
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)).
[ENTRY]
Module: kernel
What: removed
Rank: major
[DESCRIPTION]
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().
[ENTRY]
Module: int
What: removed
Rank: major
[DESCRIPTION]
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().
[ENTRY]
Module: set
What: removed
Rank: major
[DESCRIPTION]
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().
[ENTRY]
Module: float
What: removed
Rank: major
[DESCRIPTION]
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().
[ENTRY]
Module: kernel
What: change
Rank: major
[DESCRIPTION]
Views now are compared by the standard C++ operators "==", "!=",
and "<" (this replaces the same and before functions).
[ENTRY]
Module: int
What: change
Rank: major
[DESCRIPTION]
Views now are compared by the standard C++ operators "==", "!=",
and "<" (this replaces the same and before functions).
[ENTRY]
Module: set
What: change
Rank: major
[DESCRIPTION]
Views now are compared by the standard C++ operators "==", "!=",
and "<" (this replaces the same and before functions).
[ENTRY]
Module: float
What: change
Rank: major
[DESCRIPTION]
Views now are compared by the standard C++ operators "==", "!=",
and "<" (this replaces the same and before functions).
[ENTRY]
Module: kernel
What: bug
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: int
What: change
Rank: major
[DESCRIPTION]
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).
[ENTRY]
Module: int
What: change
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
DFAs now support standard initializer lists.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
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}})).
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Integer and Boolean variable argument arrays now support standard
initializer lists.
[ENTRY]
Module: set
What: new
Rank: minor
[DESCRIPTION]
Set variable argument arrays now support standard initializer
lists.
[ENTRY]
Module: float
What: new
Rank: minor
[DESCRIPTION]
Float variable argument arrays now support standard initializer
lists.
[ENTRY]
Module: search
What: change
Rank: major
[DESCRIPTION]
SEBs now support standard initializer lists but do not any
longer support variable argument lists (as the combination is
really confusing).
[RELEASE]
Version: 6.0.1
Date: 2018-05-21
[DESCRIPTION]
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).
[ENTRY]
Module: float
What: change
Rank: major
Thanks: Kurt Van Den Branden
[DESCRIPTION]
All constraints over float variables now constrain their
variables when being posted to avoid overflow.
[ENTRY]
Module: float
What: change
Rank: minor
[DESCRIPTION]
The interval for a float value is now printed between "[" and
"]", whereas the interval for a float variable is printed between
"[[" and "]]".
[ENTRY]
Module: float
What: bug
Rank: minor
[DESCRIPTION]
Float values could not be printed.
[ENTRY]
Module: minimodel
What: bug
Rank: minor
Thanks: Matthias Balzer
[DESCRIPTION]
Fixed strict inequalities for Float relations.
[ENTRY]
Module: support
What: bug
Rank: minor
Thanks: Kari Pahula
[DESCRIPTION]
Fixed compilation problem on 32 bit platforms.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Fixed the initialisation of the random number generator for the
FlatZinc executable. This fix ensures the generator is always
initialised.
[ENTRY]
Module: support
What: change
Rank: minor
[DESCRIPTION]
Detect is os_unfair_lock is available at runtime, in order to be able
to support older versions of macOS in the same binaries.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Add support for annotations to control restart strategy.
[RELEASE]
Version: 6.0.0
Date: 2018-02-23
[DESCRIPTION]
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
\ref PageHowToChange_6 "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.
[ENTRY]
Module: search
What: bug
Rank: minor
[DESCRIPTION]
The statistics for parallel search engines was wrong.
[ENTRY]
Module: search
What: bug
Rank: major
[DESCRIPTION]
Fixed several race conditions during the termination of parallel
search engines.
[ENTRY]
Module: support
What: change
Rank: minor
[DESCRIPTION]
Replace deprecated OSSpinLock with os_unfair_lock on newer versions
of macOS.
[ENTRY]
Module: search
What: bug
Rank: major
[DESCRIPTION]
A sequential portfolio ignored stop objects in certain cases.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Share tables for extensional (table) constraints, DFAs for regular
constraints, and arrays of constants for element constraints.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Change default propagation level to bounds propagation for global
cardinality constraints.
[ENTRY]
Module: support
What: change
Rank: minor
[DESCRIPTION]
Bitsets now use 64 bit integers on all 64 bit architectures.
[ENTRY]
Module: search
What: new
Rank: major
Author: Kevin Leo, Maxim Shishmarev
[DESCRIPTION]
Added experimental support for the CPProfiler, see MPG for
details. This is only enabled, if Gecode has been configured with
the option --enable-cpprofiler.
[ENTRY]
Module: driver
What: new
Rank: major
[DESCRIPTION]
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.
[ENTRY]
Module: driver
What: change
Rank: major
[DESCRIPTION]
No hyphen must be given for a command line switch and both "-"
and "--" are automatically added.
[ENTRY]
Module: int
What: change
Rank: minor
[DESCRIPTION]
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.
[ENTRY]
Module: float
What: bug
Rank: minor
Thanks: Matthias Balzer
[DESCRIPTION]
Linear constraints now check whether constant coefficients have
mixed signs (include zero) and throw an exception if yes.
[ENTRY]
Module: float
What: bug
Rank: major
Thanks: Matthias Balzer
[DESCRIPTION]
Linear constraints now check properly for numerical overflow.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Add redefinition of disjunctive_strict in terms of cumulative.
[ENTRY]
Module: driver
What: new
Rank: major
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Added IntLexMinimizeScript and IntLexMaximizeScript for
lexicographic optimization.
[ENTRY]
Module: minimodel
What: new
Rank: major
Thanks: Roberto Castañeda Lozano
[DESCRIPTION]
Added IntLexMinimizeSpace and IntLexMaximizeSpace for
lexicographic optimization.
[ENTRY]
Module: driver
What: removed
Rank: minor
[DESCRIPTION]
Removed the deprecated classes MinimizeScript and MaximizeScript
(use IntMinimizeScript and IntMaximizeScript instead).
[ENTRY]
Module: minimodel
What: removed
Rank: minor
[DESCRIPTION]
Removed the deprecated classes MinimizeSpace and MaximizeSpace
(use IntMinimizeSpace and IntMaximizeSpace instead).
[ENTRY]
Module: int
What: new
Rank: major
Author: Linnea Ingmar
[DESCRIPTION]
Tuple sets can be initialized from DFAs (and hence regular
expressions).
[ENTRY]
Module: int
What: bug
Rank: minor
Thanks: Peter Stuckey
[DESCRIPTION]
Perform unsharing even in failed spaces to avoid exceptions in
later constraint posting.
[ENTRY]
Module: minimodel
What: new
Rank: major
Author: Matthias Balzer
[DESCRIPTION]
Added reified dom-expressions.
[ENTRY]
Module: minimodel
What: new
Rank: major
Author: Matthias Balzer
[DESCRIPTION]
Added relations between integer and set expressions.
[ENTRY]
Module: flatzinc
What: bug
Rank: major
Thanks: Andreas Schutt
[DESCRIPTION]
Fix syntax errors in definitions of global cardinality predicates.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Make mzn-gecode script use mzn-fzn if minizinc driver is not present.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
Thanks: Andreas Schutt
[DESCRIPTION]
Add support for int_pow predicate.
[ENTRY]
Module: int
What: change
Rank: minor
[DESCRIPTION]
Changed accuracy of delta information for integer views (now, all
values between new and old lower/upper bound are reported as
being discarded).
[ENTRY]
Module: int
What: bug
Rank: minor
[DESCRIPTION]
Tuple sets used for Boolean variables are allowed to contain only
zeros and ones as values.
[ENTRY]
Module: int
What: removed
Rank: major
[DESCRIPTION]
Removed IPL_SPEED and IPL_MEMORY as they are not any longer needed.
[ENTRY]
Module: int
What: change
Rank: major
[DESCRIPTION]
Re-implemented tuple sets for simplicity and ease of use. Please
see MPG for details.
[ENTRY]
Module: int
What: change
Rank: major
Author: Linnea Ingmar
[DESCRIPTION]
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.
[ENTRY]
Module: kernel
What: bug
Rank: major
[DESCRIPTION]
Fixed virtual method table overwrite bug for Action and CHB.
[ENTRY]
Module: search
What: bug
Rank: major
[DESCRIPTION]
Fixed double deletion bug in parallel portfolio-based search.
[ENTRY]
Module: int
What: bug
Rank: minor
Thanks: Massimo Morara
[DESCRIPTION]
Fixed printing of group information for tracing.
[ENTRY]
Module: float
What: bug
Rank: minor
Thanks: Massimo Morara
[DESCRIPTION]
Fixed printing of group information for tracing.
[ENTRY]
Module: set
What: bug
Rank: minor
Thanks: Massimo Morara
[DESCRIPTION]
Fixed printing of group information for tracing.
[ENTRY]
Module: kernel
What: new
Rank: minor
[DESCRIPTION]
Now it can be controlled by an Boolean argument whether AFC
information between spaces is shared or not.
[ENTRY]