forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sched_search.cc
884 lines (794 loc) · 28.4 KB
/
sched_search.cc
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
// Copyright 2010-2022 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <algorithm>
#include <cstdint>
#include <cstring>
#include <limits>
#include <string>
#include <vector>
#include "absl/strings/str_format.h"
#include "ortools/base/integral_types.h"
#include "ortools/base/logging.h"
#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/constraint_solveri.h"
#include "ortools/util/string_array.h"
namespace operations_research {
namespace {
int64_t ValueToIndex(int64_t value) { return value - 1; }
int64_t IndexToValue(int64_t index) { return index + 1; }
} // namespace
// ----- SequenceVar -----
// TODO(user): Add better class invariants, in particular checks
// that ranked_first, ranked_last, and unperformed are truly disjoint.
SequenceVar::SequenceVar(Solver* const s,
const std::vector<IntervalVar*>& intervals,
const std::vector<IntVar*>& nexts,
const std::string& name)
: PropagationBaseObject(s),
intervals_(intervals),
nexts_(nexts),
previous_(nexts.size() + 1, -1) {
set_name(name);
}
SequenceVar::~SequenceVar() {}
IntervalVar* SequenceVar::Interval(int index) const {
return intervals_[index];
}
IntVar* SequenceVar::Next(int index) const { return nexts_[index]; }
std::string SequenceVar::DebugString() const {
int64_t hmin, hmax, dmin, dmax;
HorizonRange(&hmin, &hmax);
DurationRange(&dmin, &dmax);
int unperformed = 0;
int ranked = 0;
int not_ranked = 0;
ComputeStatistics(&ranked, ¬_ranked, &unperformed);
return absl::StrFormat(
"%s(horizon = %d..%d, duration = %d..%d, not ranked = %d, ranked = %d, "
"nexts = [%s])",
name(), hmin, hmax, dmin, dmax, not_ranked, ranked,
JoinDebugStringPtr(nexts_, ", "));
}
void SequenceVar::Accept(ModelVisitor* const visitor) const {
visitor->VisitSequenceVariable(this);
}
void SequenceVar::DurationRange(int64_t* const dmin,
int64_t* const dmax) const {
int64_t dur_min = 0;
int64_t dur_max = 0;
for (int i = 0; i < intervals_.size(); ++i) {
IntervalVar* const t = intervals_[i];
if (t->MayBePerformed()) {
if (t->MustBePerformed()) {
dur_min += t->DurationMin();
}
dur_max += t->DurationMax();
}
}
*dmin = dur_min;
*dmax = dur_max;
}
void SequenceVar::HorizonRange(int64_t* const hmin, int64_t* const hmax) const {
int64_t hor_min = std::numeric_limits<int64_t>::max();
int64_t hor_max = std::numeric_limits<int64_t>::min();
for (int i = 0; i < intervals_.size(); ++i) {
IntervalVar* const t = intervals_[i];
if (t->MayBePerformed()) {
IntervalVar* const t = intervals_[i];
hor_min = std::min(hor_min, t->StartMin());
hor_max = std::max(hor_max, t->EndMax());
}
}
*hmin = hor_min;
*hmax = hor_max;
}
void SequenceVar::ActiveHorizonRange(int64_t* const hmin,
int64_t* const hmax) const {
absl::flat_hash_set<int> decided;
for (int i = 0; i < intervals_.size(); ++i) {
if (intervals_[i]->CannotBePerformed()) {
decided.insert(i);
}
}
int first = 0;
while (nexts_[first]->Bound()) {
first = nexts_[first]->Min();
if (first < nexts_.size()) {
decided.insert(ValueToIndex(first));
} else {
break;
}
}
if (first != nexts_.size()) {
UpdatePrevious();
int last = nexts_.size();
while (previous_[last] != -1) {
last = previous_[last];
decided.insert(ValueToIndex(last));
}
}
int64_t hor_min = std::numeric_limits<int64_t>::max();
int64_t hor_max = std::numeric_limits<int64_t>::min();
for (int i = 0; i < intervals_.size(); ++i) {
if (!decided.contains(i)) {
IntervalVar* const t = intervals_[i];
hor_min = std::min(hor_min, t->StartMin());
hor_max = std::max(hor_max, t->EndMax());
}
}
*hmin = hor_min;
*hmax = hor_max;
}
void SequenceVar::ComputeStatistics(int* const ranked, int* const not_ranked,
int* const unperformed) const {
*unperformed = 0;
for (int i = 0; i < intervals_.size(); ++i) {
if (intervals_[i]->CannotBePerformed()) {
(*unperformed)++;
}
}
*ranked = 0;
int first = 0;
while (first < nexts_.size() && nexts_[first]->Bound()) {
first = nexts_[first]->Min();
(*ranked)++;
}
if (first != nexts_.size()) {
UpdatePrevious();
int last = nexts_.size();
while (previous_[last] != -1) {
last = previous_[last];
(*ranked)++;
}
} else { // We counted the sentinel.
(*ranked)--;
}
*not_ranked = intervals_.size() - *ranked - *unperformed;
}
int SequenceVar::ComputeForwardFrontier() {
int first = 0;
while (first != nexts_.size() && nexts_[first]->Bound()) {
first = nexts_[first]->Min();
}
return first;
}
int SequenceVar::ComputeBackwardFrontier() {
UpdatePrevious();
int last = nexts_.size();
while (previous_[last] != -1) {
last = previous_[last];
}
return last;
}
void SequenceVar::ComputePossibleFirstsAndLasts(
std::vector<int>* const possible_firsts,
std::vector<int>* const possible_lasts) {
possible_firsts->clear();
possible_lasts->clear();
absl::flat_hash_set<int> to_check;
for (int i = 0; i < intervals_.size(); ++i) {
if (intervals_[i]->MayBePerformed()) {
to_check.insert(i);
}
}
int first = 0;
while (nexts_[first]->Bound()) {
first = nexts_[first]->Min();
if (first == nexts_.size()) {
return;
}
to_check.erase(ValueToIndex(first));
}
IntVar* const forward_var = nexts_[first];
std::vector<int> candidates;
int64_t smallest_start_max = std::numeric_limits<int64_t>::max();
int ssm_support = -1;
for (int64_t i = forward_var->Min(); i <= forward_var->Max(); ++i) {
// TODO(user): use domain iterator.
if (i != 0 && i < IndexToValue(intervals_.size()) &&
intervals_[ValueToIndex(i)]->MayBePerformed() &&
forward_var->Contains(i)) {
const int candidate = ValueToIndex(i);
candidates.push_back(candidate);
if (intervals_[candidate]->MustBePerformed()) {
if (smallest_start_max > intervals_[candidate]->StartMax()) {
smallest_start_max = intervals_[candidate]->StartMax();
ssm_support = candidate;
}
}
}
}
for (int i = 0; i < candidates.size(); ++i) {
const int candidate = candidates[i];
if (candidate == ssm_support ||
intervals_[candidate]->EndMin() <= smallest_start_max) {
possible_firsts->push_back(candidate);
}
}
UpdatePrevious();
int last = nexts_.size();
while (previous_[last] != -1) {
last = previous_[last];
to_check.erase(ValueToIndex(last));
}
candidates.clear();
int64_t biggest_end_min = std::numeric_limits<int64_t>::min();
int bem_support = -1;
for (const int candidate : to_check) {
if (nexts_[IndexToValue(candidate)]->Contains(last)) {
candidates.push_back(candidate);
if (intervals_[candidate]->MustBePerformed()) {
if (biggest_end_min < intervals_[candidate]->EndMin()) {
biggest_end_min = intervals_[candidate]->EndMin();
bem_support = candidate;
}
}
}
}
for (int i = 0; i < candidates.size(); ++i) {
const int candidate = candidates[i];
if (candidate == bem_support ||
intervals_[candidate]->StartMax() >= biggest_end_min) {
possible_lasts->push_back(candidate);
}
}
}
void SequenceVar::RankSequence(const std::vector<int>& rank_first,
const std::vector<int>& rank_last,
const std::vector<int>& unperformed) {
solver()->GetPropagationMonitor()->RankSequence(this, rank_first, rank_last,
unperformed);
// Mark unperformed.
for (const int value : unperformed) {
intervals_[value]->SetPerformed(false);
}
// Forward.
int forward = 0;
for (int i = 0; i < rank_first.size(); ++i) {
const int next = 1 + rank_first[i];
nexts_[forward]->SetValue(next);
forward = next;
}
// Backward.
int backward = IndexToValue(intervals_.size());
for (int i = 0; i < rank_last.size(); ++i) {
const int next = 1 + rank_last[i];
nexts_[next]->SetValue(backward);
backward = next;
}
}
void SequenceVar::RankFirst(int index) {
solver()->GetPropagationMonitor()->RankFirst(this, index);
intervals_[index]->SetPerformed(true);
int forward_frontier = 0;
while (forward_frontier != nexts_.size() &&
nexts_[forward_frontier]->Bound()) {
forward_frontier = nexts_[forward_frontier]->Min();
if (forward_frontier == IndexToValue(index)) {
return;
}
}
DCHECK_LT(forward_frontier, nexts_.size());
nexts_[forward_frontier]->SetValue(IndexToValue(index));
}
void SequenceVar::RankNotFirst(int index) {
solver()->GetPropagationMonitor()->RankNotFirst(this, index);
const int forward_frontier = ComputeForwardFrontier();
if (forward_frontier < nexts_.size()) {
nexts_[forward_frontier]->RemoveValue(IndexToValue(index));
}
}
void SequenceVar::RankLast(int index) {
solver()->GetPropagationMonitor()->RankLast(this, index);
intervals_[index]->SetPerformed(true);
UpdatePrevious();
int backward_frontier = nexts_.size();
while (previous_[backward_frontier] != -1) {
backward_frontier = previous_[backward_frontier];
if (backward_frontier == IndexToValue(index)) {
return;
}
}
DCHECK_NE(backward_frontier, 0);
nexts_[IndexToValue(index)]->SetValue(backward_frontier);
}
void SequenceVar::RankNotLast(int index) {
solver()->GetPropagationMonitor()->RankNotLast(this, index);
const int backward_frontier = ComputeBackwardFrontier();
nexts_[IndexToValue(index)]->RemoveValue(backward_frontier);
}
void SequenceVar::UpdatePrevious() const {
for (int i = 0; i < intervals_.size() + 2; ++i) {
previous_[i] = -1;
}
for (int i = 0; i < nexts_.size(); ++i) {
if (nexts_[i]->Bound()) {
previous_[nexts_[i]->Min()] = i;
}
}
}
void SequenceVar::FillSequence(std::vector<int>* const rank_first,
std::vector<int>* const rank_last,
std::vector<int>* const unperformed) const {
CHECK(rank_first != nullptr);
CHECK(rank_last != nullptr);
CHECK(unperformed != nullptr);
rank_first->clear();
rank_last->clear();
unperformed->clear();
for (int i = 0; i < intervals_.size(); ++i) {
if (intervals_[i]->CannotBePerformed()) {
unperformed->push_back(i);
}
}
int first = 0;
while (nexts_[first]->Bound()) {
first = nexts_[first]->Min();
if (first < nexts_.size()) {
rank_first->push_back(ValueToIndex(first));
} else {
break;
}
}
if (first != nexts_.size()) {
UpdatePrevious();
int last = nexts_.size();
while (previous_[last] != -1) {
last = previous_[last];
rank_last->push_back(ValueToIndex(last));
}
}
}
// ----- Decisions and DecisionBuilders on interval vars -----
// TODO(user) : treat optional intervals
// TODO(user) : Call DecisionVisitor and pass name of variable
namespace {
//
// Forward scheduling.
//
class ScheduleOrPostpone : public Decision {
public:
ScheduleOrPostpone(IntervalVar* const var, int64_t est, int64_t* const marker)
: var_(var), est_(est), marker_(marker) {}
~ScheduleOrPostpone() override {}
void Apply(Solver* const s) override {
var_->SetPerformed(true);
if (est_.Value() < var_->StartMin()) {
est_.SetValue(s, var_->StartMin());
}
var_->SetStartRange(est_.Value(), est_.Value());
}
void Refute(Solver* const s) override {
s->SaveAndSetValue(marker_, est_.Value());
}
void Accept(DecisionVisitor* const visitor) const override {
CHECK(visitor != nullptr);
visitor->VisitScheduleOrPostpone(var_, est_.Value());
}
std::string DebugString() const override {
return absl::StrFormat("ScheduleOrPostpone(%s at %d)", var_->DebugString(),
est_.Value());
}
private:
IntervalVar* const var_;
NumericalRev<int64_t> est_;
int64_t* const marker_;
};
class SetTimesForward : public DecisionBuilder {
public:
explicit SetTimesForward(const std::vector<IntervalVar*>& vars)
: vars_(vars),
markers_(vars.size(), std::numeric_limits<int64_t>::min()) {}
~SetTimesForward() override {}
Decision* Next(Solver* const s) override {
int64_t best_est = std::numeric_limits<int64_t>::max();
int64_t best_lct = std::numeric_limits<int64_t>::max();
int support = -1;
// We are looking for the interval that has the smallest start min
// (tie break with smallest end max) and is not postponed. And
// you're going to schedule that interval at its start min.
for (int i = 0; i < vars_.size(); ++i) {
IntervalVar* const v = vars_[i];
if (v->MayBePerformed() && v->StartMax() != v->StartMin() &&
!IsPostponed(i) &&
(v->StartMin() < best_est ||
(v->StartMin() == best_est && v->EndMax() < best_lct))) {
best_est = v->StartMin();
best_lct = v->EndMax();
support = i;
}
}
// TODO(user) : remove this crude quadratic loop with
// reversibles range reduction.
if (support == -1) { // All intervals are either fixed or postponed.
UnperformPostponedTaskBefore(std::numeric_limits<int64_t>::max());
return nullptr;
}
UnperformPostponedTaskBefore(best_est);
return s->RevAlloc(
new ScheduleOrPostpone(vars_[support], best_est, &markers_[support]));
}
std::string DebugString() const override { return "SetTimesForward()"; }
void Accept(ModelVisitor* const visitor) const override {
visitor->BeginVisitExtension(ModelVisitor::kVariableGroupExtension);
visitor->VisitIntervalArrayArgument(ModelVisitor::kIntervalsArgument,
vars_);
visitor->EndVisitExtension(ModelVisitor::kVariableGroupExtension);
}
private:
bool IsPostponed(int index) {
DCHECK(vars_[index]->MayBePerformed());
return vars_[index]->StartMin() <= markers_[index];
}
void UnperformPostponedTaskBefore(int64_t date) {
for (int i = 0; i < vars_.size(); ++i) {
IntervalVar* const v = vars_[i];
if (v->MayBePerformed() && v->StartMin() != v->StartMax() &&
IsPostponed(i) &&
// There are two rules here:
// - v->StartMax() <= date: the interval should have been scheduled
// as it cannot be scheduled later (assignment is chronological).
// - v->EndMin() <= date: The interval can fit before the current
// start date. In that case, it 'should' always fit, and as it has
// not be scheduled, then we are missing it. So, as a dominance
// rule, it should be marked as unperformed.
(v->EndMin() <= date || v->StartMax() <= date)) {
v->SetPerformed(false);
}
}
}
const std::vector<IntervalVar*> vars_;
std::vector<int64_t> markers_;
};
//
// Backward scheduling.
//
class ScheduleOrExpedite : public Decision {
public:
ScheduleOrExpedite(IntervalVar* const var, int64_t est, int64_t* const marker)
: var_(var), est_(est), marker_(marker) {}
~ScheduleOrExpedite() override {}
void Apply(Solver* const s) override {
var_->SetPerformed(true);
if (est_.Value() > var_->EndMax()) {
est_.SetValue(s, var_->EndMax());
}
var_->SetEndRange(est_.Value(), est_.Value());
}
void Refute(Solver* const s) override {
s->SaveAndSetValue(marker_, est_.Value() - 1);
}
void Accept(DecisionVisitor* const visitor) const override {
CHECK(visitor != nullptr);
visitor->VisitScheduleOrExpedite(var_, est_.Value());
}
std::string DebugString() const override {
return absl::StrFormat("ScheduleOrExpedite(%s at %d)", var_->DebugString(),
est_.Value());
}
private:
IntervalVar* const var_;
NumericalRev<int64_t> est_;
int64_t* const marker_;
};
class SetTimesBackward : public DecisionBuilder {
public:
explicit SetTimesBackward(const std::vector<IntervalVar*>& vars)
: vars_(vars),
markers_(vars.size(), std::numeric_limits<int64_t>::max()) {}
~SetTimesBackward() override {}
Decision* Next(Solver* const s) override {
int64_t best_end = std::numeric_limits<int64_t>::min();
int64_t best_start = std::numeric_limits<int64_t>::min();
int support = -1;
int refuted = 0;
for (int i = 0; i < vars_.size(); ++i) {
IntervalVar* const v = vars_[i];
if (v->MayBePerformed() && v->EndMax() > v->EndMin()) {
if (v->EndMax() <= markers_[i] &&
(v->EndMax() > best_end ||
(v->EndMax() == best_end && v->StartMin() > best_start))) {
best_end = v->EndMax();
best_start = v->StartMin();
support = i;
} else {
refuted++;
}
}
}
// TODO(user) : remove this crude quadratic loop with
// reversibles range reduction.
if (support == -1) {
if (refuted == 0) {
return nullptr;
} else {
s->Fail();
}
}
return s->RevAlloc(new ScheduleOrExpedite(
vars_[support], vars_[support]->EndMax(), &markers_[support]));
}
std::string DebugString() const override { return "SetTimesBackward()"; }
void Accept(ModelVisitor* const visitor) const override {
visitor->BeginVisitExtension(ModelVisitor::kVariableGroupExtension);
visitor->VisitIntervalArrayArgument(ModelVisitor::kIntervalsArgument,
vars_);
visitor->EndVisitExtension(ModelVisitor::kVariableGroupExtension);
}
private:
const std::vector<IntervalVar*> vars_;
std::vector<int64_t> markers_;
};
// ----- Decisions and DecisionBuilders on sequences -----
class RankFirst : public Decision {
public:
RankFirst(SequenceVar* const seq, int index)
: sequence_(seq), index_(index) {}
~RankFirst() override {}
void Apply(Solver* const s) override { sequence_->RankFirst(index_); }
void Refute(Solver* const s) override { sequence_->RankNotFirst(index_); }
void Accept(DecisionVisitor* const visitor) const override {
CHECK(visitor != nullptr);
visitor->VisitRankFirstInterval(sequence_, index_);
}
std::string DebugString() const override {
return absl::StrFormat("RankFirst(%s, %d)", sequence_->DebugString(),
index_);
}
private:
SequenceVar* const sequence_;
const int index_;
};
class RankLast : public Decision {
public:
RankLast(SequenceVar* const seq, int index) : sequence_(seq), index_(index) {}
~RankLast() override {}
void Apply(Solver* const s) override { sequence_->RankLast(index_); }
void Refute(Solver* const s) override { sequence_->RankNotLast(index_); }
void Accept(DecisionVisitor* const visitor) const override {
CHECK(visitor != nullptr);
visitor->VisitRankLastInterval(sequence_, index_);
}
std::string DebugString() const override {
return absl::StrFormat("RankLast(%s, %d)", sequence_->DebugString(),
index_);
}
private:
SequenceVar* const sequence_;
const int index_;
};
class RankFirstIntervalVars : public DecisionBuilder {
public:
RankFirstIntervalVars(const std::vector<SequenceVar*>& sequences,
Solver::SequenceStrategy str)
: sequences_(sequences), strategy_(str) {}
~RankFirstIntervalVars() override {}
Decision* Next(Solver* const s) override {
SequenceVar* best_sequence = nullptr;
best_possible_firsts_.clear();
while (true) {
if (FindSequenceVar(s, &best_sequence)) {
// No not create a choice point if it is not needed.
DCHECK(best_sequence != nullptr);
if (best_possible_firsts_.size() == 1 &&
best_sequence->Interval(best_possible_firsts_.back())
->MustBePerformed()) {
best_sequence->RankFirst(best_possible_firsts_.back());
continue;
}
int best_interval = -1;
if (!FindIntervalVar(s, best_sequence, &best_interval)) {
s->Fail();
}
CHECK_NE(-1, best_interval);
return s->RevAlloc(new RankFirst(best_sequence, best_interval));
} else {
return nullptr;
}
}
}
void Accept(ModelVisitor* const visitor) const override {
visitor->BeginVisitExtension(ModelVisitor::kVariableGroupExtension);
visitor->VisitSequenceArrayArgument(ModelVisitor::kSequencesArgument,
sequences_);
visitor->EndVisitExtension(ModelVisitor::kVariableGroupExtension);
}
private:
// Selects the interval var to rank.
bool FindIntervalVarOnStartMin(Solver* const s,
SequenceVar* const best_sequence,
int* const best_interval_index) {
int best_interval = -1;
int64_t best_start_min = std::numeric_limits<int64_t>::max();
for (int index = 0; index < best_possible_firsts_.size(); ++index) {
const int candidate = best_possible_firsts_[index];
IntervalVar* const interval = best_sequence->Interval(candidate);
if (interval->StartMin() < best_start_min) {
best_interval = candidate;
best_start_min = interval->StartMin();
}
}
if (best_interval == -1) {
return false;
} else {
*best_interval_index = best_interval;
return true;
}
}
bool FindIntervalVarRandomly(Solver* const s,
SequenceVar* const best_sequence,
int* const best_interval_index) {
DCHECK(!best_possible_firsts_.empty());
const int index = s->Rand32(best_possible_firsts_.size());
*best_interval_index = best_possible_firsts_[index];
return true;
}
bool FindIntervalVar(Solver* const s, SequenceVar* const best_sequence,
int* const best_interval_index) {
switch (strategy_) {
case Solver::SEQUENCE_DEFAULT:
case Solver::SEQUENCE_SIMPLE:
case Solver::CHOOSE_MIN_SLACK_RANK_FORWARD:
return FindIntervalVarOnStartMin(s, best_sequence, best_interval_index);
case Solver::CHOOSE_RANDOM_RANK_FORWARD:
return FindIntervalVarRandomly(s, best_sequence, best_interval_index);
default:
LOG(FATAL) << "Unknown strategy " << strategy_;
return false;
}
}
// Selects the sequence var to start ranking.
bool FindSequenceVarOnSlack(Solver* const s,
SequenceVar** const best_sequence) {
int64_t best_slack = std::numeric_limits<int64_t>::max();
int64_t best_ahmin = std::numeric_limits<int64_t>::max();
*best_sequence = nullptr;
best_possible_firsts_.clear();
for (int i = 0; i < sequences_.size(); ++i) {
SequenceVar* const candidate_sequence = sequences_[i];
int ranked = 0;
int not_ranked = 0;
int unperformed = 0;
candidate_sequence->ComputeStatistics(&ranked, ¬_ranked, &unperformed);
if (not_ranked > 0) {
candidate_possible_firsts_.clear();
candidate_possible_lasts_.clear();
candidate_sequence->ComputePossibleFirstsAndLasts(
&candidate_possible_firsts_, &candidate_possible_lasts_);
// No possible first, failing.
if (candidate_possible_firsts_.empty()) {
s->Fail();
}
// Only 1 candidate, and non optional: ranking without branching.
if (candidate_possible_firsts_.size() == 1 &&
candidate_sequence->Interval(candidate_possible_firsts_.back())
->MustBePerformed()) {
*best_sequence = candidate_sequence;
best_possible_firsts_ = candidate_possible_firsts_;
return true;
}
// Evaluating the sequence.
int64_t hmin, hmax, dmin, dmax;
candidate_sequence->HorizonRange(&hmin, &hmax);
candidate_sequence->DurationRange(&dmin, &dmax);
int64_t ahmin, ahmax;
candidate_sequence->ActiveHorizonRange(&ahmin, &ahmax);
const int64_t current_slack = (hmax - hmin - dmax);
if (current_slack < best_slack ||
(current_slack == best_slack && ahmin < best_ahmin)) {
best_slack = current_slack;
*best_sequence = candidate_sequence;
best_possible_firsts_ = candidate_possible_firsts_;
best_ahmin = ahmin;
}
}
}
return *best_sequence != nullptr;
}
bool FindSequenceVarRandomly(Solver* const s,
SequenceVar** const best_sequence) {
std::vector<SequenceVar*> all_candidates;
std::vector<std::vector<int>> all_possible_firsts;
for (int i = 0; i < sequences_.size(); ++i) {
SequenceVar* const candidate_sequence = sequences_[i];
int ranked = 0;
int not_ranked = 0;
int unperformed = 0;
candidate_sequence->ComputeStatistics(&ranked, ¬_ranked, &unperformed);
if (not_ranked > 0) {
candidate_possible_firsts_.clear();
candidate_possible_lasts_.clear();
candidate_sequence->ComputePossibleFirstsAndLasts(
&candidate_possible_firsts_, &candidate_possible_lasts_);
// No possible first, failing.
if (candidate_possible_firsts_.empty()) {
s->Fail();
}
// Only 1 candidate, and non optional: ranking without branching.
if (candidate_possible_firsts_.size() == 1 &&
candidate_sequence->Interval(candidate_possible_firsts_.back())
->MustBePerformed()) {
*best_sequence = candidate_sequence;
best_possible_firsts_ = candidate_possible_firsts_;
return true;
}
all_candidates.push_back(candidate_sequence);
all_possible_firsts.push_back(candidate_possible_firsts_);
}
}
if (all_candidates.empty()) {
return false;
}
const int chosen = s->Rand32(all_candidates.size());
*best_sequence = all_candidates[chosen];
best_possible_firsts_ = all_possible_firsts[chosen];
return true;
}
bool FindSequenceVar(Solver* const s, SequenceVar** const best_sequence) {
switch (strategy_) {
case Solver::SEQUENCE_DEFAULT:
case Solver::SEQUENCE_SIMPLE:
case Solver::CHOOSE_MIN_SLACK_RANK_FORWARD:
return FindSequenceVarOnSlack(s, best_sequence);
case Solver::CHOOSE_RANDOM_RANK_FORWARD:
return FindSequenceVarRandomly(s, best_sequence);
default:
LOG(FATAL) << "Unknown strategy " << strategy_;
}
}
const std::vector<SequenceVar*> sequences_;
const Solver::SequenceStrategy strategy_;
std::vector<int> best_possible_firsts_;
std::vector<int> candidate_possible_firsts_;
std::vector<int> candidate_possible_lasts_;
};
} // namespace
Decision* Solver::MakeScheduleOrPostpone(IntervalVar* const var, int64_t est,
int64_t* const marker) {
CHECK(var != nullptr);
CHECK(marker != nullptr);
return RevAlloc(new ScheduleOrPostpone(var, est, marker));
}
Decision* Solver::MakeScheduleOrExpedite(IntervalVar* const var, int64_t est,
int64_t* const marker) {
CHECK(var != nullptr);
CHECK(marker != nullptr);
return RevAlloc(new ScheduleOrExpedite(var, est, marker));
}
DecisionBuilder* Solver::MakePhase(const std::vector<IntervalVar*>& intervals,
IntervalStrategy str) {
switch (str) {
case Solver::INTERVAL_DEFAULT:
case Solver::INTERVAL_SIMPLE:
case Solver::INTERVAL_SET_TIMES_FORWARD:
return RevAlloc(new SetTimesForward(intervals));
case Solver::INTERVAL_SET_TIMES_BACKWARD:
return RevAlloc(new SetTimesBackward(intervals));
default:
LOG(FATAL) << "Unknown strategy " << str;
}
}
Decision* Solver::MakeRankFirstInterval(SequenceVar* const sequence,
int index) {
CHECK(sequence != nullptr);
return RevAlloc(new RankFirst(sequence, index));
}
Decision* Solver::MakeRankLastInterval(SequenceVar* const sequence, int index) {
CHECK(sequence != nullptr);
return RevAlloc(new RankLast(sequence, index));
}
DecisionBuilder* Solver::MakePhase(const std::vector<SequenceVar*>& sequences,
SequenceStrategy str) {
return RevAlloc(new RankFirstIntervalVars(sequences, str));
}
} // namespace operations_research