forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constraint_solver.i
982 lines (878 loc) · 34.5 KB
/
constraint_solver.i
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
// Copyright 2010-2018 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.
// TODO(user): Refactor this file to adhere to the SWIG style guide.
%typemap(csimports) SWIGTYPE %{
using System;
using System.Runtime.InteropServices;
using System.Collections;
using System.Collections.Generic;
%}
%include "enumsimple.swg"
%include "stdint.i"
%include "exception.i"
%include "std_vector.i"
%include "std_common.i"
%include "std_string.i"
%include "ortools/base/base.i"
%include "ortools/util/csharp/vector.i"
%include "ortools/util/csharp/proto.i"
// We need to forward-declare the proto here, so that PROTO_INPUT involving it
// works correctly. The order matters very much: this declaration needs to be
// before the %{ #include ".../constraint_solver.h" %}.
namespace operations_research {
class ConstraintSolverParameters;
class RegularLimitParameters;
} // namespace operations_research
%module(directors="1") operations_research;
#pragma SWIG nowarn=473
%{
#include <setjmp.h>
#include <string>
#include <vector>
#include <functional>
#include "ortools/base/integral_types.h"
#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/constraint_solveri.h"
#include "ortools/constraint_solver/search_limit.pb.h"
#include "ortools/constraint_solver/solver_parameters.pb.h"
namespace operations_research {
class LocalSearchPhaseParameters {
public:
LocalSearchPhaseParameters() {}
~LocalSearchPhaseParameters() {}
};
} // namespace operations_research
struct FailureProtect {
jmp_buf exception_buffer;
void JumpBack() {
longjmp(exception_buffer, 1);
}
};
%}
/* allow partial c# classes */
%typemap(csclassmodifiers) SWIGTYPE "public partial class"
// TODO(user): Try to allow this per class (difficult with CpIntVector).
// ############ BEGIN DUPLICATED CODE BLOCK ############
// IMPORTANT: keep this code block in sync with the .i
// files in ../python and ../csharp.
// Protect from failure.
%define PROTECT_FROM_FAILURE(Method, GetSolver)
%exception Method {
operations_research::Solver* const solver = GetSolver;
FailureProtect protect;
solver->set_fail_intercept([&protect]() { protect.JumpBack(); });
if (setjmp(protect.exception_buffer) == 0) {
$action
solver->clear_fail_intercept();
} else {
solver->clear_fail_intercept();
SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, "fail");
return $null;
}
}
%enddef // PROTECT_FROM_FAILURE
namespace operations_research {
PROTECT_FROM_FAILURE(IntExpr::SetValue(int64 v), arg1->solver());
PROTECT_FROM_FAILURE(IntExpr::SetMin(int64 v), arg1->solver());
PROTECT_FROM_FAILURE(IntExpr::SetMax(int64 v), arg1->solver());
PROTECT_FROM_FAILURE(IntExpr::SetRange(int64 l, int64 u), arg1->solver());
PROTECT_FROM_FAILURE(IntVar::RemoveValue(int64 v), arg1->solver());
PROTECT_FROM_FAILURE(IntVar::RemoveValues(const std::vector<int64>& values),
arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetStartMin(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetStartMax(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetStartRange(int64 mi, int64 ma),
arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetDurationMin(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetDurationMax(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetDurationRange(int64 mi, int64 ma),
arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetEndMin(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetEndMax(int64 m), arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetEndRange(int64 mi, int64 ma),
arg1->solver());
PROTECT_FROM_FAILURE(IntervalVar::SetPerformed(bool val), arg1->solver());
PROTECT_FROM_FAILURE(Solver::AddConstraint(Constraint* const c), arg1);
PROTECT_FROM_FAILURE(Solver::Fail(), arg1);
#undef PROTECT_FROM_FAILURE
} // namespace operations_research
// ############ END DUPLICATED CODE BLOCK ############
%apply int64 * INOUT { int64 *const marker };
%apply int64 * OUTPUT { int64 *l, int64 *u, int64 *value };
// Since knapsack_solver.i and constraint_solver.i both need to
// instantiate the vector template, but their csharp_wrap.cc
// files end up being compiled into the same .dll, we must name the
// vector template differently.
%template(CpIntVector) std::vector<int>;
// IMPORTANT(corentinl) this template for vec<vec<T>> must be call BEFORE
// we redefine typemap of vec<T> in VECTOR_AS_CSHARP_ARRAY
VECTOR_AS_CSHARP_ARRAY(int, int, int, CpIntVector);
%template(CpInt64Vector) std::vector<int64>;
// IMPORTANT(corentinl) this template for vec<vec<T>> must be call BEFORE
// we redefine typemap of vec<T> in VECTOR_AS_CSHARP_ARRAY
%template(CpInt64VectorVector) std::vector<std::vector<int64> >;
VECTOR_AS_CSHARP_ARRAY(int64, int64, long, CpInt64Vector);
JAGGED_MATRIX_AS_CSHARP_ARRAY(int64, int64, long, CpInt64VectorVector);
// TupleSet depends on the previous typemaps
%include "ortools/util/csharp/tuple_set.i"
// Types in Proxy class:
// Solver.cs:
// Solver::Foo($cstype $csinput, ...) {Solver_Foo_SWIG($csin, ...);}
// constraint_solverPINVOKE.cs:
// $csout Solver_Foo_SWIG($imtype $input, ...) {...}
// constraint_solver_csharp_wrap.cc:
// $out CSharp_Solver_Foo__($ctype $input, ...) {...; $in; PInvoke($1...); return $out;}
%define DEFINE_ARGS_TO_R_CALLBACK(
TYPE, DELEGATE,
LAMBDA_RETURN, CAST_DELEGATE, LAMBDA_PARAM, LAMBDA_CALL)
%typemap(cstype, out="IntPtr") TYPE %{ DELEGATE %}
%typemap(csin) TYPE %{ Store ## DELEGATE ## ($csinput) %}
%typemap(imtype, out="IntPtr") TYPE %{ DELEGATE %}
// Type use in module_csharp_wrap.h function declaration.
// since SWIG generate code as: `$ctype argX` we can't use a C function pointer type.
%typemap(ctype) TYPE %{ void * %}
// Convert in module_csharp_wrap.cc input argument
// (delegate marshaled in C function pointer) to original std::function<...>
%typemap(in) TYPE %{
$1 = [$input]LAMBDA_PARAM -> LAMBDA_RETURN {
return (CAST_DELEGATE$input)LAMBDA_CALL;
};
%}
%enddef
%define DEFINE_VOID_TO_STRING_CALLBACK(TYPE, DELEGATE)
%typemap(cstype, out="IntPtr") TYPE %{ DELEGATE %}
%typemap(csin) TYPE %{ Store ## DELEGATE ## ($csinput) %}
%typemap(imtype, out="IntPtr") TYPE %{ DELEGATE %}
// Type use in module_csharp_wrap.h function declaration.
// since SWIG generate code as: `$ctype argX` we can't use a C function pointer type.
%typemap(ctype) TYPE %{ void * %}
// Convert in module_csharp_wrap.cc input argument
// (delegate marshaled in C function pointer) to original std::function<...>
%typemap(in) TYPE %{
$1 = [$input]() -> std::string {
std::string result;
return result.assign((*(char* (*)()) $input)());
};
%}
%enddef
DEFINE_ARGS_TO_R_CALLBACK(
std::function<void(operations_research::Solver*)>, SolverToVoid,
void, *(void(*)(operations_research::Solver*)), (operations_research::Solver* s), (s))
DEFINE_VOID_TO_STRING_CALLBACK(
std::function<std::string()>, VoidToString)
DEFINE_ARGS_TO_R_CALLBACK(
std::function<bool()>, VoidToBoolean,
bool, *(bool(*)()), (), ())
DEFINE_ARGS_TO_R_CALLBACK(
std::function<void()>, VoidToVoid,
void, *(void(*)()), (), ())
DEFINE_ARGS_TO_R_CALLBACK(
std::function<int(int64)>, LongToInt,
int, *(int(*)(int64)), (int64 t), (t))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<int64(int64)>, LongToLong,
int64, *(int64(*)(int64)), (int64 t), (t))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<int64(int64, int64)>, LongLongToLong,
int64, *(int64(*)(int64, int64)), (int64 t, int64 u), (t, u))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<int64(int64, int64, int64)>, LongLongLongToLong,
int64, *(int64(*)(int64, int64, int64)), (int64 t, int64 u, int64 v), (t, u, v))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<int64(int, int)>, IntIntToLong,
int64, *(int64(*)(int, int)), (int t, int u), (t, u))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<bool(int64)>, LongToBoolean,
bool, *(bool(*)(int64)), (int64 t), (t))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<bool(int64, int64, int64)>, LongLongLongToBoolean,
bool, *(bool(*)(int64, int64, int64)), (int64 t, int64 u, int64 v), (t, u, v))
DEFINE_ARGS_TO_R_CALLBACK(
std::function<void(int64)>, LongToVoid,
void, *(void(*)(int64)), (int64 t), (t))
#undef DEFINE_ARGS_TO_R_CALLBACK
#undef DEFINE_VOID_TO_STRING_CALLBACK
// Renaming
namespace operations_research {
// Decision
%feature("director") Decision;
%unignore Decision;
// Methods:
%rename (ApplyWrapper) Decision::Apply;
%rename (RefuteWrapper) Decision::Refute;
// DecisionBuilder
%feature("director") DecisionBuilder;
%unignore DecisionBuilder;
// Methods:
%rename (NextWrapper) DecisionBuilder::Next;
// SymmetryBreaker
%feature("director") SymmetryBreaker;
%unignore SymmetryBreaker;
// UnsortedNullableRevBitset
// TODO(corentinl) To removed from constraint_solveri.h (only use by table.cc)
%ignore UnsortedNullableRevBitset;
// Assignment
%unignore Assignment;
// Ignored:
%ignore Assignment::Load;
%ignore Assignment::Save;
// template AssignmentContainer<>
// Ignored:
%ignore AssignmentContainer::MutableElement;
%ignore AssignmentContainer::MutableElementOrNull;
%ignore AssignmentContainer::ElementPtrOrNull;
%ignore AssignmentContainer::elements;
// AssignmentElement
%unignore AssignmentElement;
// Methods:
%unignore AssignmentElement::Activate;
%unignore AssignmentElement::Deactivate;
%unignore AssignmentElement::Activated;
// IntVarElement
%unignore IntVarElement;
// Ignored:
%ignore IntVarElement::LoadFromProto;
%ignore IntVarElement::WriteToProto;
// IntervalVarElement
%unignore IntervalVarElement;
// Ignored:
%ignore IntervalVarElement::LoadFromProto;
%ignore IntervalVarElement::WriteToProto;
// SequenceVarElement
%unignore SequenceVarElement;
// Ignored:
%ignore SequenceVarElement::LoadFromProto;
%ignore SequenceVarElement::WriteToProto;
// SolutionCollector
%feature("director") SolutionCollector;
%unignore SolutionCollector;
// Solver
%unignore Solver;
%typemap(cscode) Solver %{
// Store list of delegates to avoid the GC to reclaim them.
// This avoid the GC to collect any callback (i.e. delegate) set from C#.
// The underlying C++ class will only store a pointer to it (i.e. no ownership).
private List<VoidToString> displayCallbacks;
private VoidToString StoreVoidToString(VoidToString c) {
if (displayCallbacks == null)
displayCallbacks = new List<VoidToString>();
displayCallbacks.Add(c);
return c;
}
private List<LongToLong> LongToLongCallbacks;
private LongToLong StoreLongToLong(LongToLong c) {
if (LongToLongCallbacks == null)
LongToLongCallbacks = new List<LongToLong>();
LongToLongCallbacks.Add(c);
return c;
}
private List<LongLongToLong> LongLongToLongCallbacks;
private LongLongToLong StoreLongLongToLong(LongLongToLong c) {
if (LongLongToLongCallbacks == null)
LongLongToLongCallbacks = new List<LongLongToLong>();
LongLongToLongCallbacks.Add(c);
return c;
}
private List<LongLongLongToLong> LongLongLongToLongCallbacks;
private LongLongLongToLong StoreLongLongLongToLong(LongLongLongToLong c) {
if (LongLongLongToLongCallbacks == null)
LongLongLongToLongCallbacks = new List<LongLongLongToLong>();
LongLongLongToLongCallbacks.Add(c);
return c;
}
private List<VoidToBoolean> limiterCallbacks;
private VoidToBoolean StoreVoidToBoolean(VoidToBoolean limiter) {
if (limiterCallbacks == null)
limiterCallbacks = new List<VoidToBoolean>();
limiterCallbacks.Add(limiter);
return limiter;
}
private List<LongLongLongToBoolean> variableValueComparatorCallbacks;
private LongLongLongToBoolean StoreLongLongLongToBoolean(
LongLongLongToBoolean c) {
if (variableValueComparatorCallbacks == null)
variableValueComparatorCallbacks = new List<LongLongLongToBoolean>();
variableValueComparatorCallbacks.Add(c);
return c;
}
private List<LongToBoolean> indexFilter1Callbacks;
private LongToBoolean StoreLongToBoolean(LongToBoolean c) {
if (indexFilter1Callbacks == null)
indexFilter1Callbacks = new List<LongToBoolean>();
indexFilter1Callbacks.Add(c);
return c;
}
private List<LongToVoid> objectiveWatcherCallbacks;
private LongToVoid StoreLongToVoid(LongToVoid c) {
if (objectiveWatcherCallbacks == null)
objectiveWatcherCallbacks = new List<LongToVoid>();
objectiveWatcherCallbacks.Add(c);
return c;
}
private List<SolverToVoid> actionCallbacks;
private SolverToVoid StoreSolverToVoid(SolverToVoid action) {
if (actionCallbacks == null)
actionCallbacks = new List<SolverToVoid>();
actionCallbacks.Add(action);
return action;
}
private List<VoidToVoid> closureCallbacks;
private VoidToVoid StoreVoidToVoid(VoidToVoid closure) {
if (closureCallbacks == null)
closureCallbacks = new List<VoidToVoid>();
closureCallbacks.Add(closure);
return closure;
}
// note: Should be store in LocalSearchOperator
private List<IntIntToLong> evaluatorCallbacks;
private IntIntToLong StoreIntIntToLong(IntIntToLong evaluator) {
if (evaluatorCallbacks == null)
evaluatorCallbacks = new List<IntIntToLong>();
evaluatorCallbacks.Add(evaluator);
return evaluator;
}
%}
// Ignored:
%ignore Solver::SearchLogParameters;
%ignore Solver::ActiveSearch;
%ignore Solver::SetSearchContext;
%ignore Solver::SearchContext;
%ignore Solver::MakeSearchLog(SearchLogParameters parameters);
%ignore Solver::MakeIntVarArray;
%ignore Solver::MakeBoolVarArray;
%ignore Solver::MakeFixedDurationIntervalVarArray;
%ignore Solver::SetBranchSelector;
%ignore Solver::MakeApplyBranchSelector;
%ignore Solver::MakeAtMost;
%ignore Solver::demon_profiler;
%ignore Solver::set_fail_intercept;
%ignore Solver::tmp_vector_;
// Methods:
%rename (Add) Solver::AddConstraint;
// Rename NewSearch and EndSearch to add pinning. See the overrides of
// NewSearch in ../../open_source/csharp/constraint_solver/SolverHelper.cs
%rename (NewSearchAux) Solver::NewSearch;
%rename (EndSearchAux) Solver::EndSearch;
// IntExpr
%unignore IntExpr;
%typemap(cscode) IntExpr %{
// Keep reference to delegate to avoid GC to collect them early
private List<VoidToVoid> closureCallbacks;
private VoidToVoid StoreVoidToVoid(VoidToVoid closure) {
if (closureCallbacks == null)
closureCallbacks = new List<VoidToVoid>();
closureCallbacks.Add(closure);
return closure;
}
%}
// Methods:
%extend IntExpr {
Constraint* MapTo(const std::vector<IntVar*>& vars) {
return $self->solver()->MakeMapDomain($self->Var(), vars);
}
IntExpr* IndexOf(const std::vector<int64>& vars) {
return $self->solver()->MakeElement(vars, $self->Var());
}
IntExpr* IndexOf(const std::vector<IntVar*>& vars) {
return $self->solver()->MakeElement(vars, $self->Var());
}
IntVar* IsEqual(int64 value) {
return $self->solver()->MakeIsEqualCstVar($self->Var(), value);
}
IntVar* IsDifferent(int64 value) {
return $self->solver()->MakeIsDifferentCstVar($self->Var(), value);
}
IntVar* IsGreater(int64 value) {
return $self->solver()->MakeIsGreaterCstVar($self->Var(), value);
}
IntVar* IsGreaterOrEqual(int64 value) {
return $self->solver()->MakeIsGreaterOrEqualCstVar($self->Var(), value);
}
IntVar* IsLess(int64 value) {
return $self->solver()->MakeIsLessCstVar($self->Var(), value);
}
IntVar* IsLessOrEqual(int64 value) {
return $self->solver()->MakeIsLessOrEqualCstVar($self->Var(), value);
}
IntVar* IsMember(const std::vector<int64>& values) {
return $self->solver()->MakeIsMemberVar($self->Var(), values);
}
IntVar* IsMember(const std::vector<int>& values) {
return $self->solver()->MakeIsMemberVar($self->Var(), values);
}
Constraint* Member(const std::vector<int64>& values) {
return $self->solver()->MakeMemberCt($self->Var(), values);
}
Constraint* Member(const std::vector<int>& values) {
return $self->solver()->MakeMemberCt($self->Var(), values);
}
IntVar* IsEqual(IntExpr* const other) {
return $self->solver()->MakeIsEqualVar($self->Var(), other->Var());
}
IntVar* IsDifferent(IntExpr* const other) {
return $self->solver()->MakeIsDifferentVar($self->Var(), other->Var());
}
IntVar* IsGreater(IntExpr* const other) {
return $self->solver()->MakeIsGreaterVar($self->Var(), other->Var());
}
IntVar* IsGreaterOrEqual(IntExpr* const other) {
return $self->solver()->MakeIsGreaterOrEqualVar($self->Var(), other->Var());
}
IntVar* IsLess(IntExpr* const other) {
return $self->solver()->MakeIsLessVar($self->Var(), other->Var());
}
IntVar* IsLessOrEqual(IntExpr* const other) {
return $self->solver()->MakeIsLessOrEqualVar($self->Var(), other->Var());
}
OptimizeVar* Minimize(long step) {
return $self->solver()->MakeMinimize($self->Var(), step);
}
OptimizeVar* Maximize(long step) {
return $self->solver()->MakeMaximize($self->Var(), step);
}
}
// IntVar
%unignore IntVar;
%typemap(cscode) IntVar %{
// Keep reference to delegate to avoid GC to collect them early
private List<VoidToVoid> closureCallbacks;
private VoidToVoid StoreVoidToVoid(VoidToVoid closure) {
if (closureCallbacks == null)
closureCallbacks = new List<VoidToVoid>();
closureCallbacks.Add(closure);
return closure;
}
%}
// Ignored:
%ignore IntVar::MakeDomainIterator;
%ignore IntVar::MakeHoleIterator;
// Methods:
%extend IntVar {
IntVarIterator* GetDomain() {
return $self->MakeDomainIterator(false);
}
IntVarIterator* GetHoles() {
return $self->MakeHoleIterator(false);
}
}
%typemap(csinterfaces_derived) IntVarIterator "IEnumerable";
// IntervalVar
%unignore IntervalVar;
%typemap(cscode) IntervalVar %{
// Keep reference to delegate to avoid GC to collect them early
private List<VoidToVoid> closureCallbacks;
private VoidToVoid StoreVoidToVoid(VoidToVoid closure) {
if (closureCallbacks == null)
closureCallbacks = new List<VoidToVoid>();
closureCallbacks.Add(closure);
return closure;
}
%}
// Extend IntervalVar with an intuitive API to create precedence constraints.
%extend IntervalVar {
Constraint* EndsAfterEnd(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AFTER_END, other);
}
Constraint* EndsAfterStart(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AFTER_START, other);
}
Constraint* EndsAtEnd(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AT_END, other);
}
Constraint* EndsAtStart(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AT_START, other);
}
Constraint* StartsAfterEnd(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AFTER_END, other);
}
Constraint* StartsAfterStart(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AFTER_START, other);
}
Constraint* StartsAtEnd(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AT_END, other);
}
Constraint* StartsAtStart(IntervalVar* other) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AT_START, other);
}
Constraint* EndsAfterEndWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::ENDS_AFTER_END, other, delay);
}
Constraint* EndsAfterStartWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::ENDS_AFTER_START, other, delay);
}
Constraint* EndsAtEndWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::ENDS_AT_END, other, delay);
}
Constraint* EndsAtStartWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::ENDS_AT_START, other, delay);
}
Constraint* StartsAfterEndWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::STARTS_AFTER_END, other, delay);
}
Constraint* StartsAfterStartWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::STARTS_AFTER_START, other, delay);
}
Constraint* StartsAtEndWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::STARTS_AT_END, other, delay);
}
Constraint* StartsAtStartWithDelay(IntervalVar* other, int64 delay) {
return $self->solver()->MakeIntervalVarRelationWithDelay($self, operations_research::Solver::STARTS_AT_START, other, delay);
}
Constraint* EndsAfter(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AFTER, date);
}
Constraint* EndsAt(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_AT, date);
}
Constraint* EndsBefore(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::ENDS_BEFORE, date);
}
Constraint* StartsAfter(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AFTER, date);
}
Constraint* StartsAt(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_AT, date);
}
Constraint* StartsBefore(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::STARTS_BEFORE, date);
}
Constraint* CrossesDate(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::CROSS_DATE, date);
}
Constraint* AvoidsDate(int64 date) {
return $self->solver()->MakeIntervalVarRelation($self, operations_research::Solver::AVOID_DATE, date);
}
IntervalVar* RelaxedMax() {
return $self->solver()->MakeIntervalRelaxedMax($self);
}
IntervalVar* RelaxedMin() {
return $self->solver()->MakeIntervalRelaxedMin($self);
}
}
// OptimizeVar
%feature("director") OptimizeVar;
%unignore OptimizeVar;
// Methods:
%unignore OptimizeVar::ApplyBound;
%unignore OptimizeVar::Print;
%unignore OptimizeVar::Var;
// SequenceVar
%unignore SequenceVar;
// Ignored:
%ignore SequenceVar::ComputePossibleFirstsAndLasts;
%ignore SequenceVar::FillSequence;
// Constraint
%feature("director") Constraint;
%unignore Constraint;
%typemap(csinterfaces_derived) Constraint "IConstraintWithStatus";
// Ignored:
%ignore Constraint::PostAndPropagate;
// Methods:
%rename (InitialPropagateWrapper) Constraint::InitialPropagate;
%feature ("nodirector") Constraint::Accept;
%feature ("nodirector") Constraint::Var;
%feature ("nodirector") Constraint::IsCastConstraint;
// DisjunctiveConstraint
%unignore DisjunctiveConstraint;
%typemap(cscode) DisjunctiveConstraint %{
// Store list of delegates to avoid the GC to reclaim them.
private List<LongLongToLong> LongLongToLongCallbacks;
// Ensure that the GC does not collect any IndexEvaluator1Callback set from C#
// as the underlying C++ class will only store a pointer to it (i.e. no ownership).
private LongLongToLong StoreLongLongToLong(LongLongToLong c) {
if (LongLongToLongCallbacks == null)
LongLongToLongCallbacks = new List<LongLongToLong>();
LongLongToLongCallbacks.Add(c);
return c;
}
%}
// Methods:
%rename (SequenceVar) DisjunctiveConstraint::MakeSequenceVar;
// Pack
%unignore Pack;
%typemap(cscode) Pack %{
// Store list of delegates to avoid the GC to reclaim them.
private List<LongToLong> LongToLongCallbacks;
private List<LongLongToLong> LongLongToLongCallbacks;
// Ensure that the GC does not collect any IndexEvaluator1Callback set from C#
// as the underlying C++ class will only store a pointer to it (i.e. no ownership).
private LongToLong StoreLongToLong(LongToLong c) {
if (LongToLongCallbacks == null)
LongToLongCallbacks = new List<LongToLong>();
LongToLongCallbacks.Add(c);
return c;
}
private LongLongToLong StoreLongLongToLong(LongLongToLong c) {
if (LongLongToLongCallbacks == null)
LongLongToLongCallbacks = new List<LongLongToLong>();
LongLongToLongCallbacks.Add(c);
return c;
}
%}
// PropagationBaseObject
%unignore PropagationBaseObject;
// Ignored:
%ignore PropagationBaseObject::ExecuteAll;
%ignore PropagationBaseObject::EnqueueAll;
%ignore PropagationBaseObject::set_action_on_fail;
// SearchMonitor
%feature("director") SearchMonitor;
%unignore SearchMonitor;
// SearchLimit
%feature("director") SearchLimit;
%unignore SearchLimit;
// Methods:
%rename (IsCrossed) SearchLimit::crossed;
// Searchlog
%unignore SearchLog;
// Ignored:
// No custom wrapping for this method, we simply ignore it.
%ignore SearchLog::SearchLog(
Solver* const s, OptimizeVar* const obj, IntVar* const var,
double scaling_factor, double offset,
std::function<std::string()> display_callback, int period);
// Methods:
%unignore SearchLog::Maintain;
%unignore SearchLog::OutputDecision;
// IntVarLocalSearchHandler
%ignore IntVarLocalSearchHandler;
// SequenceVarLocalSearchHandler
%ignore SequenceVarLocalSearchHandler;
// LocalSearchOperator
%feature("director") LocalSearchOperator;
%unignore LocalSearchOperator;
// Methods:
%unignore LocalSearchOperator::MakeNextNeighbor;
%unignore LocalSearchOperator::Reset;
%unignore LocalSearchOperator::Start;
// VarLocalSearchOperator<>
%unignore VarLocalSearchOperator;
// Ignored:
%ignore VarLocalSearchOperator::Start;
%ignore VarLocalSearchOperator::ApplyChanges;
%ignore VarLocalSearchOperator::RevertChanges;
%ignore VarLocalSearchOperator::SkipUnchanged;
// Methods:
%unignore VarLocalSearchOperator::Size;
%unignore VarLocalSearchOperator::Value;
%unignore VarLocalSearchOperator::IsIncremental;
%unignore VarLocalSearchOperator::OnStart;
%unignore VarLocalSearchOperator::OldValue;
%unignore VarLocalSearchOperator::SetValue;
%unignore VarLocalSearchOperator::Var;
%unignore VarLocalSearchOperator::Activated;
%unignore VarLocalSearchOperator::Activate;
%unignore VarLocalSearchOperator::Deactivate;
%unignore VarLocalSearchOperator::AddVars;
// IntVarLocalSearchOperator
%feature("director") IntVarLocalSearchOperator;
%unignore IntVarLocalSearchOperator;
// Ignored:
%ignore IntVarLocalSearchOperator::MakeNextNeighbor;
// Methods:
%unignore IntVarLocalSearchOperator::Size;
%unignore IntVarLocalSearchOperator::MakeOneNeighbor;
%unignore IntVarLocalSearchOperator::Value;
%unignore IntVarLocalSearchOperator::IsIncremental;
%unignore IntVarLocalSearchOperator::OnStart;
%unignore IntVarLocalSearchOperator::OldValue;
%unignore IntVarLocalSearchOperator::SetValue;
%unignore IntVarLocalSearchOperator::Var;
%unignore IntVarLocalSearchOperator::Activated;
%unignore IntVarLocalSearchOperator::Activate;
%unignore IntVarLocalSearchOperator::Deactivate;
%unignore IntVarLocalSearchOperator::AddVars;
// BaseLns
%feature("director") BaseLns;
%unignore BaseLns;
// Methods:
%unignore BaseLns::InitFragments;
%unignore BaseLns::NextFragment;
%feature ("nodirector") BaseLns::OnStart;
%feature ("nodirector") BaseLns::SkipUnchanged;
%feature ("nodirector") BaseLns::MakeOneNeighbor;
%unignore BaseLns::IsIncremental;
%unignore BaseLns::AppendToFragment;
%unignore BaseLns::FragmentSize;
// ChangeValue
%feature("director") ChangeValue;
%unignore ChangeValue;
// Methods:
%unignore ChangeValue::ModifyValue;
// SequenceVarLocalSearchOperator
%feature("director") SequenceVarLocalSearchOperator;
%unignore SequenceVarLocalSearchOperator;
// Ignored:
%ignore SequenceVarLocalSearchOperator::SetBackwardSequence;
%ignore SequenceVarLocalSearchOperator::SetForwardSequence;
// Methods:
%unignore SequenceVarLocalSearchOperator::OldSequence;
%unignore SequenceVarLocalSearchOperator::Sequence;
%unignore SequenceVarLocalSearchOperator::Start;
// PathOperator
%feature("director") PathOperator;
%unignore PathOperator;
%typemap(cscode) PathOperator %{
// Keep reference to delegate to avoid GC to collect them early
private List<LongToInt> startEmptyPathCallbacks;
private LongToInt StoreLongToInt(LongToInt path) {
if (startEmptyPathCallbacks == null)
startEmptyPathCallbacks = new List<LongToInt>();
startEmptyPathCallbacks.Add(path);
return path;
}
%}
// Ignored:
%ignore PathOperator::PathOperator;
%ignore PathOperator::Next;
%ignore PathOperator::Path;
%ignore PathOperator::SkipUnchanged;
%ignore PathOperator::number_of_nexts;
// Methods:
%unignore PathOperator::MakeNeighbor;
// LocalSearchFilter
%feature("director") LocalSearchFilter;
%unignore LocalSearchFilter;
// Methods:
%unignore LocalSearchFilter::Accept;
%unignore LocalSearchFilter::Synchronize;
%unignore LocalSearchFilter::IsIncremental;
// IntVarLocalSearchFilter
%feature("director") IntVarLocalSearchFilter;
%unignore IntVarLocalSearchFilter;
%typemap(cscode) IntVarLocalSearchFilter %{
// Store list of delegates to avoid the GC to reclaim them.
private LongToVoid objectiveWatcherCallbacks;
// Ensure that the GC does not collect any IndexEvaluator1Callback set from C#
// as the underlying C++ class will only store a pointer to it (i.e. no ownership).
private LongToVoid StoreLongToVoid(LongToVoid c) {
objectiveWatcherCallbacks = c;
return c;
}
%}
// Ignored:
%ignore IntVarLocalSearchFilter::FindIndex;
%ignore IntVarLocalSearchFilter::IntVarLocalSearchFilter(
const std::vector<IntVar*>& vars,
Solver::ObjectiveWatcher objective_callback);
%ignore IntVarLocalSearchFilter::IsVarSynced;
// Methods:
%feature("nodirector") IntVarLocalSearchFilter::Synchronize; // Inherited.
%unignore IntVarLocalSearchFilter::AddVars; // Inherited.
%unignore IntVarLocalSearchFilter::IsIncremental;
%unignore IntVarLocalSearchFilter::OnSynchronize;
%unignore IntVarLocalSearchFilter::Size;
%unignore IntVarLocalSearchFilter::Start;
%unignore IntVarLocalSearchFilter::Value;
%unignore IntVarLocalSearchFilter::Var; // Inherited.
// Extend IntVarLocalSearchFilter with an intuitive API.
%extend IntVarLocalSearchFilter {
int Index(IntVar* const var) {
int64 index = -1;
$self->FindIndex(var, &index);
return index;
}
}
// Demon
%feature("director") Demon;
%unignore Demon;
// Methods:
%feature("nodirector") Demon::inhibit;
%feature("nodirector") Demon::desinhibit;
%rename (RunWrapper) Demon::Run;
%rename (Inhibit) Demon::inhibit;
%rename (Desinhibit) Demon::desinhibit;
class LocalSearchPhaseParameters {
public:
LocalSearchPhaseParameters();
~LocalSearchPhaseParameters();
};
} // namespace operations_research
%define CONVERT_VECTOR(CTYPE, TYPE)
SWIG_STD_VECTOR_ENHANCED(CTYPE*);
%template(TYPE ## Vector) std::vector<CTYPE*>;
%enddef // CONVERT_VECTOR
CONVERT_VECTOR(operations_research::IntVar, IntVar)
CONVERT_VECTOR(operations_research::SearchMonitor, SearchMonitor)
CONVERT_VECTOR(operations_research::DecisionBuilder, DecisionBuilder)
CONVERT_VECTOR(operations_research::IntervalVar, IntervalVar)
CONVERT_VECTOR(operations_research::SequenceVar, SequenceVar)
CONVERT_VECTOR(operations_research::LocalSearchOperator, LocalSearchOperator)
CONVERT_VECTOR(operations_research::LocalSearchFilter, LocalSearchFilter)
CONVERT_VECTOR(operations_research::SymmetryBreaker, SymmetryBreaker)
#undef CONVERT_VECTOR
// Generic rename rule
%rename("%(camelcase)s", %$isfunction) "";
%rename (ToString) *::DebugString;
%rename (solver) *::solver;
%pragma(csharp) imclassimports=%{
// Used to wrap DisplayCallback (std::function<std::string()>)
public delegate string VoidToString();
// Used to wrap std::function<bool()>
public delegate bool VoidToBoolean();
// Used to wrap std::function<int(int64)>
public delegate int LongToInt(long t);
// Used to wrap IndexEvaluator1 (std::function<int64(int64)>)
public delegate long LongToLong(long t);
// Used to wrap IndexEvaluator2 (std::function<int64(int64, int64)>)
public delegate long LongLongToLong(long t, long u);
// Used to wrap IndexEvaluator3 (std::function<int64(int64, int64, int64)>)
public delegate long LongLongLongToLong(long t, long u, long v);
// Used to wrap std::function<int64(int, int)>
public delegate long IntIntToLong(int t, int u);
// Used to wrap IndexFilter1 (std::function<bool(int64)>)
public delegate bool LongToBoolean(long t);
// Used to wrap std::function<bool(int64, int64, int64)>
public delegate bool LongLongLongToBoolean(long t, long u, long v);
// Used to wrap std::function<void(Solver*)>
public delegate void SolverToVoid(Solver s);
// Used to wrap ObjectiveWatcher (std::function<void(int64)>)
public delegate void LongToVoid(long t);
// Used to wrap Closure (std::function<void()>)
public delegate void VoidToVoid();
%}
// Protobuf support
PROTO_INPUT(operations_research::ConstraintSolverParameters,
Google.OrTools.ConstraintSolver.ConstraintSolverParameters,
parameters)
PROTO2_RETURN(operations_research::ConstraintSolverParameters,
Google.OrTools.ConstraintSolver.ConstraintSolverParameters)
PROTO_INPUT(operations_research::RegularLimitParameters,
Google.OrTools.ConstraintSolver.RegularLimitParameters,
proto)
PROTO2_RETURN(operations_research::RegularLimitParameters,
Google.OrTools.ConstraintSolver.RegularLimitParameters)
PROTO_INPUT(operations_research::CpModel,
Google.OrTools.ConstraintSolver.CpModel,
proto)
PROTO2_RETURN(operations_research::CpModel,
Google.OrTools.ConstraintSolver.CpModel)
namespace operations_research {
// Globals
// IMPORTANT(corentinl): Global will be placed in operations_research_constraint_solver.cs
// Ignored:
%ignore FillValues;
} // namespace operations_research
// Wrap cp includes
// TODO(user): Replace with %ignoreall/%unignoreall
//swiglint: disable include-h-allglobals
%include "ortools/constraint_solver/constraint_solver.h"
%include "ortools/constraint_solver/constraint_solveri.h"
namespace operations_research {
%template(RevInteger) Rev<int64>;
%template(RevBool) Rev<bool>;
typedef Assignment::AssignmentContainer AssignmentContainer;
%template(AssignmentIntContainer) AssignmentContainer<IntVar, IntVarElement>;
%template(AssignmentIntervalContainer) AssignmentContainer<IntervalVar, IntervalVarElement>;
%template(AssignmentSequenceContainer) AssignmentContainer<SequenceVar, SequenceVarElement>;
}