forked from ddxter/gecode-dexter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.in
More file actions
executable file
·10504 lines (9220 loc) · 236 KB
/
changelog.in
File metadata and controls
executable file
·10504 lines (9220 loc) · 236 KB
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
#
# 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>
# Issue: <optional, for number from github>
# 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.3.0
Date: 2020-??-??
[DESCRIPTION]
Let's see.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
Allow par identifiers in var array initialisers.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Expose the full cumulatives scheduling constraint to MiniZinc.
[ENTRY]
Module: flatzinc
What: bug
Issue: 171
Rank: minor
[DESCRIPTION]
Correctly unshare variables for inverse constraint.
[ENTRY]
Module: flatzinc
What: bug
Issue: 170
Rank: minor
[DESCRIPTION]
Correctly unshare variables for div and mod constraints.
[ENTRY]
Module: flatzinc
What: bug
Issue: 169
Rank: minor
[DESCRIPTION]
Unshare variables for maximum_arg / minimum_arg constraints.
[ENTRY]
Module: int
What: bug
Issue: 167
Rank: minor
[DESCRIPTION]
Make extensional (compact-table) constraints check for duplicated variables.
Also fixes the FlatZinc interface to unshare arguments for extensional
constraints.
[ENTRY]
Module: support
What: change
Rank: major
[DESCRIPTION]
Replace platform-specific multithreading code with standard C++ threads.
[ENTRY]
Module: test
What: new
Rank: minor
[DESCRIPTION]
Add ability to add command line options to a FlatZinc test
[ENTRY]
Module: flatzinc
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add the implementation of the experimental "meta-search on restart" FlatZinc
feature. This features enforces search restrictions when the solver restarts,
allowing users to express many types of common meta-search operation. Examples
are (structured) large neighbourhood, lexicographic optimization, and pareto
front optimization.
[ENTRY]
Module: search
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add the reason for restarting to the MetaInfo object available when restarting.
[ENTRY]
Module: other
What: new
Rank: minor
Thanks: Jason Nguyen
[DESCRIPTION]
Set CMake policy for finding OpenGL to be compatible with application bundlers
on new systems.
[ENTRY]
Module: other
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add optional support for compiling gecode with MPFR using the CMake build
system.
[ENTRY]
Module: search
What: bug
Rank: minor
Thanks: Alexis LG
Issue: 156
[DESCRIPTION]
The parallel search engines could in some cases leak memory, when multiple
solutions are produced but not consumed. The fix clears the queue of solutions
on destruction.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
The FlatZinc decomposition of "int_pow" would use a zero default value for the
base even raised to a negative value, causing unsatisfiability. The fix
introduces a simpler decomposition that moves the default values for impossible
exponent values to the result.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
Thanks: Jason Nguyen
[DESCRIPTION]
Rewrite "int_pow_fixed" into "gecode_int_pow" rather than using the default
MiniZinc decomposition.
[ENTRY]
Module: other
What: bug
Rank: minor
Thanks: Joerg Strebel
Issue: 136
[DESCRIPTION]
Fix compilation without threads
[ENTRY]
Module: gist
What: change
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add support for building Gecode Gist with Qt6.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add support for disjunctive and cumulative on optional variables.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Generate MiniZinc solver configuration for the Gecode FlatZinc using Gist.
[ENTRY]
Module: search
What: new
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Add RestartStop class to enforce a limit on the amount of restarts conducted
in a search. RestartStop is included in CombinedStop and accessible from the
FlatZinc interface through the --restart-limit flag.
[ENTRY]
Module: int
What: bug
Rank: minor
Issue: 128
Thanks: Mattias Grönkvist
[DESCRIPTION]
Distinct propagation (as used by distinct, channel, and circuit) would
sometimes read from uninitialized memory.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
Thanks: Luis Quesada
[DESCRIPTION]
The gecode.mzn file now contains search annotation definitions for action
branching renamed from the previous erroneous and not working activity.
[ENTRY]
Module: other
What: change
Rank: major
[DESCRIPTION]
Gecode now requires C++ 11, the support for compiling without C++ 11
has been removed.
[ENTRY]
Module: kernel
What: change
Rank: minor
[DESCRIPTION]
Make the region pool thread local.
[MORE]
When running tests in parallel, having a shared pool for regions took too much
time on macOS. This change makes the pool into a thread_local instead.
[ENTRY]
Module: kernel
What: change
Rank: minor
[DESCRIPTION]
Use std::atomic for the global propagator identifier counter instead of guarding
using Support::Mutex.
[MORE]
Using a normal int and locking took too much time when running
tests in parallel on macOS.
[ENTRY]
Module: test
What: new
Rank: major
[DESCRIPTION]
Tests can now be run using multiple threads. Use the -threads n argument to
the test runner to run the tests using n threads. A value of 0 uses the number
of processing units to set the thread count.
Using 6 parallel threads, running the full test suite went from 4 hours 15 minutes
to 55 minutes on a 6-core machine. While not a perfect speed-up, it significantly
reduces the time to test Gecode.
[MORE]
Due to the high frequency of memory operations when running tests in parallel,
the system allocation on macOS has a hard time keeping up. To get full performance,
we recommend using another allocator, such as for example mimalloc.
Note also that logging and multiple threads for running tests do not work at the
same time.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Automatically generate and install a MiniZinc solver configuration and
install MiniZinc library into the share/minizinc/gecode standard location.
[ENTRY]
Module: int
What: new
Rank: minor
[DESCRIPTION]
Add versions of element constraints with offsets, to enable fast domain
consistent index set transformations.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Use element-with-offset and 2d element propagators instead of performing
index transformations in MiniZinc.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
Accept combined -cp-profiler flag for activating CP-Profiler and always
send information to profiler.
[ENTRY]
Module: driver
What: change
Rank: minor
[DESCRIPTION]
Accept combined -cp-profiler flag for activating CP-Profiler instead of
using separate script mode.
[ENTRY]
Module: test
What: bug
Rank: minor
[DESCRIPTION]
Fix testing for IntAction, BoolAction, SetAction, FloatAction with
merit functions.
[ENTRY]
Module: flatzinc
What: change
Issue: 77
Rank: minor
[DESCRIPTION]
Move parser.tab.hh to parser.tab.hpp, Bison's standard location. This
ensures that the generated implementation file is compatible with
Bison 3.7.
[ENTRY]
Module: flatzinc
What: bug
Issue: 61
Rank: minor
[DESCRIPTION]
Fix fzn_table_bool and fzn_table_bool_reif predicates, which had
incorrect types.
[ENTRY]
Module: other
What: change
Rank: minor
Issue: 63
Thanks: Markus Elfring
[DESCRIPTION]
Remove usages of reserved identifiers such as __GECODE_KERNEL_HH__ and
_View.
[MORE]
Gecode used to use include guards of the form __GECODE_KERNEL_HH__.
Using a double underscore in an identifier is reserved, and thus
undefined behaviour. Use guards of the form GECODE_KERNEL_HH instead.
Similarly, names with a single leading underscore followed by a
capital letter are also reserved, and usage is thus undefined
behaviour, and are removed.
[ENTRY]
Module: flatzinc
What: new
Rank: minor
[DESCRIPTION]
Add MiniZinc constraint names to FlatZinc errors when applicable and
available.
[MORE]
A constraint name is specified in MiniZinc using a string annotation
"my name" on the constraint item, and is translated into FlatZinc
using the mzn_constraint_name("my name").
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
The cumulative constraint now respects the semantics of the MiniZinc
definition for 0-duration tasks.
[ENTRY]
Module: flatzinc
What: bug
Rank: minor
[DESCRIPTION]
The roots and int_set_channel constraints now work for empty sets and arrays.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
The MiniZinc global constraint library has been updated for MiniZinc
version 2.3.0 and higher, taking advantage of the new library
structure that separates the modelling-level definition of a predicate
from the solver-level one.
[ENTRY]
Module: minimodel
What: change
Rank: minor
Thanks: Marco Correia
[DESCRIPTION]
Do not require that cost for FloatMinimizeSpace (use the maximum
instead) and FloatMaximizeSpace (use the minimum instead) must be
assigned.
[ENTRY]
Module: kernel
What: bug
Rank: minor
Thanks: Konstantin Popov
[DESCRIPTION]
Fixed crash when killing the last propagator in a space.
[ENTRY]
Module: example
What: bug
Rank: minor
Thanks: Florian Fontan
[DESCRIPTION]
Do not use size-based symmetry breaking together with CDBF.
[ENTRY]
Module: kernel
What: change
Rank: minor
Thanks: John W. Spirent
[DESCRIPTION]
Some small changes to compile with MSVC 2015 again.
[ENTRY]
Module: int
What: change
Rank: minor
Thanks: John W. Spirent
[DESCRIPTION]
Some small changes to compile with MSVC 2015 again.
[ENTRY]
Module: set
What: change
Rank: minor
Thanks: John W. Spirent
[DESCRIPTION]
Some small changes to compile with MSVC 2015 again.
[ENTRY]
Module: set
What: bug
Rank: minor
Thanks: Mats Carlsson
[DESCRIPTION]
Fix bool-set channel propagator to work correctly when posted
with a fixed set variable.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
Thanks: Jip J. Dekker
[DESCRIPTION]
Update the error produced by the FlatZinc parser when an integer
literal is outside Gecode's integer limits.
[ENTRY]
Module: flatzinc
What: change
Rank: minor
[DESCRIPTION]
The number of nodes and failures is now of type unsigned long
long int. Time is now consistently of type double.
[ENTRY]
Module: driver
What: change
Rank: minor
[DESCRIPTION]
The number of propagations, nodes, and failures is now of type
unsigned long long int. Time is now consistently of type double.
[ENTRY]
Module: search
What: change
Rank: minor
[DESCRIPTION]
The number of nodes and failures in statistics is now of type
unsigned long long int. Time is now consistently of type double.
[ENTRY]
Module: kernel
What: change
Rank: minor
[DESCRIPTION]
The number of propagations in statistics is now of type unsigned
long long int.
[ENTRY]
Module: search
What: bug
Rank: minor
[DESCRIPTION]
The linear cutoff generator started at zero rather than at the
scale factor.
[ENTRY]
Module: kernel
What: new
Rank: minor
[DESCRIPTION]
For action-based branching heuristics, one can now define whether
failure, propagation, or both should be considered.
[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]