Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
operations_research_constraint_solverPINVOKE.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (https://www.swig.org).
5// Version 4.3.0
6//
7// Do not make changes to this file unless you know what you are doing - modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
12
13// Used to wrap DisplayCallback (std::function<std::string()>)
14public delegate string VoidToString();
15
16// Used to wrap std::function<bool()>
17public delegate bool VoidToBoolean();
18
19// Used to wrap std::function<int(int64_t)>
20public delegate int LongToInt(long t);
21
22// Used to wrap IndexEvaluator1 (std::function<int64_t(int64_t)>)
23public delegate long LongToLong(long t);
24// Used to wrap IndexEvaluator2 (std::function<int64_t(int64_t, int64_t)>)
25public delegate long LongLongToLong(long t, long u);
26// Used to wrap IndexEvaluator3 (std::function<int64_t(int64_t, int64_t, int64_t)>)
27public delegate long LongLongLongToLong(long t, long u, long v);
28
29// Used to wrap std::function<int64_t(int, int)>
30public delegate long IntIntToLong(int t, int u);
31
32// Used to wrap IndexFilter1 (std::function<bool(int64_t)>)
33public delegate bool LongToBoolean(long t);
34
35// Used to wrap std::function<bool(int64_t, int64_t, int64_t)>
36public delegate bool LongLongLongToBoolean(long t, long u, long v);
37
38// Used to wrap std::function<void(Solver*)>
39public delegate void SolverToVoid(Solver s);
40
41// Used to wrap ObjectiveWatcher (std::function<void(int64_t)>)
42public delegate void LongToVoid(long t);
43
44// Used to wrap Closure (std::function<void()>)
45public delegate void VoidToVoid();
46
48
49 protected class SWIGExceptionHelper {
50
51 public delegate void ExceptionDelegate(string message);
52 public delegate void ExceptionArgumentDelegate(string message, string paramName);
54 static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
55 static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
56 static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
57 static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
58 static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
59 static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
60 static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
61 static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
62 static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
63 static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
64 static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
65
66 static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
67 static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
68 static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
69
70 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterExceptionCallbacks_operations_research_constraint_solver")]
72 ExceptionDelegate applicationDelegate,
73 ExceptionDelegate arithmeticDelegate,
74 ExceptionDelegate divideByZeroDelegate,
75 ExceptionDelegate indexOutOfRangeDelegate,
76 ExceptionDelegate invalidCastDelegate,
77 ExceptionDelegate invalidOperationDelegate,
78 ExceptionDelegate ioDelegate,
79 ExceptionDelegate nullReferenceDelegate,
80 ExceptionDelegate outOfMemoryDelegate,
81 ExceptionDelegate overflowDelegate,
82 ExceptionDelegate systemExceptionDelegate);
83
84 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_operations_research_constraint_solver")]
86 ExceptionArgumentDelegate argumentDelegate,
87 ExceptionArgumentDelegate argumentNullDelegate,
88 ExceptionArgumentDelegate argumentOutOfRangeDelegate);
89
90 static void SetPendingApplicationException(string message) {
91 SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
92 }
93 static void SetPendingArithmeticException(string message) {
94 SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
95 }
96 static void SetPendingDivideByZeroException(string message) {
97 SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
98 }
99 static void SetPendingIndexOutOfRangeException(string message) {
100 SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
101 }
102 static void SetPendingInvalidCastException(string message) {
103 SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
104 }
105 static void SetPendingInvalidOperationException(string message) {
106 SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
107 }
108 static void SetPendingIOException(string message) {
109 SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
110 }
111 static void SetPendingNullReferenceException(string message) {
112 SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
113 }
114 static void SetPendingOutOfMemoryException(string message) {
115 SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
116 }
117 static void SetPendingOverflowException(string message) {
118 SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
119 }
120 static void SetPendingSystemException(string message) {
121 SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
122 }
123
124 static void SetPendingArgumentException(string message, string paramName) {
125 SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
126 }
127 static void SetPendingArgumentNullException(string message, string paramName) {
128 global::System.Exception e = SWIGPendingException.Retrieve();
129 if (e != null) message = message + " Inner Exception: " + e.Message;
130 SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
131 }
132 static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
133 global::System.Exception e = SWIGPendingException.Retrieve();
134 if (e != null) message = message + " Inner Exception: " + e.Message;
135 SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
136 }
137
138 static SWIGExceptionHelper() {
140 applicationDelegate,
141 arithmeticDelegate,
142 divideByZeroDelegate,
143 indexOutOfRangeDelegate,
144 invalidCastDelegate,
145 invalidOperationDelegate,
146 ioDelegate,
147 nullReferenceDelegate,
148 outOfMemoryDelegate,
149 overflowDelegate,
150 systemDelegate);
151
153 argumentDelegate,
154 argumentNullDelegate,
155 argumentOutOfRangeDelegate);
156 }
157 }
158
160
161 public class SWIGPendingException {
162 [global::System.ThreadStatic]
163 private static global::System.Exception pendingException = null;
164 private static int numExceptionsPending = 0;
165 private static global::System.Object exceptionsLock = null;
166
167 public static bool Pending {
168 get {
169 bool pending = false;
170 if (numExceptionsPending > 0)
171 if (pendingException != null)
172 pending = true;
173 return pending;
174 }
175 }
176
177 public static void Set(global::System.Exception e) {
178 if (pendingException != null)
179 throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
180 pendingException = e;
181 lock(exceptionsLock) {
182 numExceptionsPending++;
183 }
184 }
185
186 public static global::System.Exception Retrieve() {
187 global::System.Exception e = null;
188 if (numExceptionsPending > 0) {
189 if (pendingException != null) {
190 e = pendingException;
191 pendingException = null;
192 lock(exceptionsLock) {
193 numExceptionsPending--;
194 }
195 }
196 }
197 return e;
198 }
199
200 static SWIGPendingException() {
201 exceptionsLock = new global::System.Object();
202 }
203 }
204
205
206 protected class SWIGStringHelper {
207
208 public delegate string SWIGStringDelegate(string message);
209 static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
211 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterStringCallback_operations_research_constraint_solver")]
213
214 static string CreateString(string cString) {
215 return cString;
216 }
217
218 static SWIGStringHelper() {
220 }
221 }
222
223 static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
224
226 public class SWIGStringWithLengthHelper {
227
228 [global::System.Runtime.InteropServices.DllImport("operations_research_constraint_solver", EntryPoint="SWIG_csharp_string_to_c")]
229 private static extern global::System.IntPtr SWIG_csharp_string_to_c0(int size, int len, [global::System.Runtime.InteropServices.In,global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPStr, SizeParamIndex=0)] string str);
230
231 [global::System.Runtime.InteropServices.DllImport("operations_research_constraint_solver", EntryPoint="SWIG_csharp_string_size")]
232 private static extern int SWIG_csharp_string_size(global::System.IntPtr str);
233
234 [global::System.Runtime.InteropServices.DllImport("operations_research_constraint_solver", EntryPoint="SWIG_csharp_string_str")]
235 private static extern global::System.IntPtr SWIG_csharp_string_str(global::System.IntPtr str);
236
237 public static global::System.IntPtr SWIG_csharp_string_to_c(string str) {
238 if (str == null)
239 return global::System.IntPtr.Zero;
240 global::System.Text.Encoding utf8 = global::System.Text.Encoding.UTF8;
241 return SWIG_csharp_string_to_c0(utf8.GetByteCount(str), str.Length, str);
242 }
243
244 public static string SWIG_c_to_csharp_string(global::System.IntPtr str) {
245 int size = SWIG_csharp_string_size(str);
246 if (size > 0) {
247 global::System.IntPtr s = SWIG_csharp_string_str(str);
248 byte[] b = new byte[size];
249 global::System.Runtime.InteropServices.Marshal.Copy(s, b, 0, size);
250 global::System.Text.Encoding utf8 = global::System.Text.Encoding.UTF8;
251 return utf8.GetString(b);
252 }
253 return null;
254 }
255 }
256
257
258 static operations_research_constraint_solverPINVOKE() {
259 }
260
261
262 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntBoolPair__SWIG_0___")]
263 public static extern global::System.IntPtr new_IntBoolPair__SWIG_0();
264
265 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntBoolPair__SWIG_1___")]
266 public static extern global::System.IntPtr new_IntBoolPair__SWIG_1(int jarg1, bool jarg2);
267
268 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntBoolPair__SWIG_2___")]
269 public static extern global::System.IntPtr new_IntBoolPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
270
271 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntBoolPair_first_set___")]
272 public static extern void IntBoolPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
273
274 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntBoolPair_first_get___")]
275 public static extern int IntBoolPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1);
276
277 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntBoolPair_second_set___")]
278 public static extern void IntBoolPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
279
280 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntBoolPair_second_get___")]
281 public static extern bool IntBoolPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1);
282
283 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntBoolPair___")]
284 public static extern void delete_IntBoolPair(global::System.Runtime.InteropServices.HandleRef jarg1);
285
286 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVector__SWIG_0___")]
287 public static extern global::System.IntPtr new_IntVector__SWIG_0();
288
289 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVector__SWIG_1___")]
290 public static extern global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
291
292 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Clear___")]
293 public static extern void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
294
295 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Add___")]
296 public static extern void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
297
298 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_size___")]
299 public static extern uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
300
301 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_empty___")]
302 public static extern bool IntVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
303
304 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_capacity___")]
305 public static extern uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
306
307 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_reserve___")]
308 public static extern void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
309
310 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVector__SWIG_2___")]
311 public static extern global::System.IntPtr new_IntVector__SWIG_2(int jarg1);
312
313 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_getitemcopy___")]
314 public static extern int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
315
316 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_getitem___")]
317 public static extern int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
318
319 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_setitem___")]
320 public static extern void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
321
322 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_AddRange___")]
323 public static extern void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
324
325 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_GetRange___")]
326 public static extern global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
327
328 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Insert___")]
329 public static extern void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
330
331 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_InsertRange___")]
332 public static extern void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
333
334 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_RemoveAt___")]
335 public static extern void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
336
337 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_RemoveRange___")]
338 public static extern void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
339
340 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Repeat___")]
341 public static extern global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2);
342
343 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Reverse__SWIG_0___")]
344 public static extern void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
345
346 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Reverse__SWIG_1___")]
347 public static extern void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
348
349 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_SetRange___")]
350 public static extern void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
351
352 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Contains___")]
353 public static extern bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
354
355 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_IndexOf___")]
356 public static extern int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
357
358 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_LastIndexOf___")]
359 public static extern int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
360
361 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVector_Remove___")]
362 public static extern bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
363
364 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVector___")]
365 public static extern void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1);
366
367 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVectorVector__SWIG_0___")]
368 public static extern global::System.IntPtr new_IntVectorVector__SWIG_0();
369
370 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVectorVector__SWIG_1___")]
371 public static extern global::System.IntPtr new_IntVectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
372
373 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Clear___")]
374 public static extern void IntVectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
375
376 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Add___")]
377 public static extern void IntVectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
378
379 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_size___")]
380 public static extern uint IntVectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
381
382 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_empty___")]
383 public static extern bool IntVectorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
384
385 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_capacity___")]
386 public static extern uint IntVectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
387
388 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_reserve___")]
389 public static extern void IntVectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
390
391 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVectorVector__SWIG_2___")]
392 public static extern global::System.IntPtr new_IntVectorVector__SWIG_2(int jarg1);
393
394 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_getitemcopy___")]
395 public static extern global::System.IntPtr IntVectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
396
397 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_getitem___")]
398 public static extern global::System.IntPtr IntVectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
399
400 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_setitem___")]
401 public static extern void IntVectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
402
403 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_AddRange___")]
404 public static extern void IntVectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
405
406 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_GetRange___")]
407 public static extern global::System.IntPtr IntVectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
408
409 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Insert___")]
410 public static extern void IntVectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
411
412 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_InsertRange___")]
413 public static extern void IntVectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
414
415 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_RemoveAt___")]
416 public static extern void IntVectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
417
418 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_RemoveRange___")]
419 public static extern void IntVectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
420
421 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Repeat___")]
422 public static extern global::System.IntPtr IntVectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
423
424 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Reverse__SWIG_0___")]
425 public static extern void IntVectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
426
427 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_Reverse__SWIG_1___")]
428 public static extern void IntVectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
429
430 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVectorVector_SetRange___")]
431 public static extern void IntVectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
432
433 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVectorVector___")]
434 public static extern void delete_IntVectorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
435
436 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64Vector__SWIG_0___")]
437 public static extern global::System.IntPtr new_Int64Vector__SWIG_0();
438
439 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64Vector__SWIG_1___")]
440 public static extern global::System.IntPtr new_Int64Vector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
441
442 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Clear___")]
443 public static extern void Int64Vector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
444
445 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Add___")]
446 public static extern void Int64Vector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
447
448 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_size___")]
449 public static extern uint Int64Vector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
450
451 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_empty___")]
452 public static extern bool Int64Vector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
453
454 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_capacity___")]
455 public static extern uint Int64Vector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
456
457 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_reserve___")]
458 public static extern void Int64Vector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
459
460 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64Vector__SWIG_2___")]
461 public static extern global::System.IntPtr new_Int64Vector__SWIG_2(int jarg1);
462
463 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_getitemcopy___")]
464 public static extern long Int64Vector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
465
466 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_getitem___")]
467 public static extern long Int64Vector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
468
469 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_setitem___")]
470 public static extern void Int64Vector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
471
472 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_AddRange___")]
473 public static extern void Int64Vector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
474
475 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_GetRange___")]
476 public static extern global::System.IntPtr Int64Vector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
477
478 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Insert___")]
479 public static extern void Int64Vector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
480
481 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_InsertRange___")]
482 public static extern void Int64Vector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
483
484 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_RemoveAt___")]
485 public static extern void Int64Vector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
486
487 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_RemoveRange___")]
488 public static extern void Int64Vector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
489
490 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Repeat___")]
491 public static extern global::System.IntPtr Int64Vector_Repeat(long jarg1, int jarg2);
492
493 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Reverse__SWIG_0___")]
494 public static extern void Int64Vector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
495
496 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Reverse__SWIG_1___")]
497 public static extern void Int64Vector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
498
499 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_SetRange___")]
500 public static extern void Int64Vector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
501
502 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Contains___")]
503 public static extern bool Int64Vector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
504
505 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_IndexOf___")]
506 public static extern int Int64Vector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
507
508 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_LastIndexOf___")]
509 public static extern int Int64Vector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
510
511 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64Vector_Remove___")]
512 public static extern bool Int64Vector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
513
514 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Int64Vector___")]
515 public static extern void delete_Int64Vector(global::System.Runtime.InteropServices.HandleRef jarg1);
516
517 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64VectorVector__SWIG_0___")]
518 public static extern global::System.IntPtr new_Int64VectorVector__SWIG_0();
519
520 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64VectorVector__SWIG_1___")]
521 public static extern global::System.IntPtr new_Int64VectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
522
523 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Clear___")]
524 public static extern void Int64VectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
525
526 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Add___")]
527 public static extern void Int64VectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
528
529 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_size___")]
530 public static extern uint Int64VectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
531
532 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_empty___")]
533 public static extern bool Int64VectorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
534
535 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_capacity___")]
536 public static extern uint Int64VectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
537
538 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_reserve___")]
539 public static extern void Int64VectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
540
541 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Int64VectorVector__SWIG_2___")]
542 public static extern global::System.IntPtr new_Int64VectorVector__SWIG_2(int jarg1);
543
544 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_getitemcopy___")]
545 public static extern global::System.IntPtr Int64VectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
546
547 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_getitem___")]
548 public static extern global::System.IntPtr Int64VectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
549
550 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_setitem___")]
551 public static extern void Int64VectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
552
553 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_AddRange___")]
554 public static extern void Int64VectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
555
556 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_GetRange___")]
557 public static extern global::System.IntPtr Int64VectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
558
559 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Insert___")]
560 public static extern void Int64VectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
561
562 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_InsertRange___")]
563 public static extern void Int64VectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
564
565 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_RemoveAt___")]
566 public static extern void Int64VectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
567
568 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_RemoveRange___")]
569 public static extern void Int64VectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
570
571 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Repeat___")]
572 public static extern global::System.IntPtr Int64VectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
573
574 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Reverse__SWIG_0___")]
575 public static extern void Int64VectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
576
577 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_Reverse__SWIG_1___")]
578 public static extern void Int64VectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
579
580 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Int64VectorVector_SetRange___")]
581 public static extern void Int64VectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
582
583 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Int64VectorVector___")]
584 public static extern void delete_Int64VectorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
585
586 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntTupleSet__SWIG_0___")]
587 public static extern global::System.IntPtr new_IntTupleSet__SWIG_0(int jarg1);
588
589 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntTupleSet__SWIG_1___")]
590 public static extern global::System.IntPtr new_IntTupleSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
591
592 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntTupleSet___")]
593 public static extern void delete_IntTupleSet(global::System.Runtime.InteropServices.HandleRef jarg1);
594
595 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Clear___")]
596 public static extern void IntTupleSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
597
598 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Insert__SWIG_0___")]
599 public static extern int IntTupleSet_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
600
601 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Insert__SWIG_1___")]
602 public static extern int IntTupleSet_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
603
604 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Insert2___")]
605 public static extern int IntTupleSet_Insert2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
606
607 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Insert3___")]
608 public static extern int IntTupleSet_Insert3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
609
610 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Insert4___")]
611 public static extern int IntTupleSet_Insert4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5);
612
613 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_InsertAll__SWIG_0___")]
614 public static extern void IntTupleSet_InsertAll__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1,
615 int len2_1, int[] len2_2, long[]
616 jarg2);
617
618 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_InsertAll__SWIG_1___")]
619 public static extern void IntTupleSet_InsertAll__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1,
620 int len2_1, int[] len2_2, int[]
621 jarg2);
622
623 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Contains__SWIG_0___")]
624 public static extern bool IntTupleSet_Contains__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
625
626 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Contains__SWIG_1___")]
627 public static extern bool IntTupleSet_Contains__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
628
629 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_NumTuples___")]
630 public static extern int IntTupleSet_NumTuples(global::System.Runtime.InteropServices.HandleRef jarg1);
631
632 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Value___")]
633 public static extern long IntTupleSet_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
634
635 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_Arity___")]
636 public static extern int IntTupleSet_Arity(global::System.Runtime.InteropServices.HandleRef jarg1);
637
638 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_NumDifferentValuesInColumn___")]
639 public static extern int IntTupleSet_NumDifferentValuesInColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
640
641 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_SortedByColumn___")]
642 public static extern global::System.IntPtr IntTupleSet_SortedByColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
643
644 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntTupleSet_SortedLexicographically___")]
645 public static extern global::System.IntPtr IntTupleSet_SortedLexicographically(global::System.Runtime.InteropServices.HandleRef jarg1);
646
647 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchPhaseParameters___")]
648 public static extern global::System.IntPtr new_LocalSearchPhaseParameters();
649
650 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchPhaseParameters___")]
651 public static extern void delete_LocalSearchPhaseParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
652
653 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarVector__SWIG_0___")]
654 public static extern global::System.IntPtr new_IntVarVector__SWIG_0();
655
656 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarVector__SWIG_1___")]
657 public static extern global::System.IntPtr new_IntVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
658
659 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Clear___")]
660 public static extern void IntVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
661
662 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Add___")]
663 public static extern void IntVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
664
665 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_size___")]
666 public static extern uint IntVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
667
668 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_empty___")]
669 public static extern bool IntVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
670
671 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_capacity___")]
672 public static extern uint IntVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
673
674 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_reserve___")]
675 public static extern void IntVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
676
677 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarVector__SWIG_2___")]
678 public static extern global::System.IntPtr new_IntVarVector__SWIG_2(int jarg1);
679
680 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_getitemcopy___")]
681 public static extern global::System.IntPtr IntVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
682
683 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_getitem___")]
684 public static extern global::System.IntPtr IntVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
685
686 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_setitem___")]
687 public static extern void IntVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
688
689 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_AddRange___")]
690 public static extern void IntVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
691
692 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_GetRange___")]
693 public static extern global::System.IntPtr IntVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
694
695 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Insert___")]
696 public static extern void IntVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
697
698 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_InsertRange___")]
699 public static extern void IntVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
700
701 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_RemoveAt___")]
702 public static extern void IntVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
703
704 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_RemoveRange___")]
705 public static extern void IntVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
706
707 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Repeat___")]
708 public static extern global::System.IntPtr IntVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
709
710 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Reverse__SWIG_0___")]
711 public static extern void IntVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
712
713 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Reverse__SWIG_1___")]
714 public static extern void IntVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
715
716 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_SetRange___")]
717 public static extern void IntVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
718
719 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Contains___")]
720 public static extern bool IntVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
721
722 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_IndexOf___")]
723 public static extern int IntVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
724
725 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_LastIndexOf___")]
726 public static extern int IntVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
727
728 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarVector_Remove___")]
729 public static extern bool IntVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
730
731 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVarVector___")]
732 public static extern void delete_IntVarVector(global::System.Runtime.InteropServices.HandleRef jarg1);
733
734 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SearchMonitorVector__SWIG_0___")]
735 public static extern global::System.IntPtr new_SearchMonitorVector__SWIG_0();
736
737 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SearchMonitorVector__SWIG_1___")]
738 public static extern global::System.IntPtr new_SearchMonitorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
739
740 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Clear___")]
741 public static extern void SearchMonitorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
742
743 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Add___")]
744 public static extern void SearchMonitorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
745
746 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_size___")]
747 public static extern uint SearchMonitorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
748
749 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_empty___")]
750 public static extern bool SearchMonitorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
751
752 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_capacity___")]
753 public static extern uint SearchMonitorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
754
755 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_reserve___")]
756 public static extern void SearchMonitorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
757
758 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SearchMonitorVector__SWIG_2___")]
759 public static extern global::System.IntPtr new_SearchMonitorVector__SWIG_2(int jarg1);
760
761 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_getitemcopy___")]
762 public static extern global::System.IntPtr SearchMonitorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
763
764 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_getitem___")]
765 public static extern global::System.IntPtr SearchMonitorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
766
767 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_setitem___")]
768 public static extern void SearchMonitorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
769
770 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_AddRange___")]
771 public static extern void SearchMonitorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
772
773 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_GetRange___")]
774 public static extern global::System.IntPtr SearchMonitorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
775
776 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Insert___")]
777 public static extern void SearchMonitorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
778
779 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_InsertRange___")]
780 public static extern void SearchMonitorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
781
782 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_RemoveAt___")]
783 public static extern void SearchMonitorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
784
785 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_RemoveRange___")]
786 public static extern void SearchMonitorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
787
788 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Repeat___")]
789 public static extern global::System.IntPtr SearchMonitorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
790
791 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Reverse__SWIG_0___")]
792 public static extern void SearchMonitorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
793
794 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Reverse__SWIG_1___")]
795 public static extern void SearchMonitorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
796
797 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_SetRange___")]
798 public static extern void SearchMonitorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
799
800 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Contains___")]
801 public static extern bool SearchMonitorVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
802
803 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_IndexOf___")]
804 public static extern int SearchMonitorVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
805
806 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_LastIndexOf___")]
807 public static extern int SearchMonitorVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
808
809 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitorVector_Remove___")]
810 public static extern bool SearchMonitorVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
811
812 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SearchMonitorVector___")]
813 public static extern void delete_SearchMonitorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
814
815 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DecisionBuilderVector__SWIG_0___")]
816 public static extern global::System.IntPtr new_DecisionBuilderVector__SWIG_0();
817
818 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DecisionBuilderVector__SWIG_1___")]
819 public static extern global::System.IntPtr new_DecisionBuilderVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
820
821 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Clear___")]
822 public static extern void DecisionBuilderVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
823
824 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Add___")]
825 public static extern void DecisionBuilderVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
826
827 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_size___")]
828 public static extern uint DecisionBuilderVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
829
830 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_empty___")]
831 public static extern bool DecisionBuilderVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
832
833 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_capacity___")]
834 public static extern uint DecisionBuilderVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
835
836 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_reserve___")]
837 public static extern void DecisionBuilderVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
838
839 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DecisionBuilderVector__SWIG_2___")]
840 public static extern global::System.IntPtr new_DecisionBuilderVector__SWIG_2(int jarg1);
841
842 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_getitemcopy___")]
843 public static extern global::System.IntPtr DecisionBuilderVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
844
845 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_getitem___")]
846 public static extern global::System.IntPtr DecisionBuilderVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
847
848 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_setitem___")]
849 public static extern void DecisionBuilderVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
850
851 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_AddRange___")]
852 public static extern void DecisionBuilderVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
853
854 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_GetRange___")]
855 public static extern global::System.IntPtr DecisionBuilderVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
856
857 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Insert___")]
858 public static extern void DecisionBuilderVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
859
860 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_InsertRange___")]
861 public static extern void DecisionBuilderVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
862
863 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_RemoveAt___")]
864 public static extern void DecisionBuilderVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
865
866 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_RemoveRange___")]
867 public static extern void DecisionBuilderVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
868
869 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Repeat___")]
870 public static extern global::System.IntPtr DecisionBuilderVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
871
872 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Reverse__SWIG_0___")]
873 public static extern void DecisionBuilderVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
874
875 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Reverse__SWIG_1___")]
876 public static extern void DecisionBuilderVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
877
878 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_SetRange___")]
879 public static extern void DecisionBuilderVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
880
881 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Contains___")]
882 public static extern bool DecisionBuilderVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
883
884 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_IndexOf___")]
885 public static extern int DecisionBuilderVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
886
887 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_LastIndexOf___")]
888 public static extern int DecisionBuilderVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
889
890 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilderVector_Remove___")]
891 public static extern bool DecisionBuilderVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
892
893 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_DecisionBuilderVector___")]
894 public static extern void delete_DecisionBuilderVector(global::System.Runtime.InteropServices.HandleRef jarg1);
895
896 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntervalVarVector__SWIG_0___")]
897 public static extern global::System.IntPtr new_IntervalVarVector__SWIG_0();
898
899 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntervalVarVector__SWIG_1___")]
900 public static extern global::System.IntPtr new_IntervalVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
901
902 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Clear___")]
903 public static extern void IntervalVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
904
905 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Add___")]
906 public static extern void IntervalVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
907
908 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_size___")]
909 public static extern uint IntervalVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
910
911 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_empty___")]
912 public static extern bool IntervalVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
913
914 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_capacity___")]
915 public static extern uint IntervalVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
916
917 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_reserve___")]
918 public static extern void IntervalVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
919
920 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntervalVarVector__SWIG_2___")]
921 public static extern global::System.IntPtr new_IntervalVarVector__SWIG_2(int jarg1);
922
923 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_getitemcopy___")]
924 public static extern global::System.IntPtr IntervalVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
925
926 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_getitem___")]
927 public static extern global::System.IntPtr IntervalVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
928
929 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_setitem___")]
930 public static extern void IntervalVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
931
932 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_AddRange___")]
933 public static extern void IntervalVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
934
935 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_GetRange___")]
936 public static extern global::System.IntPtr IntervalVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
937
938 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Insert___")]
939 public static extern void IntervalVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
940
941 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_InsertRange___")]
942 public static extern void IntervalVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
943
944 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_RemoveAt___")]
945 public static extern void IntervalVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
946
947 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_RemoveRange___")]
948 public static extern void IntervalVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
949
950 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Repeat___")]
951 public static extern global::System.IntPtr IntervalVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
952
953 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Reverse__SWIG_0___")]
954 public static extern void IntervalVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
955
956 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Reverse__SWIG_1___")]
957 public static extern void IntervalVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
958
959 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_SetRange___")]
960 public static extern void IntervalVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
961
962 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Contains___")]
963 public static extern bool IntervalVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
964
965 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_IndexOf___")]
966 public static extern int IntervalVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
967
968 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_LastIndexOf___")]
969 public static extern int IntervalVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
970
971 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarVector_Remove___")]
972 public static extern bool IntervalVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
973
974 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntervalVarVector___")]
975 public static extern void delete_IntervalVarVector(global::System.Runtime.InteropServices.HandleRef jarg1);
976
977 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVarVector__SWIG_0___")]
978 public static extern global::System.IntPtr new_SequenceVarVector__SWIG_0();
979
980 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVarVector__SWIG_1___")]
981 public static extern global::System.IntPtr new_SequenceVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
982
983 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Clear___")]
984 public static extern void SequenceVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
985
986 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Add___")]
987 public static extern void SequenceVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
988
989 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_size___")]
990 public static extern uint SequenceVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
991
992 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_empty___")]
993 public static extern bool SequenceVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
994
995 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_capacity___")]
996 public static extern uint SequenceVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
997
998 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_reserve___")]
999 public static extern void SequenceVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1000
1001 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVarVector__SWIG_2___")]
1002 public static extern global::System.IntPtr new_SequenceVarVector__SWIG_2(int jarg1);
1003
1004 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_getitemcopy___")]
1005 public static extern global::System.IntPtr SequenceVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1006
1007 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_getitem___")]
1008 public static extern global::System.IntPtr SequenceVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1009
1010 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_setitem___")]
1011 public static extern void SequenceVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1012
1013 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_AddRange___")]
1014 public static extern void SequenceVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1015
1016 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_GetRange___")]
1017 public static extern global::System.IntPtr SequenceVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1018
1019 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Insert___")]
1020 public static extern void SequenceVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1021
1022 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_InsertRange___")]
1023 public static extern void SequenceVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1024
1025 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_RemoveAt___")]
1026 public static extern void SequenceVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1027
1028 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_RemoveRange___")]
1029 public static extern void SequenceVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1030
1031 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Repeat___")]
1032 public static extern global::System.IntPtr SequenceVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1033
1034 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Reverse__SWIG_0___")]
1035 public static extern void SequenceVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1036
1037 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Reverse__SWIG_1___")]
1038 public static extern void SequenceVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1039
1040 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_SetRange___")]
1041 public static extern void SequenceVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1042
1043 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Contains___")]
1044 public static extern bool SequenceVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1045
1046 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_IndexOf___")]
1047 public static extern int SequenceVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1048
1049 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_LastIndexOf___")]
1050 public static extern int SequenceVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1051
1052 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarVector_Remove___")]
1053 public static extern bool SequenceVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1054
1055 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SequenceVarVector___")]
1056 public static extern void delete_SequenceVarVector(global::System.Runtime.InteropServices.HandleRef jarg1);
1057
1058 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchOperatorVector__SWIG_0___")]
1059 public static extern global::System.IntPtr new_LocalSearchOperatorVector__SWIG_0();
1060
1061 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchOperatorVector__SWIG_1___")]
1062 public static extern global::System.IntPtr new_LocalSearchOperatorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1063
1064 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Clear___")]
1065 public static extern void LocalSearchOperatorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
1066
1067 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Add___")]
1068 public static extern void LocalSearchOperatorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1069
1070 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_size___")]
1071 public static extern uint LocalSearchOperatorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
1072
1073 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_empty___")]
1074 public static extern bool LocalSearchOperatorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
1075
1076 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_capacity___")]
1077 public static extern uint LocalSearchOperatorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
1078
1079 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_reserve___")]
1080 public static extern void LocalSearchOperatorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1081
1082 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchOperatorVector__SWIG_2___")]
1083 public static extern global::System.IntPtr new_LocalSearchOperatorVector__SWIG_2(int jarg1);
1084
1085 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_getitemcopy___")]
1086 public static extern global::System.IntPtr LocalSearchOperatorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1087
1088 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_getitem___")]
1089 public static extern global::System.IntPtr LocalSearchOperatorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1090
1091 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_setitem___")]
1092 public static extern void LocalSearchOperatorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1093
1094 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_AddRange___")]
1095 public static extern void LocalSearchOperatorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1096
1097 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_GetRange___")]
1098 public static extern global::System.IntPtr LocalSearchOperatorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1099
1100 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Insert___")]
1101 public static extern void LocalSearchOperatorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1102
1103 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_InsertRange___")]
1104 public static extern void LocalSearchOperatorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1105
1106 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_RemoveAt___")]
1107 public static extern void LocalSearchOperatorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1108
1109 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_RemoveRange___")]
1110 public static extern void LocalSearchOperatorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1111
1112 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Repeat___")]
1113 public static extern global::System.IntPtr LocalSearchOperatorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1114
1115 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Reverse__SWIG_0___")]
1116 public static extern void LocalSearchOperatorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1117
1118 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Reverse__SWIG_1___")]
1119 public static extern void LocalSearchOperatorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1120
1121 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_SetRange___")]
1122 public static extern void LocalSearchOperatorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1123
1124 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Contains___")]
1125 public static extern bool LocalSearchOperatorVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1126
1127 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_IndexOf___")]
1128 public static extern int LocalSearchOperatorVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1129
1130 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_LastIndexOf___")]
1131 public static extern int LocalSearchOperatorVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1132
1133 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorVector_Remove___")]
1134 public static extern bool LocalSearchOperatorVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1135
1136 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchOperatorVector___")]
1137 public static extern void delete_LocalSearchOperatorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
1138
1139 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterVector__SWIG_0___")]
1140 public static extern global::System.IntPtr new_LocalSearchFilterVector__SWIG_0();
1141
1142 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterVector__SWIG_1___")]
1143 public static extern global::System.IntPtr new_LocalSearchFilterVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1144
1145 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Clear___")]
1146 public static extern void LocalSearchFilterVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
1147
1148 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Add___")]
1149 public static extern void LocalSearchFilterVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1150
1151 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_size___")]
1152 public static extern uint LocalSearchFilterVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
1153
1154 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_empty___")]
1155 public static extern bool LocalSearchFilterVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
1156
1157 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_capacity___")]
1158 public static extern uint LocalSearchFilterVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
1159
1160 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_reserve___")]
1161 public static extern void LocalSearchFilterVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1162
1163 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterVector__SWIG_2___")]
1164 public static extern global::System.IntPtr new_LocalSearchFilterVector__SWIG_2(int jarg1);
1165
1166 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_getitemcopy___")]
1167 public static extern global::System.IntPtr LocalSearchFilterVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1168
1169 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_getitem___")]
1170 public static extern global::System.IntPtr LocalSearchFilterVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1171
1172 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_setitem___")]
1173 public static extern void LocalSearchFilterVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1174
1175 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_AddRange___")]
1176 public static extern void LocalSearchFilterVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1177
1178 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_GetRange___")]
1179 public static extern global::System.IntPtr LocalSearchFilterVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1180
1181 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Insert___")]
1182 public static extern void LocalSearchFilterVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1183
1184 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_InsertRange___")]
1185 public static extern void LocalSearchFilterVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1186
1187 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_RemoveAt___")]
1188 public static extern void LocalSearchFilterVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1189
1190 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_RemoveRange___")]
1191 public static extern void LocalSearchFilterVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1192
1193 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Repeat___")]
1194 public static extern global::System.IntPtr LocalSearchFilterVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1195
1196 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Reverse__SWIG_0___")]
1197 public static extern void LocalSearchFilterVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1198
1199 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Reverse__SWIG_1___")]
1200 public static extern void LocalSearchFilterVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1201
1202 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_SetRange___")]
1203 public static extern void LocalSearchFilterVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1204
1205 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Contains___")]
1206 public static extern bool LocalSearchFilterVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1207
1208 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_IndexOf___")]
1209 public static extern int LocalSearchFilterVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1210
1211 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_LastIndexOf___")]
1212 public static extern int LocalSearchFilterVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1213
1214 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterVector_Remove___")]
1215 public static extern bool LocalSearchFilterVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1216
1217 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchFilterVector___")]
1218 public static extern void delete_LocalSearchFilterVector(global::System.Runtime.InteropServices.HandleRef jarg1);
1219
1220 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SymmetryBreakerVector__SWIG_0___")]
1221 public static extern global::System.IntPtr new_SymmetryBreakerVector__SWIG_0();
1222
1223 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SymmetryBreakerVector__SWIG_1___")]
1224 public static extern global::System.IntPtr new_SymmetryBreakerVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1225
1226 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Clear___")]
1227 public static extern void SymmetryBreakerVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
1228
1229 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Add___")]
1230 public static extern void SymmetryBreakerVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1231
1232 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_size___")]
1233 public static extern uint SymmetryBreakerVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
1234
1235 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_empty___")]
1236 public static extern bool SymmetryBreakerVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
1237
1238 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_capacity___")]
1239 public static extern uint SymmetryBreakerVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
1240
1241 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_reserve___")]
1242 public static extern void SymmetryBreakerVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
1243
1244 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SymmetryBreakerVector__SWIG_2___")]
1245 public static extern global::System.IntPtr new_SymmetryBreakerVector__SWIG_2(int jarg1);
1246
1247 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_getitemcopy___")]
1248 public static extern global::System.IntPtr SymmetryBreakerVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1249
1250 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_getitem___")]
1251 public static extern global::System.IntPtr SymmetryBreakerVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1252
1253 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_setitem___")]
1254 public static extern void SymmetryBreakerVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1255
1256 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_AddRange___")]
1257 public static extern void SymmetryBreakerVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1258
1259 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_GetRange___")]
1260 public static extern global::System.IntPtr SymmetryBreakerVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1261
1262 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Insert___")]
1263 public static extern void SymmetryBreakerVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1264
1265 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_InsertRange___")]
1266 public static extern void SymmetryBreakerVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1267
1268 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_RemoveAt___")]
1269 public static extern void SymmetryBreakerVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1270
1271 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_RemoveRange___")]
1272 public static extern void SymmetryBreakerVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1273
1274 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Repeat___")]
1275 public static extern global::System.IntPtr SymmetryBreakerVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1276
1277 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Reverse__SWIG_0___")]
1278 public static extern void SymmetryBreakerVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1279
1280 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Reverse__SWIG_1___")]
1281 public static extern void SymmetryBreakerVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
1282
1283 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_SetRange___")]
1284 public static extern void SymmetryBreakerVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1285
1286 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Contains___")]
1287 public static extern bool SymmetryBreakerVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1288
1289 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_IndexOf___")]
1290 public static extern int SymmetryBreakerVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1291
1292 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_LastIndexOf___")]
1293 public static extern int SymmetryBreakerVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1294
1295 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreakerVector_Remove___")]
1296 public static extern bool SymmetryBreakerVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1297
1298 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SymmetryBreakerVector___")]
1299 public static extern void delete_SymmetryBreakerVector(global::System.Runtime.InteropServices.HandleRef jarg1);
1300
1301 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_CpRandomSeed___")]
1302 public static extern long CpRandomSeed();
1303
1304 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_CHOOSE_MAX_SUM_IMPACT_get___")]
1305 public static extern int DefaultPhaseParameters_CHOOSE_MAX_SUM_IMPACT_get();
1306
1307 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_CHOOSE_MAX_AVERAGE_IMPACT_get___")]
1309
1310 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_CHOOSE_MAX_VALUE_IMPACT_get___")]
1311 public static extern int DefaultPhaseParameters_CHOOSE_MAX_VALUE_IMPACT_get();
1312
1313 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_SELECT_MIN_IMPACT_get___")]
1314 public static extern int DefaultPhaseParameters_SELECT_MIN_IMPACT_get();
1315
1316 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_SELECT_MAX_IMPACT_get___")]
1317 public static extern int DefaultPhaseParameters_SELECT_MAX_IMPACT_get();
1318
1319 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_NONE_get___")]
1320 public static extern int DefaultPhaseParameters_NONE_get();
1321
1322 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_NORMAL_get___")]
1323 public static extern int DefaultPhaseParameters_NORMAL_get();
1324
1325 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_VERBOSE_get___")]
1326 public static extern int DefaultPhaseParameters_VERBOSE_get();
1327
1328 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_var_selection_schema_set___")]
1329 public static extern void DefaultPhaseParameters_var_selection_schema_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1330
1331 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_var_selection_schema_get___")]
1332 public static extern int DefaultPhaseParameters_var_selection_schema_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1333
1334 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_value_selection_schema_set___")]
1335 public static extern void DefaultPhaseParameters_value_selection_schema_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1336
1337 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_value_selection_schema_get___")]
1338 public static extern int DefaultPhaseParameters_value_selection_schema_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1339
1340 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_initialization_splits_set___")]
1341 public static extern void DefaultPhaseParameters_initialization_splits_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1342
1343 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_initialization_splits_get___")]
1344 public static extern int DefaultPhaseParameters_initialization_splits_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1345
1346 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_run_all_heuristics_set___")]
1347 public static extern void DefaultPhaseParameters_run_all_heuristics_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1348
1349 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_run_all_heuristics_get___")]
1350 public static extern bool DefaultPhaseParameters_run_all_heuristics_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1351
1352 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_heuristic_period_set___")]
1353 public static extern void DefaultPhaseParameters_heuristic_period_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1354
1355 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_heuristic_period_get___")]
1356 public static extern int DefaultPhaseParameters_heuristic_period_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1357
1358 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_heuristic_num_failures_limit_set___")]
1359 public static extern void DefaultPhaseParameters_heuristic_num_failures_limit_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1360
1361 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_heuristic_num_failures_limit_get___")]
1362 public static extern int DefaultPhaseParameters_heuristic_num_failures_limit_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1363
1364 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_persistent_impact_set___")]
1365 public static extern void DefaultPhaseParameters_persistent_impact_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1366
1367 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_persistent_impact_get___")]
1368 public static extern bool DefaultPhaseParameters_persistent_impact_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1369
1370 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_random_seed_set___")]
1371 public static extern void DefaultPhaseParameters_random_seed_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1372
1373 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_random_seed_get___")]
1374 public static extern int DefaultPhaseParameters_random_seed_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1375
1376 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_display_level_set___")]
1377 public static extern void DefaultPhaseParameters_display_level_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1378
1379 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_display_level_get___")]
1380 public static extern int DefaultPhaseParameters_display_level_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1381
1382 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_use_last_conflict_set___")]
1383 public static extern void DefaultPhaseParameters_use_last_conflict_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1384
1385 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_use_last_conflict_get___")]
1386 public static extern bool DefaultPhaseParameters_use_last_conflict_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1387
1388 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_decision_builder_set___")]
1389 public static extern void DefaultPhaseParameters_decision_builder_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1390
1391 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultPhaseParameters_decision_builder_get___")]
1392 public static extern global::System.IntPtr DefaultPhaseParameters_decision_builder_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1393
1394 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DefaultPhaseParameters___")]
1395 public static extern global::System.IntPtr new_DefaultPhaseParameters();
1396
1397 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_DefaultPhaseParameters___")]
1398 public static extern void delete_DefaultPhaseParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
1399
1400 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Solver_IntegerCastInfo__SWIG_0___")]
1401 public static extern global::System.IntPtr new_Solver_IntegerCastInfo__SWIG_0();
1402
1403 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Solver_IntegerCastInfo__SWIG_1___")]
1404 public static extern global::System.IntPtr new_Solver_IntegerCastInfo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1405
1406 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_variable_set___")]
1407 public static extern void Solver_IntegerCastInfo_variable_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1408
1409 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_variable_get___")]
1410 public static extern global::System.IntPtr Solver_IntegerCastInfo_variable_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1411
1412 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_expression_set___")]
1413 public static extern void Solver_IntegerCastInfo_expression_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1414
1415 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_expression_get___")]
1416 public static extern global::System.IntPtr Solver_IntegerCastInfo_expression_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1417
1418 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_maintainer_set___")]
1419 public static extern void Solver_IntegerCastInfo_maintainer_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1420
1421 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IntegerCastInfo_maintainer_get___")]
1422 public static extern global::System.IntPtr Solver_IntegerCastInfo_maintainer_get(global::System.Runtime.InteropServices.HandleRef jarg1);
1423
1424 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Solver_IntegerCastInfo___")]
1425 public static extern void delete_Solver_IntegerCastInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
1426
1427 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_kNumPriorities_get___")]
1428 public static extern int Solver_kNumPriorities_get();
1429
1430 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INT_VAR_DEFAULT_get___")]
1431 public static extern int Solver_INT_VAR_DEFAULT_get();
1432
1433 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INT_VAR_SIMPLE_get___")]
1434 public static extern int Solver_INT_VAR_SIMPLE_get();
1435
1436 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_FIRST_UNBOUND_get___")]
1437 public static extern int Solver_CHOOSE_FIRST_UNBOUND_get();
1438
1439 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_RANDOM_get___")]
1440 public static extern int Solver_CHOOSE_RANDOM_get();
1441
1442 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SIZE_LOWEST_MIN_get___")]
1443 public static extern int Solver_CHOOSE_MIN_SIZE_LOWEST_MIN_get();
1444
1445 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SIZE_HIGHEST_MIN_get___")]
1446 public static extern int Solver_CHOOSE_MIN_SIZE_HIGHEST_MIN_get();
1447
1448 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SIZE_LOWEST_MAX_get___")]
1449 public static extern int Solver_CHOOSE_MIN_SIZE_LOWEST_MAX_get();
1450
1451 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SIZE_HIGHEST_MAX_get___")]
1452 public static extern int Solver_CHOOSE_MIN_SIZE_HIGHEST_MAX_get();
1453
1454 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_LOWEST_MIN_get___")]
1455 public static extern int Solver_CHOOSE_LOWEST_MIN_get();
1456
1457 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_HIGHEST_MAX_get___")]
1458 public static extern int Solver_CHOOSE_HIGHEST_MAX_get();
1459
1460 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SIZE_get___")]
1461 public static extern int Solver_CHOOSE_MIN_SIZE_get();
1462
1463 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MAX_SIZE_get___")]
1464 public static extern int Solver_CHOOSE_MAX_SIZE_get();
1465
1466 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MAX_REGRET_ON_MIN_get___")]
1467 public static extern int Solver_CHOOSE_MAX_REGRET_ON_MIN_get();
1468
1469 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_PATH_get___")]
1470 public static extern int Solver_CHOOSE_PATH_get();
1471
1472 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INT_VALUE_DEFAULT_get___")]
1473 public static extern int Solver_INT_VALUE_DEFAULT_get();
1474
1475 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INT_VALUE_SIMPLE_get___")]
1476 public static extern int Solver_INT_VALUE_SIMPLE_get();
1477
1478 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ASSIGN_MIN_VALUE_get___")]
1479 public static extern int Solver_ASSIGN_MIN_VALUE_get();
1480
1481 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ASSIGN_MAX_VALUE_get___")]
1482 public static extern int Solver_ASSIGN_MAX_VALUE_get();
1483
1484 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ASSIGN_RANDOM_VALUE_get___")]
1485 public static extern int Solver_ASSIGN_RANDOM_VALUE_get();
1486
1487 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ASSIGN_CENTER_VALUE_get___")]
1488 public static extern int Solver_ASSIGN_CENTER_VALUE_get();
1489
1490 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SPLIT_LOWER_HALF_get___")]
1491 public static extern int Solver_SPLIT_LOWER_HALF_get();
1492
1493 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SPLIT_UPPER_HALF_get___")]
1494 public static extern int Solver_SPLIT_UPPER_HALF_get();
1495
1496 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_STATIC_GLOBAL_BEST_get___")]
1497 public static extern int Solver_CHOOSE_STATIC_GLOBAL_BEST_get();
1498
1499 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_DYNAMIC_GLOBAL_BEST_get___")]
1500 public static extern int Solver_CHOOSE_DYNAMIC_GLOBAL_BEST_get();
1501
1502 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SEQUENCE_DEFAULT_get___")]
1503 public static extern int Solver_SEQUENCE_DEFAULT_get();
1504
1505 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SEQUENCE_SIMPLE_get___")]
1506 public static extern int Solver_SEQUENCE_SIMPLE_get();
1507
1508 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_MIN_SLACK_RANK_FORWARD_get___")]
1509 public static extern int Solver_CHOOSE_MIN_SLACK_RANK_FORWARD_get();
1510
1511 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOOSE_RANDOM_RANK_FORWARD_get___")]
1512 public static extern int Solver_CHOOSE_RANDOM_RANK_FORWARD_get();
1513
1514 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INTERVAL_DEFAULT_get___")]
1515 public static extern int Solver_INTERVAL_DEFAULT_get();
1516
1517 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INTERVAL_SIMPLE_get___")]
1518 public static extern int Solver_INTERVAL_SIMPLE_get();
1519
1520 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INTERVAL_SET_TIMES_FORWARD_get___")]
1521 public static extern int Solver_INTERVAL_SET_TIMES_FORWARD_get();
1522
1523 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INTERVAL_SET_TIMES_BACKWARD_get___")]
1524 public static extern int Solver_INTERVAL_SET_TIMES_BACKWARD_get();
1525
1526 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_TWOOPT_get___")]
1527 public static extern int Solver_TWOOPT_get();
1528
1529 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_OROPT_get___")]
1530 public static extern int Solver_OROPT_get();
1531
1532 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RELOCATE_get___")]
1533 public static extern int Solver_RELOCATE_get();
1534
1535 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_EXCHANGE_get___")]
1536 public static extern int Solver_EXCHANGE_get();
1537
1538 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CROSS_get___")]
1539 public static extern int Solver_CROSS_get();
1540
1541 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MAKEACTIVE_get___")]
1542 public static extern int Solver_MAKEACTIVE_get();
1543
1544 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MAKEINACTIVE_get___")]
1545 public static extern int Solver_MAKEINACTIVE_get();
1546
1547 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MAKECHAININACTIVE_get___")]
1548 public static extern int Solver_MAKECHAININACTIVE_get();
1549
1550 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SWAPACTIVE_get___")]
1551 public static extern int Solver_SWAPACTIVE_get();
1552
1553 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SWAPACTIVECHAIN_get___")]
1554 public static extern int Solver_SWAPACTIVECHAIN_get();
1555
1556 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_EXTENDEDSWAPACTIVE_get___")]
1557 public static extern int Solver_EXTENDEDSWAPACTIVE_get();
1558
1559 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_PATHLNS_get___")]
1560 public static extern int Solver_PATHLNS_get();
1561
1562 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_FULLPATHLNS_get___")]
1563 public static extern int Solver_FULLPATHLNS_get();
1564
1565 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_UNACTIVELNS_get___")]
1566 public static extern int Solver_UNACTIVELNS_get();
1567
1568 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_INCREMENT_get___")]
1569 public static extern int Solver_INCREMENT_get();
1570
1571 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_DECREMENT_get___")]
1572 public static extern int Solver_DECREMENT_get();
1573
1574 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SIMPLELNS_get___")]
1575 public static extern int Solver_SIMPLELNS_get();
1576
1577 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_LK_get___")]
1578 public static extern int Solver_LK_get();
1579
1580 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_TSPOPT_get___")]
1581 public static extern int Solver_TSPOPT_get();
1582
1583 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_TSPLNS_get___")]
1584 public static extern int Solver_TSPLNS_get();
1585
1586 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_GE_get___")]
1587 public static extern int Solver_GE_get();
1588
1589 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_LE_get___")]
1590 public static extern int Solver_LE_get();
1591
1592 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_EQ_get___")]
1593 public static extern int Solver_EQ_get();
1594
1595 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_DELAYED_PRIORITY_get___")]
1596 public static extern int Solver_DELAYED_PRIORITY_get();
1597
1598 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_VAR_PRIORITY_get___")]
1599 public static extern int Solver_VAR_PRIORITY_get();
1600
1601 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NORMAL_PRIORITY_get___")]
1602 public static extern int Solver_NORMAL_PRIORITY_get();
1603
1604 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AFTER_END_get___")]
1605 public static extern int Solver_ENDS_AFTER_END_get();
1606
1607 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AFTER_START_get___")]
1608 public static extern int Solver_ENDS_AFTER_START_get();
1609
1610 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AT_END_get___")]
1611 public static extern int Solver_ENDS_AT_END_get();
1612
1613 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AT_START_get___")]
1614 public static extern int Solver_ENDS_AT_START_get();
1615
1616 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AFTER_END_get___")]
1617 public static extern int Solver_STARTS_AFTER_END_get();
1618
1619 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AFTER_START_get___")]
1620 public static extern int Solver_STARTS_AFTER_START_get();
1621
1622 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AT_END_get___")]
1623 public static extern int Solver_STARTS_AT_END_get();
1624
1625 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AT_START_get___")]
1626 public static extern int Solver_STARTS_AT_START_get();
1627
1628 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STAYS_IN_SYNC_get___")]
1629 public static extern int Solver_STAYS_IN_SYNC_get();
1630
1631 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AFTER_get___")]
1632 public static extern int Solver_ENDS_AFTER_get();
1633
1634 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_AT_get___")]
1635 public static extern int Solver_ENDS_AT_get();
1636
1637 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ENDS_BEFORE_get___")]
1638 public static extern int Solver_ENDS_BEFORE_get();
1639
1640 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AFTER_get___")]
1641 public static extern int Solver_STARTS_AFTER_get();
1642
1643 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_AT_get___")]
1644 public static extern int Solver_STARTS_AT_get();
1645
1646 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_STARTS_BEFORE_get___")]
1647 public static extern int Solver_STARTS_BEFORE_get();
1648
1649 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CROSS_DATE_get___")]
1650 public static extern int Solver_CROSS_DATE_get();
1651
1652 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AVOID_DATE_get___")]
1653 public static extern int Solver_AVOID_DATE_get();
1654
1655 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NO_CHANGE_get___")]
1656 public static extern int Solver_NO_CHANGE_get();
1657
1658 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_KEEP_LEFT_get___")]
1659 public static extern int Solver_KEEP_LEFT_get();
1660
1661 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_KEEP_RIGHT_get___")]
1662 public static extern int Solver_KEEP_RIGHT_get();
1663
1664 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_KILL_BOTH_get___")]
1665 public static extern int Solver_KILL_BOTH_get();
1666
1667 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SWITCH_BRANCHES_get___")]
1668 public static extern int Solver_SWITCH_BRANCHES_get();
1669
1670 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SENTINEL_get___")]
1671 public static extern int Solver_SENTINEL_get();
1672
1673 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SIMPLE_MARKER_get___")]
1674 public static extern int Solver_SIMPLE_MARKER_get();
1675
1676 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CHOICE_POINT_get___")]
1677 public static extern int Solver_CHOICE_POINT_get();
1678
1679 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_REVERSIBLE_ACTION_get___")]
1680 public static extern int Solver_REVERSIBLE_ACTION_get();
1681
1682 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_OUTSIDE_SEARCH_get___")]
1683 public static extern int Solver_OUTSIDE_SEARCH_get();
1684
1685 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IN_ROOT_NODE_get___")]
1686 public static extern int Solver_IN_ROOT_NODE_get();
1687
1688 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IN_SEARCH_get___")]
1689 public static extern int Solver_IN_SEARCH_get();
1690
1691 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AT_SOLUTION_get___")]
1692 public static extern int Solver_AT_SOLUTION_get();
1693
1694 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NO_MORE_SOLUTIONS_get___")]
1695 public static extern int Solver_NO_MORE_SOLUTIONS_get();
1696
1697 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_PROBLEM_INFEASIBLE_get___")]
1698 public static extern int Solver_PROBLEM_INFEASIBLE_get();
1699
1700 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NOT_SET_get___")]
1701 public static extern int Solver_NOT_SET_get();
1702
1703 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MAXIMIZATION_get___")]
1704 public static extern int Solver_MAXIMIZATION_get();
1705
1706 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MINIMIZATION_get___")]
1707 public static extern int Solver_MINIMIZATION_get();
1708
1709 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Solver__SWIG_0___")]
1710 public static extern global::System.IntPtr new_Solver__SWIG_0(string jarg1);
1711
1712 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Solver__SWIG_1___")]
1713 public static extern global::System.IntPtr new_Solver__SWIG_1(string jarg1, int parameters_size, byte[] jarg2);
1714
1715 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Solver___")]
1716 public static extern void delete_Solver(global::System.Runtime.InteropServices.HandleRef jarg1);
1717
1718 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Parameters___")]
1719 public static extern System.IntPtr Solver_Parameters(global::System.Runtime.InteropServices.HandleRef jarg1);
1720
1721 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ConstParameters___")]
1722 public static extern global::System.IntPtr Solver_ConstParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
1723
1724 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_DefaultSolverParameters___")]
1725 public static extern System.IntPtr Solver_DefaultSolverParameters();
1726
1727 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Add___")]
1728 public static extern void Solver_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1729
1730 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AddCastConstraint___")]
1731 public static extern void Solver_AddCastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1732
1733 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_0___")]
1734 public static extern bool Solver_Solve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1735
1736 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_1___")]
1737 public static extern bool Solver_Solve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1738
1739 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_2___")]
1740 public static extern bool Solver_Solve__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1741
1742 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_3___")]
1743 public static extern bool Solver_Solve__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1744
1745 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_4___")]
1746 public static extern bool Solver_Solve__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
1747
1748 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solve__SWIG_5___")]
1749 public static extern bool Solver_Solve__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
1750
1751 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_0___")]
1752 public static extern void Solver_NewSearchAux__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1753
1754 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_1___")]
1755 public static extern void Solver_NewSearchAux__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1756
1757 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_2___")]
1758 public static extern void Solver_NewSearchAux__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1759
1760 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_3___")]
1761 public static extern void Solver_NewSearchAux__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1762
1763 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_4___")]
1764 public static extern void Solver_NewSearchAux__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
1765
1766 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NewSearchAux__SWIG_5___")]
1767 public static extern void Solver_NewSearchAux__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
1768
1769 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NextSolution___")]
1770 public static extern bool Solver_NextSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
1771
1772 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RestartSearch___")]
1773 public static extern void Solver_RestartSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
1774
1775 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_EndSearchAux___")]
1776 public static extern void Solver_EndSearchAux(global::System.Runtime.InteropServices.HandleRef jarg1);
1777
1778 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveAndCommit__SWIG_0___")]
1779 public static extern bool Solver_SolveAndCommit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1780
1781 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveAndCommit__SWIG_1___")]
1782 public static extern bool Solver_SolveAndCommit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1783
1784 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveAndCommit__SWIG_2___")]
1785 public static extern bool Solver_SolveAndCommit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1786
1787 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveAndCommit__SWIG_3___")]
1788 public static extern bool Solver_SolveAndCommit__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1789
1790 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveAndCommit__SWIG_4___")]
1791 public static extern bool Solver_SolveAndCommit__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
1792
1793 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CheckAssignment___")]
1794 public static extern bool Solver_CheckAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1795
1796 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CheckConstraint___")]
1797 public static extern bool Solver_CheckConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1798
1799 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_State___")]
1800 public static extern int Solver_State(global::System.Runtime.InteropServices.HandleRef jarg1);
1801
1802 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Fail___")]
1803 public static extern void Solver_Fail(global::System.Runtime.InteropServices.HandleRef jarg1);
1804
1805 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ToString___")]
1806 public static extern string Solver_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
1807
1808 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MemoryUsage___")]
1809 public static extern long Solver_MemoryUsage();
1810
1811 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_WallTime___")]
1812 public static extern long Solver_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1);
1813
1814 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Branches___")]
1815 public static extern long Solver_Branches(global::System.Runtime.InteropServices.HandleRef jarg1);
1816
1817 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Solutions___")]
1818 public static extern long Solver_Solutions(global::System.Runtime.InteropServices.HandleRef jarg1);
1819
1820 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_UncheckedSolutions___")]
1821 public static extern long Solver_UncheckedSolutions(global::System.Runtime.InteropServices.HandleRef jarg1);
1822
1823 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_DemonRuns___")]
1824 public static extern long Solver_DemonRuns(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1825
1826 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Failures___")]
1827 public static extern long Solver_Failures(global::System.Runtime.InteropServices.HandleRef jarg1);
1828
1829 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Neighbors___")]
1830 public static extern long Solver_Neighbors(global::System.Runtime.InteropServices.HandleRef jarg1);
1831
1832 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ClearNeighbors___")]
1833 public static extern void Solver_ClearNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1);
1834
1835 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IncrementNeighbors___")]
1836 public static extern void Solver_IncrementNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1);
1837
1838 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_FilteredNeighbors___")]
1839 public static extern long Solver_FilteredNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1);
1840
1841 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AcceptedNeighbors___")]
1842 public static extern long Solver_AcceptedNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1);
1843
1844 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Stamp___")]
1845 public static extern ulong Solver_Stamp(global::System.Runtime.InteropServices.HandleRef jarg1);
1846
1847 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_FailStamp___")]
1848 public static extern ulong Solver_FailStamp(global::System.Runtime.InteropServices.HandleRef jarg1);
1849
1850 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SetContext___")]
1851 public static extern void Solver_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1852
1853 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Context___")]
1854 public static extern string Solver_Context(global::System.Runtime.InteropServices.HandleRef jarg1);
1855
1856 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SetOptimizationDirection___")]
1857 public static extern void Solver_SetOptimizationDirection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1858
1859 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SetGuidedLocalSearchPenaltyCallback___")]
1860 public static extern void Solver_SetGuidedLocalSearchPenaltyCallback(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongLongToLong jarg2);
1861
1862 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_GetGuidedLocalSearchPenalty___")]
1863 public static extern long Solver_GetGuidedLocalSearchPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
1864
1865 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_0___")]
1866 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4);
1867
1868 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_1___")]
1869 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, string jarg3);
1870
1871 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_2___")]
1872 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, string jarg3);
1873
1874 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_3___")]
1875 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
1876
1877 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_4___")]
1878 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
1879
1880 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntVar__SWIG_5___")]
1881 public static extern global::System.IntPtr Solver_MakeIntVar__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
1882
1883 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBoolVar__SWIG_0___")]
1884 public static extern global::System.IntPtr Solver_MakeBoolVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1885
1886 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBoolVar__SWIG_1___")]
1887 public static extern global::System.IntPtr Solver_MakeBoolVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1888
1889 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntConst__SWIG_0___")]
1890 public static extern global::System.IntPtr Solver_MakeIntConst__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, string jarg3);
1891
1892 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntConst__SWIG_1___")]
1893 public static extern global::System.IntPtr Solver_MakeIntConst__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1894
1895 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSum__SWIG_0___")]
1896 public static extern global::System.IntPtr Solver_MakeSum__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1897
1898 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSum__SWIG_1___")]
1899 public static extern global::System.IntPtr Solver_MakeSum__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1900
1901 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSum__SWIG_2___")]
1902 public static extern global::System.IntPtr Solver_MakeSum__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1903
1904 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProd__SWIG_0___")]
1905 public static extern global::System.IntPtr Solver_MakeScalProd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
1906
1907 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProd__SWIG_1___")]
1908 public static extern global::System.IntPtr Solver_MakeScalProd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
1909
1910 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDifference__SWIG_0___")]
1911 public static extern global::System.IntPtr Solver_MakeDifference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1912
1913 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDifference__SWIG_1___")]
1914 public static extern global::System.IntPtr Solver_MakeDifference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1915
1916 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOpposite___")]
1917 public static extern global::System.IntPtr Solver_MakeOpposite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1918
1919 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeProd__SWIG_0___")]
1920 public static extern global::System.IntPtr Solver_MakeProd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1921
1922 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeProd__SWIG_1___")]
1923 public static extern global::System.IntPtr Solver_MakeProd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1924
1925 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDiv__SWIG_0___")]
1926 public static extern global::System.IntPtr Solver_MakeDiv__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1927
1928 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDiv__SWIG_1___")]
1929 public static extern global::System.IntPtr Solver_MakeDiv__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1930
1931 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAbs___")]
1932 public static extern global::System.IntPtr Solver_MakeAbs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1933
1934 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSquare___")]
1935 public static extern global::System.IntPtr Solver_MakeSquare(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1936
1937 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePower___")]
1938 public static extern global::System.IntPtr Solver_MakePower(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1939
1940 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElement__SWIG_0___")]
1941 public static extern global::System.IntPtr Solver_MakeElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1942
1943 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElement__SWIG_1___")]
1944 public static extern global::System.IntPtr Solver_MakeElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1945
1946 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElement__SWIG_2___")]
1947 public static extern global::System.IntPtr Solver_MakeElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1948
1949 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMonotonicElement___")]
1950 public static extern global::System.IntPtr Solver_MakeMonotonicElement(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1951
1952 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElement__SWIG_3___")]
1953 public static extern global::System.IntPtr Solver_MakeElement__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
1954
1955 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElement__SWIG_4___")]
1956 public static extern global::System.IntPtr Solver_MakeElement__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1957
1958 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIndexExpression___")]
1959 public static extern global::System.IntPtr Solver_MakeIndexExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1960
1961 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIfThenElseCt___")]
1962 public static extern global::System.IntPtr Solver_MakeIfThenElseCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
1963
1964 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMin__SWIG_0___")]
1965 public static extern global::System.IntPtr Solver_MakeMin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1966
1967 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMin__SWIG_1___")]
1968 public static extern global::System.IntPtr Solver_MakeMin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1969
1970 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMin__SWIG_2___")]
1971 public static extern global::System.IntPtr Solver_MakeMin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1972
1973 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMin__SWIG_3___")]
1974 public static extern global::System.IntPtr Solver_MakeMin__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1975
1976 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMax__SWIG_0___")]
1977 public static extern global::System.IntPtr Solver_MakeMax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1978
1979 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMax__SWIG_1___")]
1980 public static extern global::System.IntPtr Solver_MakeMax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1981
1982 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMax__SWIG_2___")]
1983 public static extern global::System.IntPtr Solver_MakeMax__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1984
1985 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMax__SWIG_3___")]
1986 public static extern global::System.IntPtr Solver_MakeMax__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
1987
1988 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeConvexPiecewiseExpr___")]
1989 public static extern global::System.IntPtr Solver_MakeConvexPiecewiseExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, long jarg6);
1990
1991 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSemiContinuousExpr___")]
1992 public static extern global::System.IntPtr Solver_MakeSemiContinuousExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
1993
1994 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeModulo__SWIG_0___")]
1995 public static extern global::System.IntPtr Solver_MakeModulo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1996
1997 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeModulo__SWIG_1___")]
1998 public static extern global::System.IntPtr Solver_MakeModulo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1999
2000 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeConditionalExpression___")]
2001 public static extern global::System.IntPtr Solver_MakeConditionalExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2002
2003 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTrueConstraint___")]
2004 public static extern global::System.IntPtr Solver_MakeTrueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
2005
2006 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFalseConstraint__SWIG_0___")]
2007 public static extern global::System.IntPtr Solver_MakeFalseConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2008
2009 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFalseConstraint__SWIG_1___")]
2010 public static extern global::System.IntPtr Solver_MakeFalseConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2011
2012 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsEqualCstCt___")]
2013 public static extern global::System.IntPtr Solver_MakeIsEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2014
2015 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsEqualCstVar___")]
2016 public static extern global::System.IntPtr Solver_MakeIsEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2017
2018 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsEqualCt___")]
2019 public static extern global::System.IntPtr Solver_MakeIsEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2020
2021 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsEqualVar___")]
2022 public static extern global::System.IntPtr Solver_MakeIsEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2023
2024 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeEquality__SWIG_0___")]
2025 public static extern global::System.IntPtr Solver_MakeEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2026
2027 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeEquality__SWIG_1___")]
2028 public static extern global::System.IntPtr Solver_MakeEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2029
2030 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeEquality__SWIG_2___")]
2031 public static extern global::System.IntPtr Solver_MakeEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2032
2033 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsDifferentCstCt___")]
2034 public static extern global::System.IntPtr Solver_MakeIsDifferentCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2035
2036 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsDifferentCstVar___")]
2037 public static extern global::System.IntPtr Solver_MakeIsDifferentCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2038
2039 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsDifferentVar___")]
2040 public static extern global::System.IntPtr Solver_MakeIsDifferentVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2041
2042 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsDifferentCt___")]
2043 public static extern global::System.IntPtr Solver_MakeIsDifferentCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2044
2045 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonEquality__SWIG_0___")]
2046 public static extern global::System.IntPtr Solver_MakeNonEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2047
2048 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonEquality__SWIG_1___")]
2049 public static extern global::System.IntPtr Solver_MakeNonEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2050
2051 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonEquality__SWIG_2___")]
2052 public static extern global::System.IntPtr Solver_MakeNonEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2053
2054 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessOrEqualCstCt___")]
2055 public static extern global::System.IntPtr Solver_MakeIsLessOrEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2056
2057 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessOrEqualCstVar___")]
2058 public static extern global::System.IntPtr Solver_MakeIsLessOrEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2059
2060 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessOrEqualVar___")]
2061 public static extern global::System.IntPtr Solver_MakeIsLessOrEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2062
2063 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessOrEqualCt___")]
2064 public static extern global::System.IntPtr Solver_MakeIsLessOrEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2065
2066 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLessOrEqual__SWIG_0___")]
2067 public static extern global::System.IntPtr Solver_MakeLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2068
2069 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLessOrEqual__SWIG_1___")]
2070 public static extern global::System.IntPtr Solver_MakeLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2071
2072 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLessOrEqual__SWIG_2___")]
2073 public static extern global::System.IntPtr Solver_MakeLessOrEqual__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2074
2075 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterOrEqualCstCt___")]
2076 public static extern global::System.IntPtr Solver_MakeIsGreaterOrEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2077
2078 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterOrEqualCstVar___")]
2079 public static extern global::System.IntPtr Solver_MakeIsGreaterOrEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2080
2081 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterOrEqualVar___")]
2082 public static extern global::System.IntPtr Solver_MakeIsGreaterOrEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2083
2084 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterOrEqualCt___")]
2085 public static extern global::System.IntPtr Solver_MakeIsGreaterOrEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2086
2087 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreaterOrEqual__SWIG_0___")]
2088 public static extern global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2089
2090 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreaterOrEqual__SWIG_1___")]
2091 public static extern global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2092
2093 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreaterOrEqual__SWIG_2___")]
2094 public static extern global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2095
2096 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterCstCt___")]
2097 public static extern global::System.IntPtr Solver_MakeIsGreaterCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2098
2099 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterCstVar___")]
2100 public static extern global::System.IntPtr Solver_MakeIsGreaterCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2101
2102 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterVar___")]
2103 public static extern global::System.IntPtr Solver_MakeIsGreaterVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2104
2105 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsGreaterCt___")]
2106 public static extern global::System.IntPtr Solver_MakeIsGreaterCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2107
2108 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreater__SWIG_0___")]
2109 public static extern global::System.IntPtr Solver_MakeGreater__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2110
2111 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreater__SWIG_1___")]
2112 public static extern global::System.IntPtr Solver_MakeGreater__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2113
2114 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGreater__SWIG_2___")]
2115 public static extern global::System.IntPtr Solver_MakeGreater__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2116
2117 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessCstCt___")]
2118 public static extern global::System.IntPtr Solver_MakeIsLessCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2119
2120 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessCstVar___")]
2121 public static extern global::System.IntPtr Solver_MakeIsLessCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2122
2123 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessVar___")]
2124 public static extern global::System.IntPtr Solver_MakeIsLessVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2125
2126 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLessCt___")]
2127 public static extern global::System.IntPtr Solver_MakeIsLessCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2128
2129 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLess__SWIG_0___")]
2130 public static extern global::System.IntPtr Solver_MakeLess__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2131
2132 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLess__SWIG_1___")]
2133 public static extern global::System.IntPtr Solver_MakeLess__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2134
2135 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLess__SWIG_2___")]
2136 public static extern global::System.IntPtr Solver_MakeLess__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2137
2138 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumLessOrEqual___")]
2139 public static extern global::System.IntPtr Solver_MakeSumLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2140
2141 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumGreaterOrEqual___")]
2142 public static extern global::System.IntPtr Solver_MakeSumGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2143
2144 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumEquality__SWIG_0___")]
2145 public static extern global::System.IntPtr Solver_MakeSumEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2146
2147 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumEquality__SWIG_1___")]
2148 public static extern global::System.IntPtr Solver_MakeSumEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2149
2150 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdEquality__SWIG_0___")]
2151 public static extern global::System.IntPtr Solver_MakeScalProdEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4);
2152
2153 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdEquality__SWIG_1___")]
2154 public static extern global::System.IntPtr Solver_MakeScalProdEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4);
2155
2156 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdEquality__SWIG_2___")]
2157 public static extern global::System.IntPtr Solver_MakeScalProdEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2158
2159 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdEquality__SWIG_3___")]
2160 public static extern global::System.IntPtr Solver_MakeScalProdEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2161
2162 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdGreaterOrEqual__SWIG_0___")]
2163 public static extern global::System.IntPtr Solver_MakeScalProdGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4);
2164
2165 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdGreaterOrEqual__SWIG_1___")]
2166 public static extern global::System.IntPtr Solver_MakeScalProdGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4);
2167
2168 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdLessOrEqual__SWIG_0___")]
2169 public static extern global::System.IntPtr Solver_MakeScalProdLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4);
2170
2171 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScalProdLessOrEqual__SWIG_1___")]
2172 public static extern global::System.IntPtr Solver_MakeScalProdLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4);
2173
2174 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMinEquality___")]
2175 public static extern global::System.IntPtr Solver_MakeMinEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2176
2177 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMaxEquality___")]
2178 public static extern global::System.IntPtr Solver_MakeMaxEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2179
2180 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElementEquality__SWIG_0___")]
2181 public static extern global::System.IntPtr Solver_MakeElementEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2182
2183 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElementEquality__SWIG_1___")]
2184 public static extern global::System.IntPtr Solver_MakeElementEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2185
2186 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElementEquality__SWIG_2___")]
2187 public static extern global::System.IntPtr Solver_MakeElementEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2188
2189 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeElementEquality__SWIG_3___")]
2190 public static extern global::System.IntPtr Solver_MakeElementEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2191
2192 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAbsEquality___")]
2193 public static extern global::System.IntPtr Solver_MakeAbsEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2194
2195 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIndexOfConstraint___")]
2196 public static extern global::System.IntPtr Solver_MakeIndexOfConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2197
2198 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeConstraintInitialPropagateCallback___")]
2199 public static extern global::System.IntPtr Solver_MakeConstraintInitialPropagateCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2200
2201 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDelayedConstraintInitialPropagateCallback___")]
2202 public static extern global::System.IntPtr Solver_MakeDelayedConstraintInitialPropagateCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2203
2204 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeClosureDemon___")]
2205 public static extern global::System.IntPtr Solver_MakeClosureDemon(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
2206
2207 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBetweenCt___")]
2208 public static extern global::System.IntPtr Solver_MakeBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2209
2210 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNotBetweenCt___")]
2211 public static extern global::System.IntPtr Solver_MakeNotBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2212
2213 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsBetweenCt___")]
2214 public static extern global::System.IntPtr Solver_MakeIsBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2215
2216 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsBetweenVar___")]
2217 public static extern global::System.IntPtr Solver_MakeIsBetweenVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2218
2219 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMemberCt__SWIG_0___")]
2220 public static extern global::System.IntPtr Solver_MakeMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2221
2222 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMemberCt__SWIG_1___")]
2223 public static extern global::System.IntPtr Solver_MakeMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
2224
2225 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNotMemberCt__SWIG_0___")]
2226 public static extern global::System.IntPtr Solver_MakeNotMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2227
2228 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNotMemberCt__SWIG_1___")]
2229 public static extern global::System.IntPtr Solver_MakeNotMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
2230
2231 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNotMemberCt__SWIG_2___")]
2232 public static extern global::System.IntPtr Solver_MakeNotMemberCt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4);
2233
2234 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNotMemberCt__SWIG_3___")]
2235 public static extern global::System.IntPtr Solver_MakeNotMemberCt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4);
2236
2237 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsMemberCt__SWIG_0___")]
2238 public static extern global::System.IntPtr Solver_MakeIsMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2239
2240 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsMemberCt__SWIG_1___")]
2241 public static extern global::System.IntPtr Solver_MakeIsMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2242
2243 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsMemberVar__SWIG_0___")]
2244 public static extern global::System.IntPtr Solver_MakeIsMemberVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2245
2246 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsMemberVar__SWIG_1___")]
2247 public static extern global::System.IntPtr Solver_MakeIsMemberVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
2248
2249 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCount__SWIG_0___")]
2250 public static extern global::System.IntPtr Solver_MakeCount__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2251
2252 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCount__SWIG_1___")]
2253 public static extern global::System.IntPtr Solver_MakeCount__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2254
2255 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_0___")]
2256 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2257
2258 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_1___")]
2259 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2260
2261 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_2___")]
2262 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2263
2264 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_3___")]
2265 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5);
2266
2267 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_4___")]
2268 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4);
2269
2270 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_5___")]
2271 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4);
2272
2273 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_6___")]
2274 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4, int length5, long[] jarg5);
2275
2276 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDistribute__SWIG_7___")]
2277 public static extern global::System.IntPtr Solver_MakeDistribute__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5);
2278
2279 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDeviation___")]
2280 public static extern global::System.IntPtr Solver_MakeDeviation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2281
2282 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllDifferent__SWIG_0___")]
2283 public static extern global::System.IntPtr Solver_MakeAllDifferent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2284
2285 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllDifferent__SWIG_1___")]
2286 public static extern global::System.IntPtr Solver_MakeAllDifferent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
2287
2288 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllDifferentExcept___")]
2289 public static extern global::System.IntPtr Solver_MakeAllDifferentExcept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2290
2291 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSortingConstraint___")]
2292 public static extern global::System.IntPtr Solver_MakeSortingConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2293
2294 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicalLess___")]
2295 public static extern global::System.IntPtr Solver_MakeLexicalLess(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2296
2297 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicalLessOrEqual___")]
2298 public static extern global::System.IntPtr Solver_MakeLexicalLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2299
2300 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicalLessOrEqualWithOffsets___")]
2301 public static extern global::System.IntPtr Solver_MakeLexicalLessOrEqualWithOffsets(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4);
2302
2303 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIsLexicalLessOrEqualWithOffsetsCt___")]
2304 public static extern global::System.IntPtr Solver_MakeIsLexicalLessOrEqualWithOffsetsCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2305
2306 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeInversePermutationConstraint___")]
2307 public static extern global::System.IntPtr Solver_MakeInversePermutationConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2308
2309 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIndexOfFirstMaxValueConstraint___")]
2310 public static extern global::System.IntPtr Solver_MakeIndexOfFirstMaxValueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2311
2312 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIndexOfFirstMinValueConstraint___")]
2313 public static extern global::System.IntPtr Solver_MakeIndexOfFirstMinValueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2314
2315 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNullIntersect___")]
2316 public static extern global::System.IntPtr Solver_MakeNullIntersect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2317
2318 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNullIntersectExcept___")]
2319 public static extern global::System.IntPtr Solver_MakeNullIntersectExcept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2320
2321 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNoCycle__SWIG_0___")]
2322 public static extern global::System.IntPtr Solver_MakeNoCycle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongToBoolean jarg4);
2323
2324 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNoCycle__SWIG_1___")]
2325 public static extern global::System.IntPtr Solver_MakeNoCycle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2326
2327 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNoCycle__SWIG_2___")]
2328 public static extern global::System.IntPtr Solver_MakeNoCycle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongToBoolean jarg4, bool jarg5);
2329
2330 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCircuit___")]
2331 public static extern global::System.IntPtr Solver_MakeCircuit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2332
2333 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSubCircuit___")]
2334 public static extern global::System.IntPtr Solver_MakeSubCircuit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2335
2336 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePathCumul__SWIG_0___")]
2337 public static extern global::System.IntPtr Solver_MakePathCumul__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2338
2339 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDelayedPathCumul___")]
2340 public static extern global::System.IntPtr Solver_MakeDelayedPathCumul(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2341
2342 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePathCumul__SWIG_1___")]
2343 public static extern global::System.IntPtr Solver_MakePathCumul__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, LongLongToLong jarg5);
2344
2345 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePathCumul__SWIG_2___")]
2346 public static extern global::System.IntPtr Solver_MakePathCumul__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, LongLongToLong jarg6);
2347
2348 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePathConnected___")]
2349 public static extern global::System.IntPtr Solver_MakePathConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2350
2351 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMapDomain___")]
2352 public static extern global::System.IntPtr Solver_MakeMapDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2353
2354 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllowedAssignments___")]
2355 public static extern global::System.IntPtr Solver_MakeAllowedAssignments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2356
2357 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTransitionConstraint__SWIG_0___")]
2358 public static extern global::System.IntPtr Solver_MakeTransitionConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int length5, long[] jarg5);
2359
2360 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTransitionConstraint__SWIG_1___")]
2361 public static extern global::System.IntPtr Solver_MakeTransitionConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int length5, int[] jarg5);
2362
2363 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingBoxesConstraint__SWIG_0___")]
2364 public static extern global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2365
2366 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingBoxesConstraint__SWIG_1___")]
2367 public static extern global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2368
2369 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingBoxesConstraint__SWIG_2___")]
2370 public static extern global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2371
2372 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_0___")]
2373 public static extern global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2374
2375 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_1___")]
2376 public static extern global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2377
2378 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_2___")]
2379 public static extern global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2380
2381 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePack___")]
2382 public static extern global::System.IntPtr Solver_MakePack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2383
2384 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationIntervalVar__SWIG_0___")]
2385 public static extern global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, bool jarg5, string jarg6);
2386
2387 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationIntervalVar__SWIG_1___")]
2388 public static extern global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, string jarg4);
2389
2390 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationIntervalVar__SWIG_2___")]
2391 public static extern global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5);
2392
2393 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedInterval___")]
2394 public static extern global::System.IntPtr Solver_MakeFixedInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4);
2395
2396 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalVar___")]
2397 public static extern global::System.IntPtr Solver_MakeIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, bool jarg8, string jarg9);
2398
2399 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalVarArray___")]
2400 public static extern void Solver_MakeIntervalVarArray(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8, bool jarg9, string jarg10, global::System.Runtime.InteropServices.HandleRef jarg11);
2401
2402 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMirrorInterval___")]
2403 public static extern global::System.IntPtr Solver_MakeMirrorInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2404
2405 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationStartSyncedOnStartIntervalVar___")]
2406 public static extern global::System.IntPtr Solver_MakeFixedDurationStartSyncedOnStartIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2407
2408 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationStartSyncedOnEndIntervalVar___")]
2409 public static extern global::System.IntPtr Solver_MakeFixedDurationStartSyncedOnEndIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2410
2411 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationEndSyncedOnStartIntervalVar___")]
2412 public static extern global::System.IntPtr Solver_MakeFixedDurationEndSyncedOnStartIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2413
2414 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFixedDurationEndSyncedOnEndIntervalVar___")]
2415 public static extern global::System.IntPtr Solver_MakeFixedDurationEndSyncedOnEndIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
2416
2417 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalRelaxedMin___")]
2418 public static extern global::System.IntPtr Solver_MakeIntervalRelaxedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2419
2420 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalRelaxedMax___")]
2421 public static extern global::System.IntPtr Solver_MakeIntervalRelaxedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2422
2423 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalVarRelation__SWIG_0___")]
2424 public static extern global::System.IntPtr Solver_MakeIntervalVarRelation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, long jarg4);
2425
2426 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalVarRelation__SWIG_1___")]
2427 public static extern global::System.IntPtr Solver_MakeIntervalVarRelation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2428
2429 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeIntervalVarRelationWithDelay___")]
2430 public static extern global::System.IntPtr Solver_MakeIntervalVarRelationWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5);
2431
2432 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTemporalDisjunction__SWIG_0___")]
2433 public static extern global::System.IntPtr Solver_MakeTemporalDisjunction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2434
2435 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTemporalDisjunction__SWIG_1___")]
2436 public static extern global::System.IntPtr Solver_MakeTemporalDisjunction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2437
2438 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDisjunctiveConstraint___")]
2439 public static extern global::System.IntPtr Solver_MakeDisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
2440
2441 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeStrictDisjunctiveConstraint___")]
2442 public static extern global::System.IntPtr Solver_MakeStrictDisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
2443
2444 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_0___")]
2445 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4, string jarg5);
2446
2447 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_1___")]
2448 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4, string jarg5);
2449
2450 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_2___")]
2451 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5);
2452
2453 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_3___")]
2454 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5);
2455
2456 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_4___")]
2457 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, string jarg5);
2458
2459 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCumulative__SWIG_5___")]
2460 public static extern global::System.IntPtr Solver_MakeCumulative__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5);
2461
2462 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCover___")]
2463 public static extern global::System.IntPtr Solver_MakeCover(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2464
2465 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeEquality__SWIG_3___")]
2466 public static extern global::System.IntPtr Solver_MakeEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2467
2468 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignment__SWIG_0___")]
2469 public static extern global::System.IntPtr Solver_MakeAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2470
2471 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignment__SWIG_1___")]
2472 public static extern global::System.IntPtr Solver_MakeAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2473
2474 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFirstSolutionCollector__SWIG_0___")]
2475 public static extern global::System.IntPtr Solver_MakeFirstSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2476
2477 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFirstSolutionCollector__SWIG_1___")]
2478 public static extern global::System.IntPtr Solver_MakeFirstSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2479
2480 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLastSolutionCollector__SWIG_0___")]
2481 public static extern global::System.IntPtr Solver_MakeLastSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2482
2483 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLastSolutionCollector__SWIG_1___")]
2484 public static extern global::System.IntPtr Solver_MakeLastSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2485
2486 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBestValueSolutionCollector__SWIG_0___")]
2487 public static extern global::System.IntPtr Solver_MakeBestValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
2488
2489 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBestLexicographicValueSolutionCollector__SWIG_0___")]
2490 public static extern global::System.IntPtr Solver_MakeBestLexicographicValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2491
2492 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBestValueSolutionCollector__SWIG_1___")]
2493 public static extern global::System.IntPtr Solver_MakeBestValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2494
2495 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBestLexicographicValueSolutionCollector__SWIG_1___")]
2496 public static extern global::System.IntPtr Solver_MakeBestLexicographicValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2497
2498 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNBestValueSolutionCollector__SWIG_0___")]
2499 public static extern global::System.IntPtr Solver_MakeNBestValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, bool jarg4);
2500
2501 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNBestValueSolutionCollector__SWIG_1___")]
2502 public static extern global::System.IntPtr Solver_MakeNBestValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
2503
2504 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_0___")]
2505 public static extern global::System.IntPtr Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2506
2507 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_1___")]
2508 public static extern global::System.IntPtr Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2509
2510 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllSolutionCollector__SWIG_0___")]
2511 public static extern global::System.IntPtr Solver_MakeAllSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2512
2513 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAllSolutionCollector__SWIG_1___")]
2514 public static extern global::System.IntPtr Solver_MakeAllSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2515
2516 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMinimize___")]
2517 public static extern global::System.IntPtr Solver_MakeMinimize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2518
2519 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMaximize___")]
2520 public static extern global::System.IntPtr Solver_MakeMaximize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2521
2522 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOptimize___")]
2523 public static extern global::System.IntPtr Solver_MakeOptimize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
2524
2525 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedMinimize__SWIG_0___")]
2526 public static extern global::System.IntPtr Solver_MakeWeightedMinimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4);
2527
2528 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedMinimize__SWIG_1___")]
2529 public static extern global::System.IntPtr Solver_MakeWeightedMinimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4);
2530
2531 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedMaximize__SWIG_0___")]
2532 public static extern global::System.IntPtr Solver_MakeWeightedMaximize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4);
2533
2534 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedMaximize__SWIG_1___")]
2535 public static extern global::System.IntPtr Solver_MakeWeightedMaximize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4);
2536
2537 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedOptimize__SWIG_0___")]
2538 public static extern global::System.IntPtr Solver_MakeWeightedOptimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, long jarg5);
2539
2540 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeWeightedOptimize__SWIG_1___")]
2541 public static extern global::System.IntPtr Solver_MakeWeightedOptimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, int[] jarg4, long jarg5);
2542
2543 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicographicOptimize___")]
2544 public static extern global::System.IntPtr Solver_MakeLexicographicOptimize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4);
2545
2546 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTabuSearch___")]
2547 public static extern global::System.IntPtr Solver_MakeTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6, long jarg7, double jarg8);
2548
2549 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicographicTabuSearch___")]
2550 public static extern global::System.IntPtr Solver_MakeLexicographicTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6, long jarg7, double jarg8);
2551
2552 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeGenericTabuSearch___")]
2553 public static extern global::System.IntPtr Solver_MakeGenericTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6);
2554
2555 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSimulatedAnnealing___")]
2556 public static extern global::System.IntPtr Solver_MakeSimulatedAnnealing(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5);
2557
2558 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicographicSimulatedAnnealing___")]
2559 public static extern global::System.IntPtr Solver_MakeLexicographicSimulatedAnnealing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int length5, long[] jarg5);
2560
2561 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRoundRobinCompoundObjectiveMonitor___")]
2562 public static extern global::System.IntPtr Solver_MakeRoundRobinCompoundObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2563
2564 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLubyRestart___")]
2565 public static extern global::System.IntPtr Solver_MakeLubyRestart(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2566
2567 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeConstantRestart___")]
2568 public static extern global::System.IntPtr Solver_MakeConstantRestart(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2569
2570 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTimeLimit__SWIG_0___")]
2571 public static extern global::System.IntPtr Solver_MakeTimeLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2572
2573 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeTimeLimit__SWIG_1___")]
2574 public static extern global::System.IntPtr Solver_MakeTimeLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2575
2576 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeBranchesLimit___")]
2577 public static extern global::System.IntPtr Solver_MakeBranchesLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2578
2579 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFailuresLimit___")]
2580 public static extern global::System.IntPtr Solver_MakeFailuresLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2581
2582 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolutionsLimit___")]
2583 public static extern global::System.IntPtr Solver_MakeSolutionsLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2584
2585 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_0___")]
2586 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7);
2587
2588 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_1___")]
2589 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6);
2590
2591 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_2___")]
2592 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5);
2593
2594 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_3___")]
2595 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int proto_size, byte[] jarg2);
2596
2597 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_4___")]
2598 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7);
2599
2600 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_5___")]
2601 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, bool jarg6);
2602
2603 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_6___")]
2604 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5);
2605
2606 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDefaultRegularLimitParameters___")]
2607 public static extern System.IntPtr Solver_MakeDefaultRegularLimitParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
2608
2609 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLimit__SWIG_7___")]
2610 public static extern global::System.IntPtr Solver_MakeLimit__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2611
2612 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeImprovementLimit___")]
2613 public static extern global::System.IntPtr Solver_MakeImprovementLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, double jarg4, double jarg5, double jarg6, int jarg7);
2614
2615 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLexicographicImprovementLimit___")]
2616 public static extern global::System.IntPtr Solver_MakeLexicographicImprovementLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, double jarg6, int jarg7);
2617
2618 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeCustomLimit___")]
2619 public static extern global::System.IntPtr Solver_MakeCustomLimit(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToBoolean jarg2);
2620
2621 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_0___")]
2622 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2623
2624 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_1___")]
2625 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2626
2627 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_2___")]
2628 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, VoidToString jarg3);
2629
2630 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_3___")]
2631 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4);
2632
2633 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_4___")]
2634 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4);
2635
2636 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_5___")]
2637 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2638
2639 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchLog__SWIG_6___")]
2640 public static extern global::System.IntPtr Solver_MakeSearchLog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4);
2641
2642 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSearchTrace___")]
2643 public static extern global::System.IntPtr Solver_MakeSearchTrace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2644
2645 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeEnterSearchCallback___")]
2646 public static extern global::System.IntPtr Solver_MakeEnterSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
2647
2648 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeExitSearchCallback___")]
2649 public static extern global::System.IntPtr Solver_MakeExitSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
2650
2651 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAtSolutionCallback___")]
2652 public static extern global::System.IntPtr Solver_MakeAtSolutionCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
2653
2654 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePrintModelVisitor___")]
2655 public static extern global::System.IntPtr Solver_MakePrintModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1);
2656
2657 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeStatisticsModelVisitor___")]
2658 public static extern global::System.IntPtr Solver_MakeStatisticsModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1);
2659
2660 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSymmetryManager__SWIG_0___")]
2661 public static extern global::System.IntPtr Solver_MakeSymmetryManager__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2662
2663 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSymmetryManager__SWIG_1___")]
2664 public static extern global::System.IntPtr Solver_MakeSymmetryManager__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2665
2666 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSymmetryManager__SWIG_2___")]
2667 public static extern global::System.IntPtr Solver_MakeSymmetryManager__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2668
2669 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSymmetryManager__SWIG_3___")]
2670 public static extern global::System.IntPtr Solver_MakeSymmetryManager__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2671
2672 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSymmetryManager__SWIG_4___")]
2673 public static extern global::System.IntPtr Solver_MakeSymmetryManager__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2674
2675 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariableValue___")]
2676 public static extern global::System.IntPtr Solver_MakeAssignVariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2677
2678 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeVariableLessOrEqualValue___")]
2679 public static extern global::System.IntPtr Solver_MakeVariableLessOrEqualValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2680
2681 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeVariableGreaterOrEqualValue___")]
2682 public static extern global::System.IntPtr Solver_MakeVariableGreaterOrEqualValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2683
2684 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSplitVariableDomain___")]
2685 public static extern global::System.IntPtr Solver_MakeSplitVariableDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, bool jarg4);
2686
2687 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariableValueOrFail___")]
2688 public static extern global::System.IntPtr Solver_MakeAssignVariableValueOrFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2689
2690 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariableValueOrDoNothing___")]
2691 public static extern global::System.IntPtr Solver_MakeAssignVariableValueOrDoNothing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2692
2693 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariablesValues___")]
2694 public static extern global::System.IntPtr Solver_MakeAssignVariablesValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2695
2696 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariablesValuesOrDoNothing___")]
2697 public static extern global::System.IntPtr Solver_MakeAssignVariablesValuesOrDoNothing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2698
2699 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAssignVariablesValuesOrFail___")]
2700 public static extern global::System.IntPtr Solver_MakeAssignVariablesValuesOrFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2701
2702 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeFailDecision___")]
2703 public static extern global::System.IntPtr Solver_MakeFailDecision(global::System.Runtime.InteropServices.HandleRef jarg1);
2704
2705 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDecision___")]
2706 public static extern global::System.IntPtr Solver_MakeDecision(global::System.Runtime.InteropServices.HandleRef jarg1, SolverToVoid jarg2, SolverToVoid jarg3);
2707
2708 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Compose__SWIG_0___")]
2709 public static extern global::System.IntPtr Solver_Compose__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2710
2711 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Compose__SWIG_1___")]
2712 public static extern global::System.IntPtr Solver_Compose__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2713
2714 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Compose__SWIG_2___")]
2715 public static extern global::System.IntPtr Solver_Compose__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2716
2717 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Compose__SWIG_3___")]
2718 public static extern global::System.IntPtr Solver_Compose__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2719
2720 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Try__SWIG_0___")]
2721 public static extern global::System.IntPtr Solver_Try__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2722
2723 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Try__SWIG_1___")]
2724 public static extern global::System.IntPtr Solver_Try__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2725
2726 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Try__SWIG_2___")]
2727 public static extern global::System.IntPtr Solver_Try__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2728
2729 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Try__SWIG_3___")]
2730 public static extern global::System.IntPtr Solver_Try__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2731
2732 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_0___")]
2733 public static extern global::System.IntPtr Solver_MakePhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4);
2734
2735 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_1___")]
2736 public static extern global::System.IntPtr Solver_MakePhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, int jarg4);
2737
2738 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_2___")]
2739 public static extern global::System.IntPtr Solver_MakePhase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongToLong jarg4);
2740
2741 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_3___")]
2742 public static extern global::System.IntPtr Solver_MakePhase__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongLongToBoolean jarg4);
2743
2744 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_4___")]
2745 public static extern global::System.IntPtr Solver_MakePhase__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, LongLongToLong jarg4);
2746
2747 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_5___")]
2748 public static extern global::System.IntPtr Solver_MakePhase__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongToLong jarg4, LongToLong jarg5);
2749
2750 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_6___")]
2751 public static extern global::System.IntPtr Solver_MakePhase__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, LongLongToLong jarg4, LongToLong jarg5);
2752
2753 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDefaultPhase__SWIG_0___")]
2754 public static extern global::System.IntPtr Solver_MakeDefaultPhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2755
2756 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDefaultPhase__SWIG_1___")]
2757 public static extern global::System.IntPtr Solver_MakeDefaultPhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2758
2759 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_7___")]
2760 public static extern global::System.IntPtr Solver_MakePhase__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4);
2761
2762 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_8___")]
2763 public static extern global::System.IntPtr Solver_MakePhase__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5);
2764
2765 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_9___")]
2766 public static extern global::System.IntPtr Solver_MakePhase__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6);
2767
2768 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_10___")]
2769 public static extern global::System.IntPtr Solver_MakePhase__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, int jarg7);
2770
2771 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScheduleOrPostpone___")]
2772 public static extern global::System.IntPtr Solver_MakeScheduleOrPostpone(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, ref int jarg4);
2773
2774 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeScheduleOrExpedite___")]
2775 public static extern global::System.IntPtr Solver_MakeScheduleOrExpedite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, ref int jarg4);
2776
2777 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRankFirstInterval___")]
2778 public static extern global::System.IntPtr Solver_MakeRankFirstInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2779
2780 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRankLastInterval___")]
2781 public static extern global::System.IntPtr Solver_MakeRankLastInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2782
2783 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_11___")]
2784 public static extern global::System.IntPtr Solver_MakePhase__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, int jarg4);
2785
2786 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_12___")]
2787 public static extern global::System.IntPtr Solver_MakePhase__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, LongToLong jarg4, int jarg5);
2788
2789 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_13___")]
2790 public static extern global::System.IntPtr Solver_MakePhase__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2791
2792 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakePhase__SWIG_14___")]
2793 public static extern global::System.IntPtr Solver_MakePhase__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2794
2795 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDecisionBuilderFromAssignment___")]
2796 public static extern global::System.IntPtr Solver_MakeDecisionBuilderFromAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2797
2798 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeConstraintAdder___")]
2799 public static extern global::System.IntPtr Solver_MakeConstraintAdder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2800
2801 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_0___")]
2802 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2803
2804 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_1___")]
2805 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2806
2807 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_2___")]
2808 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2809
2810 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_3___")]
2811 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2812
2813 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_4___")]
2814 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2815
2816 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSolveOnce__SWIG_5___")]
2817 public static extern global::System.IntPtr Solver_MakeSolveOnce__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2818
2819 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_0___")]
2820 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5);
2821
2822 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_1___")]
2823 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2824
2825 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_2___")]
2826 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2827
2828 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_3___")]
2829 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8);
2830
2831 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_4___")]
2832 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9);
2833
2834 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNestedOptimize__SWIG_5___")]
2835 public static extern global::System.IntPtr Solver_MakeNestedOptimize__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2836
2837 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRestoreAssignment___")]
2838 public static extern global::System.IntPtr Solver_MakeRestoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2839
2840 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeStoreAssignment___")]
2841 public static extern global::System.IntPtr Solver_MakeStoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2842
2843 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_0___")]
2844 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2845
2846 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_1___")]
2847 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2848
2849 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_2___")]
2850 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2851
2852 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_3___")]
2853 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2854
2855 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_4___")]
2856 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2857
2858 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_5___")]
2859 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
2860
2861 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_6___")]
2862 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongLongToLong jarg3, int jarg4);
2863
2864 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeOperator__SWIG_7___")]
2865 public static extern global::System.IntPtr Solver_MakeOperator__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongLongLongToLong jarg4, int jarg5);
2866
2867 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRandomLnsOperator__SWIG_0___")]
2868 public static extern global::System.IntPtr Solver_MakeRandomLnsOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2869
2870 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRandomLnsOperator__SWIG_1___")]
2871 public static extern global::System.IntPtr Solver_MakeRandomLnsOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4);
2872
2873 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMoveTowardTargetOperator__SWIG_0___")]
2874 public static extern global::System.IntPtr Solver_MakeMoveTowardTargetOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2875
2876 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeMoveTowardTargetOperator__SWIG_1___")]
2877 public static extern global::System.IntPtr Solver_MakeMoveTowardTargetOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
2878
2879 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ConcatenateOperators__SWIG_0___")]
2880 public static extern global::System.IntPtr Solver_ConcatenateOperators__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2881
2882 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ConcatenateOperators__SWIG_1___")]
2883 public static extern global::System.IntPtr Solver_ConcatenateOperators__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
2884
2885 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ConcatenateOperators__SWIG_2___")]
2886 public static extern global::System.IntPtr Solver_ConcatenateOperators__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntIntToLong jarg3);
2887
2888 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RandomConcatenateOperators__SWIG_0___")]
2889 public static extern global::System.IntPtr Solver_RandomConcatenateOperators__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2890
2891 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RandomConcatenateOperators__SWIG_1___")]
2892 public static extern global::System.IntPtr Solver_RandomConcatenateOperators__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
2893
2894 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MultiArmedBanditConcatenateOperators___")]
2895 public static extern global::System.IntPtr Solver_MultiArmedBanditConcatenateOperators(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, double jarg4, bool jarg5);
2896
2897 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeNeighborhoodLimit___")]
2898 public static extern global::System.IntPtr Solver_MakeNeighborhoodLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
2899
2900 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhase__SWIG_0___")]
2901 public static extern global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
2902
2903 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhase__SWIG_1___")]
2904 public static extern global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2905
2906 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhase__SWIG_2___")]
2907 public static extern global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2908
2909 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhase__SWIG_3___")]
2910 public static extern global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2911
2912 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RunUncheckedLocalSearch__SWIG_0___")]
2913 public static extern global::System.IntPtr Solver_RunUncheckedLocalSearch__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2914
2915 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RunUncheckedLocalSearch__SWIG_1___")]
2916 public static extern global::System.IntPtr Solver_RunUncheckedLocalSearch__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2917
2918 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeDefaultSolutionPool___")]
2919 public static extern global::System.IntPtr Solver_MakeDefaultSolutionPool(global::System.Runtime.InteropServices.HandleRef jarg1);
2920
2921 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_0___")]
2922 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
2923
2924 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_1___")]
2925 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2926
2927 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_2___")]
2928 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2929
2930 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_3___")]
2931 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
2932
2933 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_4___")]
2934 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6);
2935
2936 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeLocalSearchPhaseParameters__SWIG_5___")]
2937 public static extern global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
2938
2939 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeAcceptFilter___")]
2940 public static extern global::System.IntPtr Solver_MakeAcceptFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
2941
2942 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeRejectFilter___")]
2943 public static extern global::System.IntPtr Solver_MakeRejectFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
2944
2945 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeVariableDomainFilter___")]
2946 public static extern global::System.IntPtr Solver_MakeVariableDomainFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
2947
2948 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumObjectiveFilter__SWIG_0___")]
2949 public static extern global::System.IntPtr Solver_MakeSumObjectiveFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, int jarg4);
2950
2951 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeSumObjectiveFilter__SWIG_1___")]
2952 public static extern global::System.IntPtr Solver_MakeSumObjectiveFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongLongLongToLong jarg4, int jarg5);
2953
2954 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_TopPeriodicCheck___")]
2955 public static extern void Solver_TopPeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1);
2956
2957 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_TopProgressPercent___")]
2958 public static extern int Solver_TopProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1);
2959
2960 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_PushState___")]
2961 public static extern void Solver_PushState(global::System.Runtime.InteropServices.HandleRef jarg1);
2962
2963 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_PopState___")]
2964 public static extern void Solver_PopState(global::System.Runtime.InteropServices.HandleRef jarg1);
2965
2966 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SearchDepth___")]
2967 public static extern int Solver_SearchDepth(global::System.Runtime.InteropServices.HandleRef jarg1);
2968
2969 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SearchLeftDepth___")]
2970 public static extern int Solver_SearchLeftDepth(global::System.Runtime.InteropServices.HandleRef jarg1);
2971
2972 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SolveDepth___")]
2973 public static extern int Solver_SolveDepth(global::System.Runtime.InteropServices.HandleRef jarg1);
2974
2975 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Rand64___")]
2976 public static extern long Solver_Rand64(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2977
2978 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Rand32___")]
2979 public static extern int Solver_Rand32(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2980
2981 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ReSeed___")]
2982 public static extern void Solver_ReSeed(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2983
2984 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ExportProfilingOverview___")]
2985 public static extern void Solver_ExportProfilingOverview(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2986
2987 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_LocalSearchProfile___")]
2988 public static extern string Solver_LocalSearchProfile(global::System.Runtime.InteropServices.HandleRef jarg1);
2989
2990 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CurrentlyInSolve___")]
2991 public static extern bool Solver_CurrentlyInSolve(global::System.Runtime.InteropServices.HandleRef jarg1);
2992
2993 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Constraints___")]
2994 public static extern int Solver_Constraints(global::System.Runtime.InteropServices.HandleRef jarg1);
2995
2996 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Accept___")]
2997 public static extern void Solver_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2998
2999 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_BalancingDecision___")]
3000 public static extern global::System.IntPtr Solver_BalancingDecision(global::System.Runtime.InteropServices.HandleRef jarg1);
3001
3002 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ClearFailIntercept___")]
3003 public static extern void Solver_ClearFailIntercept(global::System.Runtime.InteropServices.HandleRef jarg1);
3004
3005 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_SetUseFastLocalSearch___")]
3006 public static extern void Solver_SetUseFastLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3007
3008 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_UseFastLocalSearch___")]
3009 public static extern bool Solver_UseFastLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3010
3011 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_HasName___")]
3012 public static extern bool Solver_HasName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3013
3014 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RegisterDemon___")]
3015 public static extern global::System.IntPtr Solver_RegisterDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3016
3017 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RegisterIntExpr___")]
3018 public static extern global::System.IntPtr Solver_RegisterIntExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3019
3020 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RegisterIntVar___")]
3021 public static extern global::System.IntPtr Solver_RegisterIntVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3022
3023 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RegisterIntervalVar___")]
3024 public static extern global::System.IntPtr Solver_RegisterIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3025
3026 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_Cache___")]
3027 public static extern global::System.IntPtr Solver_Cache(global::System.Runtime.InteropServices.HandleRef jarg1);
3028
3029 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_InstrumentsDemons___")]
3030 public static extern bool Solver_InstrumentsDemons(global::System.Runtime.InteropServices.HandleRef jarg1);
3031
3032 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IsProfilingEnabled___")]
3033 public static extern bool Solver_IsProfilingEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
3034
3035 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_IsLocalSearchProfilingEnabled___")]
3036 public static extern bool Solver_IsLocalSearchProfilingEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
3037
3038 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_InstrumentsVariables___")]
3039 public static extern bool Solver_InstrumentsVariables(global::System.Runtime.InteropServices.HandleRef jarg1);
3040
3041 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_NameAllVariables___")]
3042 public static extern bool Solver_NameAllVariables(global::System.Runtime.InteropServices.HandleRef jarg1);
3043
3044 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ModelName___")]
3045 public static extern string Solver_ModelName(global::System.Runtime.InteropServices.HandleRef jarg1);
3046
3047 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_GetPropagationMonitor___")]
3048 public static extern global::System.IntPtr Solver_GetPropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3049
3050 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AddPropagationMonitor___")]
3051 public static extern void Solver_AddPropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3052
3053 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_GetLocalSearchMonitor___")]
3054 public static extern global::System.IntPtr Solver_GetLocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3055
3056 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_AddLocalSearchMonitor___")]
3057 public static extern void Solver_AddLocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3058
3059 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_GetOrCreateLocalSearchState___")]
3060 public static extern global::System.IntPtr Solver_GetOrCreateLocalSearchState(global::System.Runtime.InteropServices.HandleRef jarg1);
3061
3062 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ClearLocalSearchState___")]
3063 public static extern void Solver_ClearLocalSearchState(global::System.Runtime.InteropServices.HandleRef jarg1);
3064
3065 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CastExpression___")]
3066 public static extern global::System.IntPtr Solver_CastExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3067
3068 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_FinishCurrentSearch___")]
3069 public static extern void Solver_FinishCurrentSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3070
3071 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_RestartCurrentSearch___")]
3072 public static extern void Solver_RestartCurrentSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3073
3074 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_ShouldFail___")]
3075 public static extern void Solver_ShouldFail(global::System.Runtime.InteropServices.HandleRef jarg1);
3076
3077 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_CheckFail___")]
3078 public static extern void Solver_CheckFail(global::System.Runtime.InteropServices.HandleRef jarg1);
3079
3080 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Solver_MakeProfiledDecisionBuilderWrapper___")]
3081 public static extern global::System.IntPtr Solver_MakeProfiledDecisionBuilderWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3082
3083 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Zero___")]
3084 public static extern long Zero();
3085
3086 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_One___")]
3087 public static extern long One();
3088
3089 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_BaseObject___")]
3090 public static extern global::System.IntPtr new_BaseObject();
3091
3092 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BaseObject___")]
3093 public static extern void delete_BaseObject(global::System.Runtime.InteropServices.HandleRef jarg1);
3094
3095 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObject_ToString___")]
3096 public static extern string BaseObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3097
3098 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_PropagationBaseObject___")]
3099 public static extern global::System.IntPtr new_PropagationBaseObject(global::System.Runtime.InteropServices.HandleRef jarg1);
3100
3101 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_PropagationBaseObject___")]
3102 public static extern void delete_PropagationBaseObject(global::System.Runtime.InteropServices.HandleRef jarg1);
3103
3104 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_ToString___")]
3105 public static extern string PropagationBaseObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3106
3107 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_solver___")]
3108 public static extern global::System.IntPtr PropagationBaseObject_solver(global::System.Runtime.InteropServices.HandleRef jarg1);
3109
3110 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_FreezeQueue___")]
3111 public static extern void PropagationBaseObject_FreezeQueue(global::System.Runtime.InteropServices.HandleRef jarg1);
3112
3113 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_UnfreezeQueue___")]
3114 public static extern void PropagationBaseObject_UnfreezeQueue(global::System.Runtime.InteropServices.HandleRef jarg1);
3115
3116 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_EnqueueDelayedDemon___")]
3117 public static extern void PropagationBaseObject_EnqueueDelayedDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3118
3119 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_EnqueueVar___")]
3120 public static extern void PropagationBaseObject_EnqueueVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3121
3122 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_ResetActionOnFail___")]
3123 public static extern void PropagationBaseObject_ResetActionOnFail(global::System.Runtime.InteropServices.HandleRef jarg1);
3124
3125 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_SetVariableToCleanOnFail___")]
3126 public static extern void PropagationBaseObject_SetVariableToCleanOnFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3127
3128 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_Name___")]
3129 public static extern string PropagationBaseObject_Name(global::System.Runtime.InteropServices.HandleRef jarg1);
3130
3131 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_SetName___")]
3132 public static extern void PropagationBaseObject_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3133
3134 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_HasName___")]
3135 public static extern bool PropagationBaseObject_HasName(global::System.Runtime.InteropServices.HandleRef jarg1);
3136
3137 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_BaseName___")]
3138 public static extern string PropagationBaseObject_BaseName(global::System.Runtime.InteropServices.HandleRef jarg1);
3139
3140 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Decision___")]
3141 public static extern global::System.IntPtr new_Decision();
3142
3143 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Decision___")]
3144 public static extern void delete_Decision(global::System.Runtime.InteropServices.HandleRef jarg1);
3145
3146 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_ApplyWrapper___")]
3147 public static extern void Decision_ApplyWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3148
3149 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_RefuteWrapper___")]
3150 public static extern void Decision_RefuteWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3151
3152 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_ToString___")]
3153 public static extern string Decision_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3154
3155 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_ToStringSwigExplicitDecision___")]
3156 public static extern string Decision_ToStringSwigExplicitDecision(global::System.Runtime.InteropServices.HandleRef jarg1);
3157
3158 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_Accept___")]
3159 public static extern void Decision_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3160
3161 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_AcceptSwigExplicitDecision___")]
3162 public static extern void Decision_AcceptSwigExplicitDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3163
3164 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_director_connect___")]
3165 public static extern void Decision_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Decision.SwigDelegateDecision_0 delegate0, Decision.SwigDelegateDecision_1 delegate1, Decision.SwigDelegateDecision_2 delegate2, Decision.SwigDelegateDecision_3 delegate3);
3166
3167 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DecisionVisitor___")]
3168 public static extern global::System.IntPtr new_DecisionVisitor();
3169
3170 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_DecisionVisitor___")]
3171 public static extern void delete_DecisionVisitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3172
3173 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitSetVariableValue___")]
3174 public static extern void DecisionVisitor_VisitSetVariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
3175
3176 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitSplitVariableDomain___")]
3177 public static extern void DecisionVisitor_VisitSplitVariableDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, bool jarg4);
3178
3179 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitScheduleOrPostpone___")]
3180 public static extern void DecisionVisitor_VisitScheduleOrPostpone(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
3181
3182 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitScheduleOrExpedite___")]
3183 public static extern void DecisionVisitor_VisitScheduleOrExpedite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
3184
3185 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitRankFirstInterval___")]
3186 public static extern void DecisionVisitor_VisitRankFirstInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3187
3188 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitRankLastInterval___")]
3189 public static extern void DecisionVisitor_VisitRankLastInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
3190
3191 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_VisitUnknownDecision___")]
3192 public static extern void DecisionVisitor_VisitUnknownDecision(global::System.Runtime.InteropServices.HandleRef jarg1);
3193
3194 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_DecisionBuilder___")]
3195 public static extern global::System.IntPtr new_DecisionBuilder();
3196
3197 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_DecisionBuilder___")]
3198 public static extern void delete_DecisionBuilder(global::System.Runtime.InteropServices.HandleRef jarg1);
3199
3200 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_NextWrapper___")]
3201 public static extern global::System.IntPtr DecisionBuilder_NextWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3202
3203 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_ToString___")]
3204 public static extern string DecisionBuilder_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3205
3206 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_ToStringSwigExplicitDecisionBuilder___")]
3207 public static extern string DecisionBuilder_ToStringSwigExplicitDecisionBuilder(global::System.Runtime.InteropServices.HandleRef jarg1);
3208
3209 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_SetName___")]
3210 public static extern void DecisionBuilder_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3211
3212 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_GetName___")]
3213 public static extern string DecisionBuilder_GetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3214
3215 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_director_connect___")]
3216 public static extern void DecisionBuilder_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, DecisionBuilder.SwigDelegateDecisionBuilder_0 delegate0, DecisionBuilder.SwigDelegateDecisionBuilder_1 delegate1);
3217
3218 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Demon___")]
3219 public static extern global::System.IntPtr new_Demon();
3220
3221 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Demon___")]
3222 public static extern void delete_Demon(global::System.Runtime.InteropServices.HandleRef jarg1);
3223
3224 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_RunWrapper___")]
3225 public static extern void Demon_RunWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3226
3227 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_Priority___")]
3228 public static extern int Demon_Priority(global::System.Runtime.InteropServices.HandleRef jarg1);
3229
3230 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_PrioritySwigExplicitDemon___")]
3231 public static extern int Demon_PrioritySwigExplicitDemon(global::System.Runtime.InteropServices.HandleRef jarg1);
3232
3233 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_ToString___")]
3234 public static extern string Demon_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3235
3236 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_ToStringSwigExplicitDemon___")]
3237 public static extern string Demon_ToStringSwigExplicitDemon(global::System.Runtime.InteropServices.HandleRef jarg1);
3238
3239 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_Inhibit___")]
3240 public static extern void Demon_Inhibit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3241
3242 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_Desinhibit___")]
3243 public static extern void Demon_Desinhibit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3244
3245 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_director_connect___")]
3246 public static extern void Demon_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Demon.SwigDelegateDemon_0 delegate0, Demon.SwigDelegateDemon_1 delegate1, Demon.SwigDelegateDemon_2 delegate2);
3247
3248 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAbs_get___")]
3249 public static extern string ModelVisitor_kAbs_get();
3250
3251 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAbsEqual_get___")]
3252 public static extern string ModelVisitor_kAbsEqual_get();
3253
3254 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAllDifferent_get___")]
3255 public static extern string ModelVisitor_kAllDifferent_get();
3256
3257 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAllowedAssignments_get___")]
3258 public static extern string ModelVisitor_kAllowedAssignments_get();
3259
3260 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAtMost_get___")]
3261 public static extern string ModelVisitor_kAtMost_get();
3262
3263 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIndexOf_get___")]
3264 public static extern string ModelVisitor_kIndexOf_get();
3265
3266 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kBetween_get___")]
3267 public static extern string ModelVisitor_kBetween_get();
3268
3269 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kConditionalExpr_get___")]
3270 public static extern string ModelVisitor_kConditionalExpr_get();
3271
3272 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCircuit_get___")]
3273 public static extern string ModelVisitor_kCircuit_get();
3274
3275 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kConvexPiecewise_get___")]
3276 public static extern string ModelVisitor_kConvexPiecewise_get();
3277
3278 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCountEqual_get___")]
3279 public static extern string ModelVisitor_kCountEqual_get();
3280
3281 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCover_get___")]
3282 public static extern string ModelVisitor_kCover_get();
3283
3284 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCumulative_get___")]
3285 public static extern string ModelVisitor_kCumulative_get();
3286
3287 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDeviation_get___")]
3288 public static extern string ModelVisitor_kDeviation_get();
3289
3290 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDifference_get___")]
3291 public static extern string ModelVisitor_kDifference_get();
3292
3293 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDisjunctive_get___")]
3294 public static extern string ModelVisitor_kDisjunctive_get();
3295
3296 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDistribute_get___")]
3297 public static extern string ModelVisitor_kDistribute_get();
3298
3299 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDivide_get___")]
3300 public static extern string ModelVisitor_kDivide_get();
3301
3302 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDurationExpr_get___")]
3303 public static extern string ModelVisitor_kDurationExpr_get();
3304
3305 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kElement_get___")]
3306 public static extern string ModelVisitor_kElement_get();
3307
3308 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLightElementEqual_get___")]
3309 public static extern string ModelVisitor_kLightElementEqual_get();
3310
3311 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kElementEqual_get___")]
3312 public static extern string ModelVisitor_kElementEqual_get();
3313
3314 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEndExpr_get___")]
3315 public static extern string ModelVisitor_kEndExpr_get();
3316
3317 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEquality_get___")]
3318 public static extern string ModelVisitor_kEquality_get();
3319
3320 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kFalseConstraint_get___")]
3321 public static extern string ModelVisitor_kFalseConstraint_get();
3322
3323 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kGlobalCardinality_get___")]
3324 public static extern string ModelVisitor_kGlobalCardinality_get();
3325
3326 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kGreater_get___")]
3327 public static extern string ModelVisitor_kGreater_get();
3328
3329 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kGreaterOrEqual_get___")]
3330 public static extern string ModelVisitor_kGreaterOrEqual_get();
3331
3332 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntegerVariable_get___")]
3333 public static extern string ModelVisitor_kIntegerVariable_get();
3334
3335 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalBinaryRelation_get___")]
3336 public static extern string ModelVisitor_kIntervalBinaryRelation_get();
3337
3338 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalDisjunction_get___")]
3339 public static extern string ModelVisitor_kIntervalDisjunction_get();
3340
3341 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalUnaryRelation_get___")]
3342 public static extern string ModelVisitor_kIntervalUnaryRelation_get();
3343
3344 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalVariable_get___")]
3345 public static extern string ModelVisitor_kIntervalVariable_get();
3346
3347 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kInversePermutation_get___")]
3348 public static extern string ModelVisitor_kInversePermutation_get();
3349
3350 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsBetween_get___")]
3351 public static extern string ModelVisitor_kIsBetween_get();
3352
3353 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsDifferent_get___")]
3354 public static extern string ModelVisitor_kIsDifferent_get();
3355
3356 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsEqual_get___")]
3357 public static extern string ModelVisitor_kIsEqual_get();
3358
3359 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsGreater_get___")]
3360 public static extern string ModelVisitor_kIsGreater_get();
3361
3362 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsGreaterOrEqual_get___")]
3363 public static extern string ModelVisitor_kIsGreaterOrEqual_get();
3364
3365 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsLess_get___")]
3366 public static extern string ModelVisitor_kIsLess_get();
3367
3368 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsLessOrEqual_get___")]
3369 public static extern string ModelVisitor_kIsLessOrEqual_get();
3370
3371 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIsMember_get___")]
3372 public static extern string ModelVisitor_kIsMember_get();
3373
3374 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLess_get___")]
3375 public static extern string ModelVisitor_kLess_get();
3376
3377 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLessOrEqual_get___")]
3378 public static extern string ModelVisitor_kLessOrEqual_get();
3379
3380 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLexLess_get___")]
3381 public static extern string ModelVisitor_kLexLess_get();
3382
3383 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLinkExprVar_get___")]
3384 public static extern string ModelVisitor_kLinkExprVar_get();
3385
3386 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMapDomain_get___")]
3387 public static extern string ModelVisitor_kMapDomain_get();
3388
3389 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMax_get___")]
3390 public static extern string ModelVisitor_kMax_get();
3391
3392 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMaxEqual_get___")]
3393 public static extern string ModelVisitor_kMaxEqual_get();
3394
3395 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMember_get___")]
3396 public static extern string ModelVisitor_kMember_get();
3397
3398 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMin_get___")]
3399 public static extern string ModelVisitor_kMin_get();
3400
3401 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMinEqual_get___")]
3402 public static extern string ModelVisitor_kMinEqual_get();
3403
3404 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kModulo_get___")]
3405 public static extern string ModelVisitor_kModulo_get();
3406
3407 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNoCycle_get___")]
3408 public static extern string ModelVisitor_kNoCycle_get();
3409
3410 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNonEqual_get___")]
3411 public static extern string ModelVisitor_kNonEqual_get();
3412
3413 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNotBetween_get___")]
3414 public static extern string ModelVisitor_kNotBetween_get();
3415
3416 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNotMember_get___")]
3417 public static extern string ModelVisitor_kNotMember_get();
3418
3419 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNullIntersect_get___")]
3420 public static extern string ModelVisitor_kNullIntersect_get();
3421
3422 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kOpposite_get___")]
3423 public static extern string ModelVisitor_kOpposite_get();
3424
3425 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPack_get___")]
3426 public static extern string ModelVisitor_kPack_get();
3427
3428 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPathCumul_get___")]
3429 public static extern string ModelVisitor_kPathCumul_get();
3430
3431 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDelayedPathCumul_get___")]
3432 public static extern string ModelVisitor_kDelayedPathCumul_get();
3433
3434 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPerformedExpr_get___")]
3435 public static extern string ModelVisitor_kPerformedExpr_get();
3436
3437 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPower_get___")]
3438 public static extern string ModelVisitor_kPower_get();
3439
3440 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kProduct_get___")]
3441 public static extern string ModelVisitor_kProduct_get();
3442
3443 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kScalProd_get___")]
3444 public static extern string ModelVisitor_kScalProd_get();
3445
3446 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kScalProdEqual_get___")]
3447 public static extern string ModelVisitor_kScalProdEqual_get();
3448
3449 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kScalProdGreaterOrEqual_get___")]
3450 public static extern string ModelVisitor_kScalProdGreaterOrEqual_get();
3451
3452 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kScalProdLessOrEqual_get___")]
3453 public static extern string ModelVisitor_kScalProdLessOrEqual_get();
3454
3455 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSemiContinuous_get___")]
3456 public static extern string ModelVisitor_kSemiContinuous_get();
3457
3458 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSequenceVariable_get___")]
3459 public static extern string ModelVisitor_kSequenceVariable_get();
3460
3461 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSortingConstraint_get___")]
3462 public static extern string ModelVisitor_kSortingConstraint_get();
3463
3464 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSquare_get___")]
3465 public static extern string ModelVisitor_kSquare_get();
3466
3467 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartExpr_get___")]
3468 public static extern string ModelVisitor_kStartExpr_get();
3469
3470 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSum_get___")]
3471 public static extern string ModelVisitor_kSum_get();
3472
3473 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSumEqual_get___")]
3474 public static extern string ModelVisitor_kSumEqual_get();
3475
3476 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSumGreaterOrEqual_get___")]
3477 public static extern string ModelVisitor_kSumGreaterOrEqual_get();
3478
3479 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSumLessOrEqual_get___")]
3480 public static extern string ModelVisitor_kSumLessOrEqual_get();
3481
3482 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTrace_get___")]
3483 public static extern string ModelVisitor_kTrace_get();
3484
3485 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTransition_get___")]
3486 public static extern string ModelVisitor_kTransition_get();
3487
3488 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTrueConstraint_get___")]
3489 public static extern string ModelVisitor_kTrueConstraint_get();
3490
3491 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVarBoundWatcher_get___")]
3492 public static extern string ModelVisitor_kVarBoundWatcher_get();
3493
3494 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVarValueWatcher_get___")]
3495 public static extern string ModelVisitor_kVarValueWatcher_get();
3496
3497 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCountAssignedItemsExtension_get___")]
3498 public static extern string ModelVisitor_kCountAssignedItemsExtension_get();
3499
3500 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCountUsedBinsExtension_get___")]
3501 public static extern string ModelVisitor_kCountUsedBinsExtension_get();
3502
3503 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kInt64ToBoolExtension_get___")]
3504 public static extern string ModelVisitor_kInt64ToBoolExtension_get();
3505
3506 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kInt64ToInt64Extension_get___")]
3507 public static extern string ModelVisitor_kInt64ToInt64Extension_get();
3508
3509 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kObjectiveExtension_get___")]
3510 public static extern string ModelVisitor_kObjectiveExtension_get();
3511
3512 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSearchLimitExtension_get___")]
3513 public static extern string ModelVisitor_kSearchLimitExtension_get();
3514
3515 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kUsageEqualVariableExtension_get___")]
3516 public static extern string ModelVisitor_kUsageEqualVariableExtension_get();
3517
3518 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kUsageLessConstantExtension_get___")]
3519 public static extern string ModelVisitor_kUsageLessConstantExtension_get();
3520
3521 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVariableGroupExtension_get___")]
3522 public static extern string ModelVisitor_kVariableGroupExtension_get();
3523
3524 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVariableUsageLessConstantExtension_get___")]
3525 public static extern string ModelVisitor_kVariableUsageLessConstantExtension_get();
3526
3527 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kWeightedSumOfAssignedEqualVariableExtension_get___")]
3529
3530 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kActiveArgument_get___")]
3531 public static extern string ModelVisitor_kActiveArgument_get();
3532
3533 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kAssumePathsArgument_get___")]
3534 public static extern string ModelVisitor_kAssumePathsArgument_get();
3535
3536 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kBranchesLimitArgument_get___")]
3537 public static extern string ModelVisitor_kBranchesLimitArgument_get();
3538
3539 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCapacityArgument_get___")]
3540 public static extern string ModelVisitor_kCapacityArgument_get();
3541
3542 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCardsArgument_get___")]
3543 public static extern string ModelVisitor_kCardsArgument_get();
3544
3545 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCoefficientsArgument_get___")]
3546 public static extern string ModelVisitor_kCoefficientsArgument_get();
3547
3548 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCountArgument_get___")]
3549 public static extern string ModelVisitor_kCountArgument_get();
3550
3551 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCumulativeArgument_get___")]
3552 public static extern string ModelVisitor_kCumulativeArgument_get();
3553
3554 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kCumulsArgument_get___")]
3555 public static extern string ModelVisitor_kCumulsArgument_get();
3556
3557 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDemandsArgument_get___")]
3558 public static extern string ModelVisitor_kDemandsArgument_get();
3559
3560 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDurationMaxArgument_get___")]
3561 public static extern string ModelVisitor_kDurationMaxArgument_get();
3562
3563 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDurationMinArgument_get___")]
3564 public static extern string ModelVisitor_kDurationMinArgument_get();
3565
3566 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEarlyCostArgument_get___")]
3567 public static extern string ModelVisitor_kEarlyCostArgument_get();
3568
3569 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEarlyDateArgument_get___")]
3570 public static extern string ModelVisitor_kEarlyDateArgument_get();
3571
3572 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEndMaxArgument_get___")]
3573 public static extern string ModelVisitor_kEndMaxArgument_get();
3574
3575 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEndMinArgument_get___")]
3576 public static extern string ModelVisitor_kEndMinArgument_get();
3577
3578 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEndsArgument_get___")]
3579 public static extern string ModelVisitor_kEndsArgument_get();
3580
3581 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kExpressionArgument_get___")]
3582 public static extern string ModelVisitor_kExpressionArgument_get();
3583
3584 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kFailuresLimitArgument_get___")]
3585 public static extern string ModelVisitor_kFailuresLimitArgument_get();
3586
3587 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kFinalStatesArgument_get___")]
3588 public static extern string ModelVisitor_kFinalStatesArgument_get();
3589
3590 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kFixedChargeArgument_get___")]
3591 public static extern string ModelVisitor_kFixedChargeArgument_get();
3592
3593 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIndex2Argument_get___")]
3594 public static extern string ModelVisitor_kIndex2Argument_get();
3595
3596 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIndex3Argument_get___")]
3597 public static extern string ModelVisitor_kIndex3Argument_get();
3598
3599 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIndexArgument_get___")]
3600 public static extern string ModelVisitor_kIndexArgument_get();
3601
3602 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kInitialState_get___")]
3603 public static extern string ModelVisitor_kInitialState_get();
3604
3605 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalArgument_get___")]
3606 public static extern string ModelVisitor_kIntervalArgument_get();
3607
3608 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kIntervalsArgument_get___")]
3609 public static extern string ModelVisitor_kIntervalsArgument_get();
3610
3611 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLateCostArgument_get___")]
3612 public static extern string ModelVisitor_kLateCostArgument_get();
3613
3614 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLateDateArgument_get___")]
3615 public static extern string ModelVisitor_kLateDateArgument_get();
3616
3617 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kLeftArgument_get___")]
3618 public static extern string ModelVisitor_kLeftArgument_get();
3619
3620 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMaxArgument_get___")]
3621 public static extern string ModelVisitor_kMaxArgument_get();
3622
3623 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMaximizeArgument_get___")]
3624 public static extern string ModelVisitor_kMaximizeArgument_get();
3625
3626 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMinArgument_get___")]
3627 public static extern string ModelVisitor_kMinArgument_get();
3628
3629 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kModuloArgument_get___")]
3630 public static extern string ModelVisitor_kModuloArgument_get();
3631
3632 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kNextsArgument_get___")]
3633 public static extern string ModelVisitor_kNextsArgument_get();
3634
3635 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kOptionalArgument_get___")]
3636 public static extern string ModelVisitor_kOptionalArgument_get();
3637
3638 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPartialArgument_get___")]
3639 public static extern string ModelVisitor_kPartialArgument_get();
3640
3641 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPositionXArgument_get___")]
3642 public static extern string ModelVisitor_kPositionXArgument_get();
3643
3644 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kPositionYArgument_get___")]
3645 public static extern string ModelVisitor_kPositionYArgument_get();
3646
3647 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kRangeArgument_get___")]
3648 public static extern string ModelVisitor_kRangeArgument_get();
3649
3650 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kRelationArgument_get___")]
3651 public static extern string ModelVisitor_kRelationArgument_get();
3652
3653 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kRightArgument_get___")]
3654 public static extern string ModelVisitor_kRightArgument_get();
3655
3656 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSequenceArgument_get___")]
3657 public static extern string ModelVisitor_kSequenceArgument_get();
3658
3659 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSequencesArgument_get___")]
3660 public static extern string ModelVisitor_kSequencesArgument_get();
3661
3662 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSizeArgument_get___")]
3663 public static extern string ModelVisitor_kSizeArgument_get();
3664
3665 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSizeXArgument_get___")]
3666 public static extern string ModelVisitor_kSizeXArgument_get();
3667
3668 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSizeYArgument_get___")]
3669 public static extern string ModelVisitor_kSizeYArgument_get();
3670
3671 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSmartTimeCheckArgument_get___")]
3672 public static extern string ModelVisitor_kSmartTimeCheckArgument_get();
3673
3674 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSolutionLimitArgument_get___")]
3675 public static extern string ModelVisitor_kSolutionLimitArgument_get();
3676
3677 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartMaxArgument_get___")]
3678 public static extern string ModelVisitor_kStartMaxArgument_get();
3679
3680 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartMinArgument_get___")]
3681 public static extern string ModelVisitor_kStartMinArgument_get();
3682
3683 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartsArgument_get___")]
3684 public static extern string ModelVisitor_kStartsArgument_get();
3685
3686 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStepArgument_get___")]
3687 public static extern string ModelVisitor_kStepArgument_get();
3688
3689 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTargetArgument_get___")]
3690 public static extern string ModelVisitor_kTargetArgument_get();
3691
3692 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTimeLimitArgument_get___")]
3693 public static extern string ModelVisitor_kTimeLimitArgument_get();
3694
3695 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTransitsArgument_get___")]
3696 public static extern string ModelVisitor_kTransitsArgument_get();
3697
3698 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTuplesArgument_get___")]
3699 public static extern string ModelVisitor_kTuplesArgument_get();
3700
3701 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kValueArgument_get___")]
3702 public static extern string ModelVisitor_kValueArgument_get();
3703
3704 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kValuesArgument_get___")]
3705 public static extern string ModelVisitor_kValuesArgument_get();
3706
3707 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVariableArgument_get___")]
3708 public static extern string ModelVisitor_kVariableArgument_get();
3709
3710 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kVarsArgument_get___")]
3711 public static extern string ModelVisitor_kVarsArgument_get();
3712
3713 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kEvaluatorArgument_get___")]
3714 public static extern string ModelVisitor_kEvaluatorArgument_get();
3715
3716 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kMirrorOperation_get___")]
3717 public static extern string ModelVisitor_kMirrorOperation_get();
3718
3719 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kRelaxedMaxOperation_get___")]
3720 public static extern string ModelVisitor_kRelaxedMaxOperation_get();
3721
3722 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kRelaxedMinOperation_get___")]
3723 public static extern string ModelVisitor_kRelaxedMinOperation_get();
3724
3725 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kSumOperation_get___")]
3726 public static extern string ModelVisitor_kSumOperation_get();
3727
3728 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kDifferenceOperation_get___")]
3729 public static extern string ModelVisitor_kDifferenceOperation_get();
3730
3731 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kProductOperation_get___")]
3732 public static extern string ModelVisitor_kProductOperation_get();
3733
3734 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartSyncOnStartOperation_get___")]
3735 public static extern string ModelVisitor_kStartSyncOnStartOperation_get();
3736
3737 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kStartSyncOnEndOperation_get___")]
3738 public static extern string ModelVisitor_kStartSyncOnEndOperation_get();
3739
3740 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_kTraceOperation_get___")]
3741 public static extern string ModelVisitor_kTraceOperation_get();
3742
3743 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_ModelVisitor___")]
3744 public static extern void delete_ModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3745
3746 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_BeginVisitModel___")]
3747 public static extern void ModelVisitor_BeginVisitModel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3748
3749 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_EndVisitModel___")]
3750 public static extern void ModelVisitor_EndVisitModel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3751
3752 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_BeginVisitConstraint___")]
3753 public static extern void ModelVisitor_BeginVisitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3754
3755 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_EndVisitConstraint___")]
3756 public static extern void ModelVisitor_EndVisitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3757
3758 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_BeginVisitExtension___")]
3759 public static extern void ModelVisitor_BeginVisitExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3760
3761 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_EndVisitExtension___")]
3762 public static extern void ModelVisitor_EndVisitExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3763
3764 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_BeginVisitIntegerExpression___")]
3765 public static extern void ModelVisitor_BeginVisitIntegerExpression(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3766
3767 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_EndVisitIntegerExpression___")]
3768 public static extern void ModelVisitor_EndVisitIntegerExpression(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3769
3770 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerVariable__SWIG_0___")]
3771 public static extern void ModelVisitor_VisitIntegerVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3772
3773 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerVariable__SWIG_1___")]
3774 public static extern void ModelVisitor_VisitIntegerVariable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3775
3776 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntervalVariable___")]
3777 public static extern void ModelVisitor_VisitIntervalVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
3778
3779 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitSequenceVariable___")]
3780 public static extern void ModelVisitor_VisitSequenceVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3781
3782 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerArgument___")]
3783 public static extern void ModelVisitor_VisitIntegerArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3);
3784
3785 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerArrayArgument___")]
3786 public static extern void ModelVisitor_VisitIntegerArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int length3, long[] jarg3);
3787
3788 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerMatrixArgument___")]
3789 public static extern void ModelVisitor_VisitIntegerMatrixArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3790
3791 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerExpressionArgument___")]
3792 public static extern void ModelVisitor_VisitIntegerExpressionArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3793
3794 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntegerVariableArrayArgument___")]
3795 public static extern void ModelVisitor_VisitIntegerVariableArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3796
3797 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntervalArgument___")]
3798 public static extern void ModelVisitor_VisitIntervalArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3799
3800 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitIntervalArrayArgument___")]
3801 public static extern void ModelVisitor_VisitIntervalArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3802
3803 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitSequenceArgument___")]
3804 public static extern void ModelVisitor_VisitSequenceArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3805
3806 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_VisitSequenceArrayArgument___")]
3807 public static extern void ModelVisitor_VisitSequenceArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3808
3809 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_ModelVisitor___")]
3810 public static extern global::System.IntPtr new_ModelVisitor();
3811
3812 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Constraint___")]
3813 public static extern global::System.IntPtr new_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3814
3815 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Constraint___")]
3816 public static extern void delete_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3817
3818 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_Post___")]
3819 public static extern void Constraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1);
3820
3821 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_InitialPropagateWrapper___")]
3822 public static extern void Constraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1);
3823
3824 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_ToString___")]
3825 public static extern string Constraint_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
3826
3827 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_ToStringSwigExplicitConstraint___")]
3828 public static extern string Constraint_ToStringSwigExplicitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3829
3830 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_Accept___")]
3831 public static extern void Constraint_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3832
3833 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_IsCastConstraint___")]
3834 public static extern bool Constraint_IsCastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3835
3836 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_Var___")]
3837 public static extern global::System.IntPtr Constraint_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
3838
3839 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_director_connect___")]
3840 public static extern void Constraint_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Constraint.SwigDelegateConstraint_0 delegate0, Constraint.SwigDelegateConstraint_1 delegate1, Constraint.SwigDelegateConstraint_2 delegate2, Constraint.SwigDelegateConstraint_3 delegate3, Constraint.SwigDelegateConstraint_4 delegate4);
3841
3842 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_CastConstraint___")]
3843 public static extern void delete_CastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3844
3845 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_CastConstraint_TargetVar___")]
3846 public static extern global::System.IntPtr CastConstraint_TargetVar(global::System.Runtime.InteropServices.HandleRef jarg1);
3847
3848 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_kNoProgress_get___")]
3849 public static extern int SearchMonitor_kNoProgress_get();
3850
3851 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SearchMonitor___")]
3852 public static extern global::System.IntPtr new_SearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3853
3854 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SearchMonitor___")]
3855 public static extern void delete_SearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3856
3857 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EnterSearch___")]
3858 public static extern void SearchMonitor_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3859
3860 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EnterSearchSwigExplicitSearchMonitor___")]
3861 public static extern void SearchMonitor_EnterSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3862
3863 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_RestartSearch___")]
3864 public static extern void SearchMonitor_RestartSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3865
3866 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_RestartSearchSwigExplicitSearchMonitor___")]
3867 public static extern void SearchMonitor_RestartSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3868
3869 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ExitSearch___")]
3870 public static extern void SearchMonitor_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
3871
3872 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ExitSearchSwigExplicitSearchMonitor___")]
3873 public static extern void SearchMonitor_ExitSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3874
3875 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginNextDecision___")]
3876 public static extern void SearchMonitor_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3877
3878 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginNextDecisionSwigExplicitSearchMonitor___")]
3879 public static extern void SearchMonitor_BeginNextDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3880
3881 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndNextDecision___")]
3882 public static extern void SearchMonitor_EndNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3883
3884 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndNextDecisionSwigExplicitSearchMonitor___")]
3885 public static extern void SearchMonitor_EndNextDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3886
3887 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ApplyDecision___")]
3888 public static extern void SearchMonitor_ApplyDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3889
3890 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ApplyDecisionSwigExplicitSearchMonitor___")]
3891 public static extern void SearchMonitor_ApplyDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3892
3893 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_RefuteDecision___")]
3894 public static extern void SearchMonitor_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3895
3896 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_RefuteDecisionSwigExplicitSearchMonitor___")]
3897 public static extern void SearchMonitor_RefuteDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3898
3899 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AfterDecision___")]
3900 public static extern void SearchMonitor_AfterDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
3901
3902 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AfterDecisionSwigExplicitSearchMonitor___")]
3903 public static extern void SearchMonitor_AfterDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
3904
3905 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginFail___")]
3906 public static extern void SearchMonitor_BeginFail(global::System.Runtime.InteropServices.HandleRef jarg1);
3907
3908 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginFailSwigExplicitSearchMonitor___")]
3909 public static extern void SearchMonitor_BeginFailSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3910
3911 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndFail___")]
3912 public static extern void SearchMonitor_EndFail(global::System.Runtime.InteropServices.HandleRef jarg1);
3913
3914 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndFailSwigExplicitSearchMonitor___")]
3915 public static extern void SearchMonitor_EndFailSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3916
3917 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginInitialPropagation___")]
3918 public static extern void SearchMonitor_BeginInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1);
3919
3920 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_BeginInitialPropagationSwigExplicitSearchMonitor___")]
3921 public static extern void SearchMonitor_BeginInitialPropagationSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3922
3923 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndInitialPropagation___")]
3924 public static extern void SearchMonitor_EndInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1);
3925
3926 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_EndInitialPropagationSwigExplicitSearchMonitor___")]
3927 public static extern void SearchMonitor_EndInitialPropagationSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3928
3929 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptSolution___")]
3930 public static extern bool SearchMonitor_AcceptSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
3931
3932 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptSolutionSwigExplicitSearchMonitor___")]
3933 public static extern bool SearchMonitor_AcceptSolutionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3934
3935 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AtSolution___")]
3936 public static extern bool SearchMonitor_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
3937
3938 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AtSolutionSwigExplicitSearchMonitor___")]
3939 public static extern bool SearchMonitor_AtSolutionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3940
3941 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_NoMoreSolutions___")]
3942 public static extern void SearchMonitor_NoMoreSolutions(global::System.Runtime.InteropServices.HandleRef jarg1);
3943
3944 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_NoMoreSolutionsSwigExplicitSearchMonitor___")]
3945 public static extern void SearchMonitor_NoMoreSolutionsSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3946
3947 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_LocalOptimum___")]
3948 public static extern bool SearchMonitor_LocalOptimum(global::System.Runtime.InteropServices.HandleRef jarg1);
3949
3950 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_LocalOptimumSwigExplicitSearchMonitor___")]
3951 public static extern bool SearchMonitor_LocalOptimumSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3952
3953 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptDelta___")]
3954 public static extern bool SearchMonitor_AcceptDelta(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3955
3956 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptDeltaSwigExplicitSearchMonitor___")]
3957 public static extern bool SearchMonitor_AcceptDeltaSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3958
3959 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptNeighbor___")]
3960 public static extern void SearchMonitor_AcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
3961
3962 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptNeighborSwigExplicitSearchMonitor___")]
3963 public static extern void SearchMonitor_AcceptNeighborSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3964
3965 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptUncheckedNeighbor___")]
3966 public static extern void SearchMonitor_AcceptUncheckedNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
3967
3968 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptUncheckedNeighborSwigExplicitSearchMonitor___")]
3969 public static extern void SearchMonitor_AcceptUncheckedNeighborSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3970
3971 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_IsUncheckedSolutionLimitReached___")]
3972 public static extern bool SearchMonitor_IsUncheckedSolutionLimitReached(global::System.Runtime.InteropServices.HandleRef jarg1);
3973
3974 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_IsUncheckedSolutionLimitReachedSwigExplicitSearchMonitor___")]
3975 public static extern bool SearchMonitor_IsUncheckedSolutionLimitReachedSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3976
3977 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_PeriodicCheck___")]
3978 public static extern void SearchMonitor_PeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1);
3979
3980 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_PeriodicCheckSwigExplicitSearchMonitor___")]
3981 public static extern void SearchMonitor_PeriodicCheckSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3982
3983 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ProgressPercent___")]
3984 public static extern int SearchMonitor_ProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1);
3985
3986 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_ProgressPercentSwigExplicitSearchMonitor___")]
3987 public static extern int SearchMonitor_ProgressPercentSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
3988
3989 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_Accept___")]
3990 public static extern void SearchMonitor_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3991
3992 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_AcceptSwigExplicitSearchMonitor___")]
3993 public static extern void SearchMonitor_AcceptSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3994
3995 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_Install___")]
3996 public static extern void SearchMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
3997
3998 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_InstallSwigExplicitSearchMonitor___")]
3999 public static extern void SearchMonitor_InstallSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
4000
4001 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_solver___")]
4002 public static extern global::System.IntPtr SearchMonitor_solver(global::System.Runtime.InteropServices.HandleRef jarg1);
4003
4004 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_director_connect___")]
4006
4007 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntExpr___")]
4008 public static extern void delete_IntExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
4009
4010 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Min___")]
4011 public static extern long IntExpr_Min(global::System.Runtime.InteropServices.HandleRef jarg1);
4012
4013 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_SetMin___")]
4014 public static extern void IntExpr_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4015
4016 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Max___")]
4017 public static extern long IntExpr_Max(global::System.Runtime.InteropServices.HandleRef jarg1);
4018
4019 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_SetMax___")]
4020 public static extern void IntExpr_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4021
4022 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Range___")]
4023 public static extern void IntExpr_Range(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3);
4024
4025 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_SetRange___")]
4026 public static extern void IntExpr_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4027
4028 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_SetValue___")]
4029 public static extern void IntExpr_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4030
4031 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Bound___")]
4032 public static extern bool IntExpr_Bound(global::System.Runtime.InteropServices.HandleRef jarg1);
4033
4034 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsVar___")]
4035 public static extern bool IntExpr_IsVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4036
4037 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Var___")]
4038 public static extern global::System.IntPtr IntExpr_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
4039
4040 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_VarWithName___")]
4041 public static extern global::System.IntPtr IntExpr_VarWithName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4042
4043 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_WhenRange__SWIG_0___")]
4044 public static extern void IntExpr_WhenRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4045
4046 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_WhenRange__SWIG_1___")]
4047 public static extern void IntExpr_WhenRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4048
4049 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Accept___")]
4050 public static extern void IntExpr_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4051
4052 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_MapTo___")]
4053 public static extern global::System.IntPtr IntExpr_MapTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4054
4055 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IndexOf__SWIG_0___")]
4056 public static extern global::System.IntPtr IntExpr_IndexOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
4057
4058 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IndexOf__SWIG_1___")]
4059 public static extern global::System.IntPtr IntExpr_IndexOf__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4060
4061 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsEqual__SWIG_0___")]
4062 public static extern global::System.IntPtr IntExpr_IsEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4063
4064 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsDifferent__SWIG_0___")]
4065 public static extern global::System.IntPtr IntExpr_IsDifferent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4066
4067 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsGreater__SWIG_0___")]
4068 public static extern global::System.IntPtr IntExpr_IsGreater__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4069
4070 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsGreaterOrEqual__SWIG_0___")]
4071 public static extern global::System.IntPtr IntExpr_IsGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4072
4073 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsLess__SWIG_0___")]
4074 public static extern global::System.IntPtr IntExpr_IsLess__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4075
4076 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsLessOrEqual__SWIG_0___")]
4077 public static extern global::System.IntPtr IntExpr_IsLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4078
4079 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsMember__SWIG_0___")]
4080 public static extern global::System.IntPtr IntExpr_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
4081
4082 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsMember__SWIG_1___")]
4083 public static extern global::System.IntPtr IntExpr_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
4084
4085 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Member__SWIG_0___")]
4086 public static extern global::System.IntPtr IntExpr_Member__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
4087
4088 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Member__SWIG_1___")]
4089 public static extern global::System.IntPtr IntExpr_Member__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
4090
4091 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsEqual__SWIG_1___")]
4092 public static extern global::System.IntPtr IntExpr_IsEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4093
4094 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsDifferent__SWIG_1___")]
4095 public static extern global::System.IntPtr IntExpr_IsDifferent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4096
4097 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsGreater__SWIG_1___")]
4098 public static extern global::System.IntPtr IntExpr_IsGreater__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4099
4100 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsGreaterOrEqual__SWIG_1___")]
4101 public static extern global::System.IntPtr IntExpr_IsGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4102
4103 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsLess__SWIG_1___")]
4104 public static extern global::System.IntPtr IntExpr_IsLess__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4105
4106 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_IsLessOrEqual__SWIG_1___")]
4107 public static extern global::System.IntPtr IntExpr_IsLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4108
4109 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Minimize___")]
4110 public static extern global::System.IntPtr IntExpr_Minimize(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4111
4112 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_Maximize___")]
4113 public static extern global::System.IntPtr IntExpr_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4114
4115 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVarIterator___")]
4116 public static extern void delete_IntVarIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
4117
4118 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_Init___")]
4119 public static extern void IntVarIterator_Init(global::System.Runtime.InteropServices.HandleRef jarg1);
4120
4121 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_Ok___")]
4122 public static extern bool IntVarIterator_Ok(global::System.Runtime.InteropServices.HandleRef jarg1);
4123
4124 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_Value___")]
4125 public static extern long IntVarIterator_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
4126
4127 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_Next___")]
4128 public static extern void IntVarIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1);
4129
4130 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_ToString___")]
4131 public static extern string IntVarIterator_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4132
4133 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVar___")]
4134 public static extern void delete_IntVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4135
4136 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_IsVar___")]
4137 public static extern bool IntVar_IsVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4138
4139 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Var___")]
4140 public static extern global::System.IntPtr IntVar_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
4141
4142 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Value___")]
4143 public static extern long IntVar_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
4144
4145 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_RemoveValue___")]
4146 public static extern void IntVar_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4147
4148 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_RemoveInterval___")]
4149 public static extern void IntVar_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4150
4151 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_RemoveValues___")]
4152 public static extern void IntVar_RemoveValues(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
4153
4154 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_SetValues___")]
4155 public static extern void IntVar_SetValues(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
4156
4157 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_WhenBound__SWIG_0___")]
4158 public static extern void IntVar_WhenBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4159
4160 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_WhenBound__SWIG_1___")]
4161 public static extern void IntVar_WhenBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4162
4163 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_WhenDomain__SWIG_0___")]
4164 public static extern void IntVar_WhenDomain__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4165
4166 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_WhenDomain__SWIG_1___")]
4167 public static extern void IntVar_WhenDomain__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4168
4169 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Size___")]
4170 public static extern ulong IntVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
4171
4172 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Contains___")]
4173 public static extern bool IntVar_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4174
4175 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_OldMin___")]
4176 public static extern long IntVar_OldMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4177
4178 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_OldMax___")]
4179 public static extern long IntVar_OldMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4180
4181 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_VarType___")]
4182 public static extern int IntVar_VarType(global::System.Runtime.InteropServices.HandleRef jarg1);
4183
4184 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Accept___")]
4185 public static extern void IntVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4186
4187 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_IsEqual___")]
4188 public static extern global::System.IntPtr IntVar_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4189
4190 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_IsDifferent___")]
4191 public static extern global::System.IntPtr IntVar_IsDifferent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4192
4193 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_IsGreaterOrEqual___")]
4194 public static extern global::System.IntPtr IntVar_IsGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4195
4196 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_IsLessOrEqual___")]
4197 public static extern global::System.IntPtr IntVar_IsLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4198
4199 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_Index___")]
4200 public static extern int IntVar_Index(global::System.Runtime.InteropServices.HandleRef jarg1);
4201
4202 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_GetDomain___")]
4203 public static extern global::System.IntPtr IntVar_GetDomain(global::System.Runtime.InteropServices.HandleRef jarg1);
4204
4205 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_GetHoles___")]
4206 public static extern global::System.IntPtr IntVar_GetHoles(global::System.Runtime.InteropServices.HandleRef jarg1);
4207
4208 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SolutionCollector__SWIG_0___")]
4209 public static extern global::System.IntPtr new_SolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4210
4211 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SolutionCollector__SWIG_1___")]
4212 public static extern global::System.IntPtr new_SolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4213
4214 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SolutionCollector___")]
4215 public static extern void delete_SolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1);
4216
4217 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Install___")]
4218 public static extern void SolutionCollector_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
4219
4220 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_InstallSwigExplicitSolutionCollector___")]
4221 public static extern void SolutionCollector_InstallSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1);
4222
4223 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_ToString___")]
4224 public static extern string SolutionCollector_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4225
4226 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_ToStringSwigExplicitSolutionCollector___")]
4227 public static extern string SolutionCollector_ToStringSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1);
4228
4229 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_0___")]
4230 public static extern void SolutionCollector_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4231
4232 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_1___")]
4233 public static extern void SolutionCollector_Add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4234
4235 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_2___")]
4236 public static extern void SolutionCollector_Add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4237
4238 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_3___")]
4239 public static extern void SolutionCollector_Add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4240
4241 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_4___")]
4242 public static extern void SolutionCollector_Add__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4243
4244 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Add__SWIG_5___")]
4245 public static extern void SolutionCollector_Add__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4246
4247 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_AddObjective___")]
4248 public static extern void SolutionCollector_AddObjective(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4249
4250 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_AddObjectives___")]
4251 public static extern void SolutionCollector_AddObjectives(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4252
4253 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_EnterSearch___")]
4254 public static extern void SolutionCollector_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
4255
4256 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_EnterSearchSwigExplicitSolutionCollector___")]
4257 public static extern void SolutionCollector_EnterSearchSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1);
4258
4259 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_SolutionCount___")]
4260 public static extern int SolutionCollector_SolutionCount(global::System.Runtime.InteropServices.HandleRef jarg1);
4261
4262 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_HasSolution___")]
4263 public static extern bool SolutionCollector_HasSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
4264
4265 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Solution___")]
4266 public static extern global::System.IntPtr SolutionCollector_Solution(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4267
4268 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_LastSolutionOrNull___")]
4269 public static extern global::System.IntPtr SolutionCollector_LastSolutionOrNull(global::System.Runtime.InteropServices.HandleRef jarg1);
4270
4271 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_WallTime___")]
4272 public static extern long SolutionCollector_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4273
4274 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Branches___")]
4275 public static extern long SolutionCollector_Branches(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4276
4277 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Failures___")]
4278 public static extern long SolutionCollector_Failures(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4279
4280 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_ObjectiveValue___")]
4281 public static extern long SolutionCollector_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4282
4283 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_ObjectiveValueFromIndex___")]
4284 public static extern long SolutionCollector_ObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
4285
4286 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Value___")]
4287 public static extern long SolutionCollector_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4288
4289 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_StartValue___")]
4290 public static extern long SolutionCollector_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4291
4292 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_EndValue___")]
4293 public static extern long SolutionCollector_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4294
4295 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_DurationValue___")]
4296 public static extern long SolutionCollector_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4297
4298 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_PerformedValue___")]
4299 public static extern long SolutionCollector_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4300
4301 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_ForwardSequence___")]
4302 public static extern global::System.IntPtr SolutionCollector_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4303
4304 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_BackwardSequence___")]
4305 public static extern global::System.IntPtr SolutionCollector_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4306
4307 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_Unperformed___")]
4308 public static extern global::System.IntPtr SolutionCollector_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4309
4310 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_director_connect___")]
4311 public static extern void SolutionCollector_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SolutionCollector.SwigDelegateSolutionCollector_0 delegate0, SolutionCollector.SwigDelegateSolutionCollector_1 delegate1, SolutionCollector.SwigDelegateSolutionCollector_2 delegate2, SolutionCollector.SwigDelegateSolutionCollector_3 delegate3, SolutionCollector.SwigDelegateSolutionCollector_4 delegate4, SolutionCollector.SwigDelegateSolutionCollector_5 delegate5, SolutionCollector.SwigDelegateSolutionCollector_6 delegate6, SolutionCollector.SwigDelegateSolutionCollector_7 delegate7, SolutionCollector.SwigDelegateSolutionCollector_8 delegate8, SolutionCollector.SwigDelegateSolutionCollector_9 delegate9, SolutionCollector.SwigDelegateSolutionCollector_10 delegate10, SolutionCollector.SwigDelegateSolutionCollector_11 delegate11, SolutionCollector.SwigDelegateSolutionCollector_12 delegate12, SolutionCollector.SwigDelegateSolutionCollector_13 delegate13, SolutionCollector.SwigDelegateSolutionCollector_14 delegate14, SolutionCollector.SwigDelegateSolutionCollector_15 delegate15, SolutionCollector.SwigDelegateSolutionCollector_16 delegate16, SolutionCollector.SwigDelegateSolutionCollector_17 delegate17, SolutionCollector.SwigDelegateSolutionCollector_18 delegate18, SolutionCollector.SwigDelegateSolutionCollector_19 delegate19, SolutionCollector.SwigDelegateSolutionCollector_20 delegate20, SolutionCollector.SwigDelegateSolutionCollector_21 delegate21, SolutionCollector.SwigDelegateSolutionCollector_22 delegate22, SolutionCollector.SwigDelegateSolutionCollector_23 delegate23, SolutionCollector.SwigDelegateSolutionCollector_24 delegate24);
4312
4313 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BaseObjectiveMonitor___")]
4314 public static extern void delete_BaseObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
4315
4316 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_ObjectiveVar___")]
4317 public static extern global::System.IntPtr BaseObjectiveMonitor_ObjectiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4318
4319 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_MinimizationVar___")]
4320 public static extern global::System.IntPtr BaseObjectiveMonitor_MinimizationVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4321
4322 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_Step___")]
4323 public static extern long BaseObjectiveMonitor_Step(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4324
4325 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_Maximize___")]
4326 public static extern bool BaseObjectiveMonitor_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4327
4328 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_BestValue___")]
4329 public static extern long BaseObjectiveMonitor_BestValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4330
4331 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_Size___")]
4332 public static extern int BaseObjectiveMonitor_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
4333
4334 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_IsActive___")]
4335 public static extern bool BaseObjectiveMonitor_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1);
4336
4337 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_SetActive___")]
4338 public static extern void BaseObjectiveMonitor_SetActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4339
4340 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_ObjectiveMonitor___")]
4341 public static extern global::System.IntPtr new_ObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4);
4342
4343 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_ObjectiveMonitor___")]
4344 public static extern void delete_ObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
4345
4346 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_ObjectiveVar___")]
4347 public static extern global::System.IntPtr ObjectiveMonitor_ObjectiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4348
4349 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_MinimizationVar___")]
4350 public static extern global::System.IntPtr ObjectiveMonitor_MinimizationVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4351
4352 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_Step___")]
4353 public static extern long ObjectiveMonitor_Step(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4354
4355 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_Maximize___")]
4356 public static extern bool ObjectiveMonitor_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4357
4358 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_BestValue___")]
4359 public static extern long ObjectiveMonitor_BestValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4360
4361 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_Size___")]
4362 public static extern int ObjectiveMonitor_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
4363
4364 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_EnterSearch___")]
4365 public static extern void ObjectiveMonitor_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
4366
4367 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_AtSolution___")]
4368 public static extern bool ObjectiveMonitor_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
4369
4370 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_AcceptDelta___")]
4371 public static extern bool ObjectiveMonitor_AcceptDelta(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4372
4373 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_Accept___")]
4374 public static extern void ObjectiveMonitor_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4375
4376 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_OptimizeVar__SWIG_0___")]
4377 public static extern global::System.IntPtr new_OptimizeVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
4378
4379 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_OptimizeVar__SWIG_1___")]
4380 public static extern global::System.IntPtr new_OptimizeVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4);
4381
4382 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_Best___")]
4383 public static extern long OptimizeVar_Best(global::System.Runtime.InteropServices.HandleRef jarg1);
4384
4385 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_Var___")]
4386 public static extern global::System.IntPtr OptimizeVar_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
4387
4388 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_BeginNextDecision___")]
4389 public static extern void OptimizeVar_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4390
4391 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_BeginNextDecisionSwigExplicitOptimizeVar___")]
4392 public static extern void OptimizeVar_BeginNextDecisionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4393
4394 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_RefuteDecision___")]
4395 public static extern void OptimizeVar_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4396
4397 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_RefuteDecisionSwigExplicitOptimizeVar___")]
4398 public static extern void OptimizeVar_RefuteDecisionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4399
4400 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_AtSolution___")]
4401 public static extern bool OptimizeVar_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
4402
4403 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_AtSolutionSwigExplicitOptimizeVar___")]
4404 public static extern bool OptimizeVar_AtSolutionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4405
4406 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_AcceptSolution___")]
4407 public static extern bool OptimizeVar_AcceptSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
4408
4409 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_AcceptSolutionSwigExplicitOptimizeVar___")]
4410 public static extern bool OptimizeVar_AcceptSolutionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4411
4412 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_Name___")]
4413 public static extern string OptimizeVar_Name(global::System.Runtime.InteropServices.HandleRef jarg1);
4414
4415 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_NameSwigExplicitOptimizeVar___")]
4416 public static extern string OptimizeVar_NameSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4417
4418 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_ToString___")]
4419 public static extern string OptimizeVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4420
4421 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_ToStringSwigExplicitOptimizeVar___")]
4422 public static extern string OptimizeVar_ToStringSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4423
4424 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_ApplyBound___")]
4425 public static extern void OptimizeVar_ApplyBound(global::System.Runtime.InteropServices.HandleRef jarg1);
4426
4427 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_OptimizeVar___")]
4428 public static extern void delete_OptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4429
4430 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_director_connect___")]
4431 public static extern void OptimizeVar_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, OptimizeVar.SwigDelegateOptimizeVar_0 delegate0, OptimizeVar.SwigDelegateOptimizeVar_1 delegate1, OptimizeVar.SwigDelegateOptimizeVar_2 delegate2, OptimizeVar.SwigDelegateOptimizeVar_3 delegate3, OptimizeVar.SwigDelegateOptimizeVar_4 delegate4, OptimizeVar.SwigDelegateOptimizeVar_5 delegate5, OptimizeVar.SwigDelegateOptimizeVar_6 delegate6, OptimizeVar.SwigDelegateOptimizeVar_7 delegate7, OptimizeVar.SwigDelegateOptimizeVar_8 delegate8, OptimizeVar.SwigDelegateOptimizeVar_9 delegate9, OptimizeVar.SwigDelegateOptimizeVar_10 delegate10, OptimizeVar.SwigDelegateOptimizeVar_11 delegate11, OptimizeVar.SwigDelegateOptimizeVar_12 delegate12, OptimizeVar.SwigDelegateOptimizeVar_13 delegate13, OptimizeVar.SwigDelegateOptimizeVar_14 delegate14, OptimizeVar.SwigDelegateOptimizeVar_15 delegate15, OptimizeVar.SwigDelegateOptimizeVar_16 delegate16, OptimizeVar.SwigDelegateOptimizeVar_17 delegate17, OptimizeVar.SwigDelegateOptimizeVar_18 delegate18, OptimizeVar.SwigDelegateOptimizeVar_19 delegate19, OptimizeVar.SwigDelegateOptimizeVar_20 delegate20, OptimizeVar.SwigDelegateOptimizeVar_21 delegate21, OptimizeVar.SwigDelegateOptimizeVar_22 delegate22, OptimizeVar.SwigDelegateOptimizeVar_23 delegate23, OptimizeVar.SwigDelegateOptimizeVar_24 delegate24, OptimizeVar.SwigDelegateOptimizeVar_25 delegate25, OptimizeVar.SwigDelegateOptimizeVar_26 delegate26, OptimizeVar.SwigDelegateOptimizeVar_27 delegate27, OptimizeVar.SwigDelegateOptimizeVar_28 delegate28, OptimizeVar.SwigDelegateOptimizeVar_29 delegate29, OptimizeVar.SwigDelegateOptimizeVar_30 delegate30, OptimizeVar.SwigDelegateOptimizeVar_31 delegate31);
4432
4433 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SearchLimit___")]
4434 public static extern global::System.IntPtr new_SearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4435
4436 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SearchLimit___")]
4437 public static extern void delete_SearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4438
4439 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_IsCrossed___")]
4440 public static extern bool SearchLimit_IsCrossed(global::System.Runtime.InteropServices.HandleRef jarg1);
4441
4442 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_Check___")]
4443 public static extern bool SearchLimit_Check(global::System.Runtime.InteropServices.HandleRef jarg1);
4444
4445 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_CheckWithOffset___")]
4446 public static extern bool SearchLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4447
4448 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_Init___")]
4449 public static extern void SearchLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1);
4450
4451 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_Copy___")]
4452 public static extern void SearchLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4453
4454 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_MakeClone___")]
4455 public static extern global::System.IntPtr SearchLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1);
4456
4457 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_EnterSearch___")]
4458 public static extern void SearchLimit_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
4459
4460 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_EnterSearchSwigExplicitSearchLimit___")]
4461 public static extern void SearchLimit_EnterSearchSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4462
4463 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_BeginNextDecision___")]
4464 public static extern void SearchLimit_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4465
4466 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_BeginNextDecisionSwigExplicitSearchLimit___")]
4467 public static extern void SearchLimit_BeginNextDecisionSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4468
4469 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_PeriodicCheck___")]
4470 public static extern void SearchLimit_PeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1);
4471
4472 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_PeriodicCheckSwigExplicitSearchLimit___")]
4473 public static extern void SearchLimit_PeriodicCheckSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4474
4475 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_RefuteDecision___")]
4476 public static extern void SearchLimit_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4477
4478 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_RefuteDecisionSwigExplicitSearchLimit___")]
4479 public static extern void SearchLimit_RefuteDecisionSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4480
4481 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_ToString___")]
4482 public static extern string SearchLimit_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4483
4484 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_ToStringSwigExplicitSearchLimit___")]
4485 public static extern string SearchLimit_ToStringSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4486
4487 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_Install___")]
4488 public static extern void SearchLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
4489
4490 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_InstallSwigExplicitSearchLimit___")]
4491 public static extern void SearchLimit_InstallSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4492
4493 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_director_connect___")]
4494 public static extern void SearchLimit_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SearchLimit.SwigDelegateSearchLimit_0 delegate0, SearchLimit.SwigDelegateSearchLimit_1 delegate1, SearchLimit.SwigDelegateSearchLimit_2 delegate2, SearchLimit.SwigDelegateSearchLimit_3 delegate3, SearchLimit.SwigDelegateSearchLimit_4 delegate4, SearchLimit.SwigDelegateSearchLimit_5 delegate5, SearchLimit.SwigDelegateSearchLimit_6 delegate6, SearchLimit.SwigDelegateSearchLimit_7 delegate7, SearchLimit.SwigDelegateSearchLimit_8 delegate8, SearchLimit.SwigDelegateSearchLimit_9 delegate9, SearchLimit.SwigDelegateSearchLimit_10 delegate10, SearchLimit.SwigDelegateSearchLimit_11 delegate11, SearchLimit.SwigDelegateSearchLimit_12 delegate12, SearchLimit.SwigDelegateSearchLimit_13 delegate13, SearchLimit.SwigDelegateSearchLimit_14 delegate14, SearchLimit.SwigDelegateSearchLimit_15 delegate15, SearchLimit.SwigDelegateSearchLimit_16 delegate16, SearchLimit.SwigDelegateSearchLimit_17 delegate17, SearchLimit.SwigDelegateSearchLimit_18 delegate18, SearchLimit.SwigDelegateSearchLimit_19 delegate19, SearchLimit.SwigDelegateSearchLimit_20 delegate20, SearchLimit.SwigDelegateSearchLimit_21 delegate21, SearchLimit.SwigDelegateSearchLimit_22 delegate22, SearchLimit.SwigDelegateSearchLimit_23 delegate23, SearchLimit.SwigDelegateSearchLimit_24 delegate24, SearchLimit.SwigDelegateSearchLimit_25 delegate25, SearchLimit.SwigDelegateSearchLimit_26 delegate26, SearchLimit.SwigDelegateSearchLimit_27 delegate27, SearchLimit.SwigDelegateSearchLimit_28 delegate28);
4495
4496 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RegularLimit___")]
4497 public static extern global::System.IntPtr new_RegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7);
4498
4499 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RegularLimit___")]
4500 public static extern void delete_RegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4501
4502 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Copy___")]
4503 public static extern void RegularLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4504
4505 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_CopySwigExplicitRegularLimit___")]
4506 public static extern void RegularLimit_CopySwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4507
4508 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_MakeClone___")]
4509 public static extern global::System.IntPtr RegularLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1);
4510
4511 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_MakeCloneSwigExplicitRegularLimit___")]
4512 public static extern global::System.IntPtr RegularLimit_MakeCloneSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4513
4514 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_MakeIdenticalClone___")]
4515 public static extern global::System.IntPtr RegularLimit_MakeIdenticalClone(global::System.Runtime.InteropServices.HandleRef jarg1);
4516
4517 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_CheckWithOffset___")]
4518 public static extern bool RegularLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4519
4520 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_CheckWithOffsetSwigExplicitRegularLimit___")]
4521 public static extern bool RegularLimit_CheckWithOffsetSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4522
4523 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Init___")]
4524 public static extern void RegularLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1);
4525
4526 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_InitSwigExplicitRegularLimit___")]
4527 public static extern void RegularLimit_InitSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4528
4529 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ExitSearch___")]
4530 public static extern void RegularLimit_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
4531
4532 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ExitSearchSwigExplicitRegularLimit___")]
4533 public static extern void RegularLimit_ExitSearchSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4534
4535 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_UpdateLimits___")]
4536 public static extern void RegularLimit_UpdateLimits(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5);
4537
4538 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_WallTime___")]
4539 public static extern long RegularLimit_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1);
4540
4541 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Branches___")]
4542 public static extern long RegularLimit_Branches(global::System.Runtime.InteropServices.HandleRef jarg1);
4543
4544 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Failures___")]
4545 public static extern long RegularLimit_Failures(global::System.Runtime.InteropServices.HandleRef jarg1);
4546
4547 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Solutions___")]
4548 public static extern long RegularLimit_Solutions(global::System.Runtime.InteropServices.HandleRef jarg1);
4549
4550 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_IsUncheckedSolutionLimitReached___")]
4551 public static extern bool RegularLimit_IsUncheckedSolutionLimitReached(global::System.Runtime.InteropServices.HandleRef jarg1);
4552
4553 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_IsUncheckedSolutionLimitReachedSwigExplicitRegularLimit___")]
4554 public static extern bool RegularLimit_IsUncheckedSolutionLimitReachedSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4555
4556 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ProgressPercent___")]
4557 public static extern int RegularLimit_ProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1);
4558
4559 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ProgressPercentSwigExplicitRegularLimit___")]
4560 public static extern int RegularLimit_ProgressPercentSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4561
4562 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ToString___")]
4563 public static extern string RegularLimit_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4564
4565 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_ToStringSwigExplicitRegularLimit___")]
4566 public static extern string RegularLimit_ToStringSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4567
4568 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Install___")]
4569 public static extern void RegularLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
4570
4571 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_InstallSwigExplicitRegularLimit___")]
4572 public static extern void RegularLimit_InstallSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4573
4574 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_Accept___")]
4575 public static extern void RegularLimit_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4576
4577 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_AcceptSwigExplicitRegularLimit___")]
4578 public static extern void RegularLimit_AcceptSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4579
4580 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_director_connect___")]
4581 public static extern void RegularLimit_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, RegularLimit.SwigDelegateRegularLimit_0 delegate0, RegularLimit.SwigDelegateRegularLimit_1 delegate1, RegularLimit.SwigDelegateRegularLimit_2 delegate2, RegularLimit.SwigDelegateRegularLimit_3 delegate3, RegularLimit.SwigDelegateRegularLimit_4 delegate4, RegularLimit.SwigDelegateRegularLimit_5 delegate5, RegularLimit.SwigDelegateRegularLimit_6 delegate6, RegularLimit.SwigDelegateRegularLimit_7 delegate7, RegularLimit.SwigDelegateRegularLimit_8 delegate8, RegularLimit.SwigDelegateRegularLimit_9 delegate9, RegularLimit.SwigDelegateRegularLimit_10 delegate10, RegularLimit.SwigDelegateRegularLimit_11 delegate11, RegularLimit.SwigDelegateRegularLimit_12 delegate12, RegularLimit.SwigDelegateRegularLimit_13 delegate13, RegularLimit.SwigDelegateRegularLimit_14 delegate14, RegularLimit.SwigDelegateRegularLimit_15 delegate15, RegularLimit.SwigDelegateRegularLimit_16 delegate16, RegularLimit.SwigDelegateRegularLimit_17 delegate17, RegularLimit.SwigDelegateRegularLimit_18 delegate18, RegularLimit.SwigDelegateRegularLimit_19 delegate19, RegularLimit.SwigDelegateRegularLimit_20 delegate20, RegularLimit.SwigDelegateRegularLimit_21 delegate21, RegularLimit.SwigDelegateRegularLimit_22 delegate22, RegularLimit.SwigDelegateRegularLimit_23 delegate23, RegularLimit.SwigDelegateRegularLimit_24 delegate24, RegularLimit.SwigDelegateRegularLimit_25 delegate25, RegularLimit.SwigDelegateRegularLimit_26 delegate26, RegularLimit.SwigDelegateRegularLimit_27 delegate27, RegularLimit.SwigDelegateRegularLimit_28 delegate28);
4582
4583 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_ImprovementSearchLimit__SWIG_0___")]
4584 public static extern global::System.IntPtr new_ImprovementSearchLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, double jarg4, double jarg5, double jarg6, int jarg7);
4585
4586 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_ImprovementSearchLimit__SWIG_1___")]
4587 public static extern global::System.IntPtr new_ImprovementSearchLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, double jarg6, int jarg7);
4588
4589 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_ImprovementSearchLimit___")]
4590 public static extern void delete_ImprovementSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1);
4591
4592 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_Copy___")]
4593 public static extern void ImprovementSearchLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4594
4595 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_MakeClone___")]
4596 public static extern global::System.IntPtr ImprovementSearchLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1);
4597
4598 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_CheckWithOffset___")]
4599 public static extern bool ImprovementSearchLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4600
4601 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_AtSolution___")]
4602 public static extern bool ImprovementSearchLimit_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
4603
4604 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_Init___")]
4605 public static extern void ImprovementSearchLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1);
4606
4607 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_Install___")]
4608 public static extern void ImprovementSearchLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
4609
4610 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_kMinValidValue_get___")]
4611 public static extern long IntervalVar_kMinValidValue_get();
4612
4613 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_kMaxValidValue_get___")]
4614 public static extern long IntervalVar_kMaxValidValue_get();
4615
4616 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntervalVar___")]
4617 public static extern void delete_IntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4618
4619 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartMin___")]
4620 public static extern long IntervalVar_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4621
4622 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartMax___")]
4623 public static extern long IntervalVar_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4624
4625 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetStartMin___")]
4626 public static extern void IntervalVar_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4627
4628 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetStartMax___")]
4629 public static extern void IntervalVar_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4630
4631 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetStartRange___")]
4632 public static extern void IntervalVar_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4633
4634 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldStartMin___")]
4635 public static extern long IntervalVar_OldStartMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4636
4637 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldStartMax___")]
4638 public static extern long IntervalVar_OldStartMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4639
4640 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenStartRange__SWIG_0___")]
4641 public static extern void IntervalVar_WhenStartRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4642
4643 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenStartRange__SWIG_1___")]
4644 public static extern void IntervalVar_WhenStartRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4645
4646 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenStartBound__SWIG_0___")]
4647 public static extern void IntervalVar_WhenStartBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4648
4649 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenStartBound__SWIG_1___")]
4650 public static extern void IntervalVar_WhenStartBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4651
4652 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_DurationMin___")]
4653 public static extern long IntervalVar_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4654
4655 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_DurationMax___")]
4656 public static extern long IntervalVar_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4657
4658 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetDurationMin___")]
4659 public static extern void IntervalVar_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4660
4661 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetDurationMax___")]
4662 public static extern void IntervalVar_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4663
4664 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetDurationRange___")]
4665 public static extern void IntervalVar_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4666
4667 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldDurationMin___")]
4668 public static extern long IntervalVar_OldDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4669
4670 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldDurationMax___")]
4671 public static extern long IntervalVar_OldDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4672
4673 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenDurationRange__SWIG_0___")]
4674 public static extern void IntervalVar_WhenDurationRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4675
4676 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenDurationRange__SWIG_1___")]
4677 public static extern void IntervalVar_WhenDurationRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4678
4679 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenDurationBound__SWIG_0___")]
4680 public static extern void IntervalVar_WhenDurationBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4681
4682 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenDurationBound__SWIG_1___")]
4683 public static extern void IntervalVar_WhenDurationBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4684
4685 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndMin___")]
4686 public static extern long IntervalVar_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4687
4688 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndMax___")]
4689 public static extern long IntervalVar_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4690
4691 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetEndMin___")]
4692 public static extern void IntervalVar_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4693
4694 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetEndMax___")]
4695 public static extern void IntervalVar_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4696
4697 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetEndRange___")]
4698 public static extern void IntervalVar_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4699
4700 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldEndMin___")]
4701 public static extern long IntervalVar_OldEndMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4702
4703 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_OldEndMax___")]
4704 public static extern long IntervalVar_OldEndMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4705
4706 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenEndRange__SWIG_0___")]
4707 public static extern void IntervalVar_WhenEndRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4708
4709 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenEndRange__SWIG_1___")]
4710 public static extern void IntervalVar_WhenEndRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4711
4712 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenEndBound__SWIG_0___")]
4713 public static extern void IntervalVar_WhenEndBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4714
4715 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenEndBound__SWIG_1___")]
4716 public static extern void IntervalVar_WhenEndBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4717
4718 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_MustBePerformed___")]
4719 public static extern bool IntervalVar_MustBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1);
4720
4721 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_MayBePerformed___")]
4722 public static extern bool IntervalVar_MayBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1);
4723
4724 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_CannotBePerformed___")]
4725 public static extern bool IntervalVar_CannotBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1);
4726
4727 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_IsPerformedBound___")]
4728 public static extern bool IntervalVar_IsPerformedBound(global::System.Runtime.InteropServices.HandleRef jarg1);
4729
4730 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SetPerformed___")]
4731 public static extern void IntervalVar_SetPerformed(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4732
4733 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WasPerformedBound___")]
4734 public static extern bool IntervalVar_WasPerformedBound(global::System.Runtime.InteropServices.HandleRef jarg1);
4735
4736 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenPerformedBound__SWIG_0___")]
4737 public static extern void IntervalVar_WhenPerformedBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4738
4739 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenPerformedBound__SWIG_1___")]
4740 public static extern void IntervalVar_WhenPerformedBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4741
4742 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenAnything__SWIG_0___")]
4743 public static extern void IntervalVar_WhenAnything__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4744
4745 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_WhenAnything__SWIG_1___")]
4746 public static extern void IntervalVar_WhenAnything__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
4747
4748 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartExpr___")]
4749 public static extern global::System.IntPtr IntervalVar_StartExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
4750
4751 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_DurationExpr___")]
4752 public static extern global::System.IntPtr IntervalVar_DurationExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
4753
4754 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndExpr___")]
4755 public static extern global::System.IntPtr IntervalVar_EndExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
4756
4757 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_PerformedExpr___")]
4758 public static extern global::System.IntPtr IntervalVar_PerformedExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
4759
4760 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SafeStartExpr___")]
4761 public static extern global::System.IntPtr IntervalVar_SafeStartExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4762
4763 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SafeDurationExpr___")]
4764 public static extern global::System.IntPtr IntervalVar_SafeDurationExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4765
4766 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SafeEndExpr___")]
4767 public static extern global::System.IntPtr IntervalVar_SafeEndExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4768
4769 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_Accept___")]
4770 public static extern void IntervalVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4771
4772 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAfterEnd___")]
4773 public static extern global::System.IntPtr IntervalVar_EndsAfterEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4774
4775 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAfterStart___")]
4776 public static extern global::System.IntPtr IntervalVar_EndsAfterStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4777
4778 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAtEnd___")]
4779 public static extern global::System.IntPtr IntervalVar_EndsAtEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4780
4781 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAtStart___")]
4782 public static extern global::System.IntPtr IntervalVar_EndsAtStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4783
4784 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAfterEnd___")]
4785 public static extern global::System.IntPtr IntervalVar_StartsAfterEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4786
4787 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAfterStart___")]
4788 public static extern global::System.IntPtr IntervalVar_StartsAfterStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4789
4790 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAtEnd___")]
4791 public static extern global::System.IntPtr IntervalVar_StartsAtEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4792
4793 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAtStart___")]
4794 public static extern global::System.IntPtr IntervalVar_StartsAtStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4795
4796 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAfterEndWithDelay___")]
4797 public static extern global::System.IntPtr IntervalVar_EndsAfterEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4798
4799 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAfterStartWithDelay___")]
4800 public static extern global::System.IntPtr IntervalVar_EndsAfterStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4801
4802 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAtEndWithDelay___")]
4803 public static extern global::System.IntPtr IntervalVar_EndsAtEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4804
4805 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAtStartWithDelay___")]
4806 public static extern global::System.IntPtr IntervalVar_EndsAtStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4807
4808 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAfterEndWithDelay___")]
4809 public static extern global::System.IntPtr IntervalVar_StartsAfterEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4810
4811 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAfterStartWithDelay___")]
4812 public static extern global::System.IntPtr IntervalVar_StartsAfterStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4813
4814 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAtEndWithDelay___")]
4815 public static extern global::System.IntPtr IntervalVar_StartsAtEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4816
4817 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAtStartWithDelay___")]
4818 public static extern global::System.IntPtr IntervalVar_StartsAtStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
4819
4820 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAfter___")]
4821 public static extern global::System.IntPtr IntervalVar_EndsAfter(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4822
4823 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsAt___")]
4824 public static extern global::System.IntPtr IntervalVar_EndsAt(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4825
4826 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_EndsBefore___")]
4827 public static extern global::System.IntPtr IntervalVar_EndsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4828
4829 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAfter___")]
4830 public static extern global::System.IntPtr IntervalVar_StartsAfter(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4831
4832 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsAt___")]
4833 public static extern global::System.IntPtr IntervalVar_StartsAt(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4834
4835 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_StartsBefore___")]
4836 public static extern global::System.IntPtr IntervalVar_StartsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4837
4838 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_CrossesDate___")]
4839 public static extern global::System.IntPtr IntervalVar_CrossesDate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4840
4841 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_AvoidsDate___")]
4842 public static extern global::System.IntPtr IntervalVar_AvoidsDate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4843
4844 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_RelaxedMax___")]
4845 public static extern global::System.IntPtr IntervalVar_RelaxedMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4846
4847 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_RelaxedMin___")]
4848 public static extern global::System.IntPtr IntervalVar_RelaxedMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4849
4850 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVar___")]
4851 public static extern global::System.IntPtr new_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, string jarg4);
4852
4853 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SequenceVar___")]
4854 public static extern void delete_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1);
4855
4856 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_ToString___")]
4857 public static extern string SequenceVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4858
4859 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_RankFirst___")]
4860 public static extern void SequenceVar_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4861
4862 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_RankNotFirst___")]
4863 public static extern void SequenceVar_RankNotFirst(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4864
4865 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_RankLast___")]
4866 public static extern void SequenceVar_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4867
4868 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_RankNotLast___")]
4869 public static extern void SequenceVar_RankNotLast(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4870
4871 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_RankSequence___")]
4872 public static extern void SequenceVar_RankSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, int length4, int[] jarg4);
4873
4874 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_Interval___")]
4875 public static extern global::System.IntPtr SequenceVar_Interval(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4876
4877 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_Next___")]
4878 public static extern global::System.IntPtr SequenceVar_Next(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4879
4880 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_Size___")]
4881 public static extern long SequenceVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
4882
4883 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_Accept___")]
4884 public static extern void SequenceVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4885
4886 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_AssignmentElement___")]
4887 public static extern global::System.IntPtr new_AssignmentElement();
4888
4889 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentElement_Activate___")]
4890 public static extern void AssignmentElement_Activate(global::System.Runtime.InteropServices.HandleRef jarg1);
4891
4892 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentElement_Deactivate___")]
4893 public static extern void AssignmentElement_Deactivate(global::System.Runtime.InteropServices.HandleRef jarg1);
4894
4895 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentElement_Activated___")]
4896 public static extern bool AssignmentElement_Activated(global::System.Runtime.InteropServices.HandleRef jarg1);
4897
4898 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_AssignmentElement___")]
4899 public static extern void delete_AssignmentElement(global::System.Runtime.InteropServices.HandleRef jarg1);
4900
4901 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarElement__SWIG_0___")]
4902 public static extern global::System.IntPtr new_IntVarElement__SWIG_0();
4903
4904 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarElement__SWIG_1___")]
4905 public static extern global::System.IntPtr new_IntVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4906
4907 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Reset___")]
4908 public static extern void IntVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4909
4910 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Clone___")]
4911 public static extern global::System.IntPtr IntVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4912
4913 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Copy___")]
4914 public static extern void IntVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4915
4916 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Var___")]
4917 public static extern global::System.IntPtr IntVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
4918
4919 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Store___")]
4920 public static extern void IntVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
4921
4922 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Restore___")]
4923 public static extern void IntVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
4924
4925 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Min___")]
4926 public static extern long IntVarElement_Min(global::System.Runtime.InteropServices.HandleRef jarg1);
4927
4928 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_SetMin___")]
4929 public static extern void IntVarElement_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4930
4931 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Max___")]
4932 public static extern long IntVarElement_Max(global::System.Runtime.InteropServices.HandleRef jarg1);
4933
4934 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_SetMax___")]
4935 public static extern void IntVarElement_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4936
4937 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Value___")]
4938 public static extern long IntVarElement_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
4939
4940 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_Bound___")]
4941 public static extern bool IntVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1);
4942
4943 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_SetRange___")]
4944 public static extern void IntVarElement_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
4945
4946 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_SetValue___")]
4947 public static extern void IntVarElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4948
4949 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_ToString___")]
4950 public static extern string IntVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
4951
4952 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVarElement___")]
4953 public static extern void delete_IntVarElement(global::System.Runtime.InteropServices.HandleRef jarg1);
4954
4955 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntervalVarElement__SWIG_0___")]
4956 public static extern global::System.IntPtr new_IntervalVarElement__SWIG_0();
4957
4958 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntervalVarElement__SWIG_1___")]
4959 public static extern global::System.IntPtr new_IntervalVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4960
4961 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Reset___")]
4962 public static extern void IntervalVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4963
4964 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Clone___")]
4965 public static extern global::System.IntPtr IntervalVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4966
4967 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Copy___")]
4968 public static extern void IntervalVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4969
4970 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Var___")]
4971 public static extern global::System.IntPtr IntervalVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
4972
4973 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Store___")]
4974 public static extern void IntervalVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
4975
4976 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Restore___")]
4977 public static extern void IntervalVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
4978
4979 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_StartMin___")]
4980 public static extern long IntervalVarElement_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4981
4982 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_StartMax___")]
4983 public static extern long IntervalVarElement_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4984
4985 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_StartValue___")]
4986 public static extern long IntervalVarElement_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1);
4987
4988 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_DurationMin___")]
4989 public static extern long IntervalVarElement_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4990
4991 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_DurationMax___")]
4992 public static extern long IntervalVarElement_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1);
4993
4994 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_DurationValue___")]
4995 public static extern long IntervalVarElement_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1);
4996
4997 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_EndMin___")]
4998 public static extern long IntervalVarElement_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1);
4999
5000 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_EndMax___")]
5001 public static extern long IntervalVarElement_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1);
5002
5003 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_EndValue___")]
5004 public static extern long IntervalVarElement_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5005
5006 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_PerformedMin___")]
5007 public static extern long IntervalVarElement_PerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1);
5008
5009 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_PerformedMax___")]
5010 public static extern long IntervalVarElement_PerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1);
5011
5012 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_PerformedValue___")]
5013 public static extern long IntervalVarElement_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5014
5015 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetStartMin___")]
5016 public static extern void IntervalVarElement_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5017
5018 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetStartMax___")]
5019 public static extern void IntervalVarElement_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5020
5021 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetStartRange___")]
5022 public static extern void IntervalVarElement_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5023
5024 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetStartValue___")]
5025 public static extern void IntervalVarElement_SetStartValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5026
5027 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetDurationMin___")]
5028 public static extern void IntervalVarElement_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5029
5030 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetDurationMax___")]
5031 public static extern void IntervalVarElement_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5032
5033 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetDurationRange___")]
5034 public static extern void IntervalVarElement_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5035
5036 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetDurationValue___")]
5037 public static extern void IntervalVarElement_SetDurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5038
5039 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetEndMin___")]
5040 public static extern void IntervalVarElement_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5041
5042 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetEndMax___")]
5043 public static extern void IntervalVarElement_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5044
5045 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetEndRange___")]
5046 public static extern void IntervalVarElement_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5047
5048 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetEndValue___")]
5049 public static extern void IntervalVarElement_SetEndValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5050
5051 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetPerformedMin___")]
5052 public static extern void IntervalVarElement_SetPerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5053
5054 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetPerformedMax___")]
5055 public static extern void IntervalVarElement_SetPerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5056
5057 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetPerformedRange___")]
5058 public static extern void IntervalVarElement_SetPerformedRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5059
5060 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SetPerformedValue___")]
5061 public static extern void IntervalVarElement_SetPerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5062
5063 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_Bound___")]
5064 public static extern bool IntervalVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1);
5065
5066 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_ToString___")]
5067 public static extern string IntervalVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
5068
5069 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntervalVarElement___")]
5070 public static extern void delete_IntervalVarElement(global::System.Runtime.InteropServices.HandleRef jarg1);
5071
5072 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVarElement__SWIG_0___")]
5073 public static extern global::System.IntPtr new_SequenceVarElement__SWIG_0();
5074
5075 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SequenceVarElement__SWIG_1___")]
5076 public static extern global::System.IntPtr new_SequenceVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5077
5078 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Reset___")]
5079 public static extern void SequenceVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5080
5081 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Clone___")]
5082 public static extern global::System.IntPtr SequenceVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5083
5084 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Copy___")]
5085 public static extern void SequenceVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5086
5087 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Var___")]
5088 public static extern global::System.IntPtr SequenceVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
5089
5090 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Store___")]
5091 public static extern void SequenceVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
5092
5093 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Restore___")]
5094 public static extern void SequenceVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
5095
5096 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_ForwardSequence___")]
5097 public static extern global::System.IntPtr SequenceVarElement_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
5098
5099 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_BackwardSequence___")]
5100 public static extern global::System.IntPtr SequenceVarElement_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
5101
5102 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Unperformed___")]
5103 public static extern global::System.IntPtr SequenceVarElement_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1);
5104
5105 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_SetSequence___")]
5106 public static extern void SequenceVarElement_SetSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, int length4, int[] jarg4);
5107
5108 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_SetForwardSequence___")]
5109 public static extern void SequenceVarElement_SetForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
5110
5111 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_SetBackwardSequence___")]
5112 public static extern void SequenceVarElement_SetBackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
5113
5114 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_SetUnperformed___")]
5115 public static extern void SequenceVarElement_SetUnperformed(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
5116
5117 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_Bound___")]
5118 public static extern bool SequenceVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1);
5119
5120 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_ToString___")]
5121 public static extern string SequenceVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
5122
5123 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SequenceVarElement___")]
5124 public static extern void delete_SequenceVarElement(global::System.Runtime.InteropServices.HandleRef jarg1);
5125
5126 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Assignment__SWIG_0___")]
5127 public static extern global::System.IntPtr new_Assignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5128
5129 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Assignment__SWIG_1___")]
5130 public static extern global::System.IntPtr new_Assignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5131
5132 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Assignment___")]
5133 public static extern void delete_Assignment(global::System.Runtime.InteropServices.HandleRef jarg1);
5134
5135 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Clear___")]
5136 public static extern void Assignment_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5137
5138 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Empty___")]
5139 public static extern bool Assignment_Empty(global::System.Runtime.InteropServices.HandleRef jarg1);
5140
5141 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Size___")]
5142 public static extern int Assignment_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
5143
5144 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_NumIntVars___")]
5145 public static extern int Assignment_NumIntVars(global::System.Runtime.InteropServices.HandleRef jarg1);
5146
5147 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_NumIntervalVars___")]
5148 public static extern int Assignment_NumIntervalVars(global::System.Runtime.InteropServices.HandleRef jarg1);
5149
5150 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_NumSequenceVars___")]
5151 public static extern int Assignment_NumSequenceVars(global::System.Runtime.InteropServices.HandleRef jarg1);
5152
5153 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Store___")]
5154 public static extern void Assignment_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
5155
5156 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Restore___")]
5157 public static extern void Assignment_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
5158
5159 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_AddObjective___")]
5160 public static extern void Assignment_AddObjective(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5161
5162 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_AddObjectives___")]
5163 public static extern void Assignment_AddObjectives(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5164
5165 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ClearObjective___")]
5166 public static extern void Assignment_ClearObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
5167
5168 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_NumObjectives___")]
5169 public static extern int Assignment_NumObjectives(global::System.Runtime.InteropServices.HandleRef jarg1);
5170
5171 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Objective___")]
5172 public static extern global::System.IntPtr Assignment_Objective(global::System.Runtime.InteropServices.HandleRef jarg1);
5173
5174 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveFromIndex___")]
5175 public static extern global::System.IntPtr Assignment_ObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5176
5177 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_HasObjective___")]
5178 public static extern bool Assignment_HasObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
5179
5180 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_HasObjectiveFromIndex___")]
5181 public static extern bool Assignment_HasObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5182
5183 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveMin___")]
5184 public static extern long Assignment_ObjectiveMin(global::System.Runtime.InteropServices.HandleRef jarg1);
5185
5186 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveMax___")]
5187 public static extern long Assignment_ObjectiveMax(global::System.Runtime.InteropServices.HandleRef jarg1);
5188
5189 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveValue___")]
5190 public static extern long Assignment_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5191
5192 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveBound___")]
5193 public static extern bool Assignment_ObjectiveBound(global::System.Runtime.InteropServices.HandleRef jarg1);
5194
5195 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveMin___")]
5196 public static extern void Assignment_SetObjectiveMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5197
5198 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveMax___")]
5199 public static extern void Assignment_SetObjectiveMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5200
5201 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveValue___")]
5202 public static extern void Assignment_SetObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5203
5204 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveRange___")]
5205 public static extern void Assignment_SetObjectiveRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5206
5207 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveMinFromIndex___")]
5208 public static extern long Assignment_ObjectiveMinFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5209
5210 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveMaxFromIndex___")]
5211 public static extern long Assignment_ObjectiveMaxFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5212
5213 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveValueFromIndex___")]
5214 public static extern long Assignment_ObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5215
5216 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ObjectiveBoundFromIndex___")]
5217 public static extern bool Assignment_ObjectiveBoundFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5218
5219 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveMinFromIndex___")]
5220 public static extern void Assignment_SetObjectiveMinFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
5221
5222 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveMaxFromIndex___")]
5223 public static extern void Assignment_SetObjectiveMaxFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
5224
5225 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveValueFromIndex___")]
5226 public static extern void Assignment_SetObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
5227
5228 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetObjectiveRangeFromIndex___")]
5229 public static extern void Assignment_SetObjectiveRangeFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4);
5230
5231 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_0___")]
5232 public static extern global::System.IntPtr Assignment_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5233
5234 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_1___")]
5235 public static extern void Assignment_Add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5236
5237 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_FastAdd__SWIG_0___")]
5238 public static extern global::System.IntPtr Assignment_FastAdd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5239
5240 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Min___")]
5241 public static extern long Assignment_Min(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5242
5243 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Max___")]
5244 public static extern long Assignment_Max(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5245
5246 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Value___")]
5247 public static extern long Assignment_Value(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5248
5249 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Bound___")]
5250 public static extern bool Assignment_Bound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5251
5252 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetMin___")]
5253 public static extern void Assignment_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5254
5255 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetMax___")]
5256 public static extern void Assignment_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5257
5258 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetRange___")]
5259 public static extern void Assignment_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5260
5261 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetValue___")]
5262 public static extern void Assignment_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5263
5264 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_2___")]
5265 public static extern global::System.IntPtr Assignment_Add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5266
5267 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_3___")]
5268 public static extern void Assignment_Add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5269
5270 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_FastAdd__SWIG_1___")]
5271 public static extern global::System.IntPtr Assignment_FastAdd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5272
5273 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_StartMin___")]
5274 public static extern long Assignment_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5275
5276 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_StartMax___")]
5277 public static extern long Assignment_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5278
5279 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_StartValue___")]
5280 public static extern long Assignment_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5281
5282 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_DurationMin___")]
5283 public static extern long Assignment_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5284
5285 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_DurationMax___")]
5286 public static extern long Assignment_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5287
5288 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_DurationValue___")]
5289 public static extern long Assignment_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5290
5291 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_EndMin___")]
5292 public static extern long Assignment_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5293
5294 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_EndMax___")]
5295 public static extern long Assignment_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5296
5297 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_EndValue___")]
5298 public static extern long Assignment_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5299
5300 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_PerformedMin___")]
5301 public static extern long Assignment_PerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5302
5303 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_PerformedMax___")]
5304 public static extern long Assignment_PerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5305
5306 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_PerformedValue___")]
5307 public static extern long Assignment_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5308
5309 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetStartMin___")]
5310 public static extern void Assignment_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5311
5312 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetStartMax___")]
5313 public static extern void Assignment_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5314
5315 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetStartRange___")]
5316 public static extern void Assignment_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5317
5318 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetStartValue___")]
5319 public static extern void Assignment_SetStartValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5320
5321 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetDurationMin___")]
5322 public static extern void Assignment_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5323
5324 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetDurationMax___")]
5325 public static extern void Assignment_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5326
5327 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetDurationRange___")]
5328 public static extern void Assignment_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5329
5330 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetDurationValue___")]
5331 public static extern void Assignment_SetDurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5332
5333 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetEndMin___")]
5334 public static extern void Assignment_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5335
5336 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetEndMax___")]
5337 public static extern void Assignment_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5338
5339 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetEndRange___")]
5340 public static extern void Assignment_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5341
5342 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetEndValue___")]
5343 public static extern void Assignment_SetEndValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5344
5345 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetPerformedMin___")]
5346 public static extern void Assignment_SetPerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5347
5348 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetPerformedMax___")]
5349 public static extern void Assignment_SetPerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5350
5351 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetPerformedRange___")]
5352 public static extern void Assignment_SetPerformedRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5353
5354 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetPerformedValue___")]
5355 public static extern void Assignment_SetPerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5356
5357 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_4___")]
5358 public static extern global::System.IntPtr Assignment_Add__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5359
5360 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Add__SWIG_5___")]
5361 public static extern void Assignment_Add__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5362
5363 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_FastAdd__SWIG_2___")]
5364 public static extern global::System.IntPtr Assignment_FastAdd__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5365
5366 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ForwardSequence___")]
5367 public static extern global::System.IntPtr Assignment_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5368
5369 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_BackwardSequence___")]
5370 public static extern global::System.IntPtr Assignment_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5371
5372 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Unperformed___")]
5373 public static extern global::System.IntPtr Assignment_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5374
5375 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetSequence___")]
5376 public static extern void Assignment_SetSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5);
5377
5378 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetForwardSequence___")]
5379 public static extern void Assignment_SetForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
5380
5381 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetBackwardSequence___")]
5382 public static extern void Assignment_SetBackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
5383
5384 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SetUnperformed___")]
5385 public static extern void Assignment_SetUnperformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3);
5386
5387 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activate__SWIG_0___")]
5388 public static extern void Assignment_Activate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5389
5390 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Deactivate__SWIG_0___")]
5391 public static extern void Assignment_Deactivate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5392
5393 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activated__SWIG_0___")]
5394 public static extern bool Assignment_Activated__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5395
5396 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activate__SWIG_1___")]
5397 public static extern void Assignment_Activate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5398
5399 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Deactivate__SWIG_1___")]
5400 public static extern void Assignment_Deactivate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5401
5402 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activated__SWIG_1___")]
5403 public static extern bool Assignment_Activated__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5404
5405 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activate__SWIG_2___")]
5406 public static extern void Assignment_Activate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5407
5408 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Deactivate__SWIG_2___")]
5409 public static extern void Assignment_Deactivate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5410
5411 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Activated__SWIG_2___")]
5412 public static extern bool Assignment_Activated__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5413
5414 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ActivateObjective___")]
5415 public static extern void Assignment_ActivateObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
5416
5417 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_DeactivateObjective___")]
5418 public static extern void Assignment_DeactivateObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
5419
5420 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ActivatedObjective___")]
5421 public static extern bool Assignment_ActivatedObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
5422
5423 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ActivateObjectiveFromIndex___")]
5424 public static extern void Assignment_ActivateObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5425
5426 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_DeactivateObjectiveFromIndex___")]
5427 public static extern void Assignment_DeactivateObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5428
5429 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ActivatedObjectiveFromIndex___")]
5430 public static extern bool Assignment_ActivatedObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5431
5432 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_ToString___")]
5433 public static extern string Assignment_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
5434
5435 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_AreAllElementsBound___")]
5436 public static extern bool Assignment_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1);
5437
5438 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Contains__SWIG_0___")]
5439 public static extern bool Assignment_Contains__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5440
5441 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Contains__SWIG_1___")]
5442 public static extern bool Assignment_Contains__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5443
5444 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Contains__SWIG_2___")]
5445 public static extern bool Assignment_Contains__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5446
5447 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_CopyIntersection___")]
5448 public static extern void Assignment_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5449
5450 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_Copy___")]
5451 public static extern void Assignment_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5452
5453 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_IntVarContainer___")]
5454 public static extern global::System.IntPtr Assignment_IntVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5455
5456 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_MutableIntVarContainer___")]
5457 public static extern global::System.IntPtr Assignment_MutableIntVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5458
5459 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_IntervalVarContainer___")]
5460 public static extern global::System.IntPtr Assignment_IntervalVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5461
5462 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_MutableIntervalVarContainer___")]
5463 public static extern global::System.IntPtr Assignment_MutableIntervalVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5464
5465 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SequenceVarContainer___")]
5466 public static extern global::System.IntPtr Assignment_SequenceVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5467
5468 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_MutableSequenceVarContainer___")]
5469 public static extern global::System.IntPtr Assignment_MutableSequenceVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
5470
5471 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SetAssignmentFromAssignment___")]
5472 public static extern void SetAssignmentFromAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
5473
5474 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_Pack___")]
5475 public static extern global::System.IntPtr new_Pack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
5476
5477 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_Pack___")]
5478 public static extern void delete_Pack(global::System.Runtime.InteropServices.HandleRef jarg1);
5479
5480 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_0___")]
5481 public static extern void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, int length3, long[] jarg3);
5482
5483 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_1___")]
5484 public static extern void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, int length3, long[] jarg3);
5485
5486 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_2___")]
5487 public static extern void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, int length3, long[] jarg3);
5488
5489 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumEqualVarDimension__SWIG_0___")]
5490 public static extern void Pack_AddWeightedSumEqualVarDimension__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5491
5492 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumEqualVarDimension__SWIG_1___")]
5493 public static extern void Pack_AddWeightedSumEqualVarDimension__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5494
5495 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddSumVariableWeightsLessOrEqualConstantDimension___")]
5496 public static extern void Pack_AddSumVariableWeightsLessOrEqualConstantDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
5497
5498 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddWeightedSumOfAssignedDimension___")]
5499 public static extern void Pack_AddWeightedSumOfAssignedDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5500
5501 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddCountUsedBinDimension___")]
5502 public static extern void Pack_AddCountUsedBinDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5503
5504 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AddCountAssignedItemsDimension___")]
5505 public static extern void Pack_AddCountAssignedItemsDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5506
5507 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_Post___")]
5508 public static extern void Pack_Post(global::System.Runtime.InteropServices.HandleRef jarg1);
5509
5510 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_ClearAll___")]
5511 public static extern void Pack_ClearAll(global::System.Runtime.InteropServices.HandleRef jarg1);
5512
5513 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_PropagateDelayed___")]
5514 public static extern void Pack_PropagateDelayed(global::System.Runtime.InteropServices.HandleRef jarg1);
5515
5516 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_InitialPropagateWrapper___")]
5517 public static extern void Pack_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1);
5518
5519 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_Propagate___")]
5520 public static extern void Pack_Propagate(global::System.Runtime.InteropServices.HandleRef jarg1);
5521
5522 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_OneDomain___")]
5523 public static extern void Pack_OneDomain(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5524
5525 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_ToString___")]
5526 public static extern string Pack_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
5527
5528 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_IsUndecided___")]
5529 public static extern bool Pack_IsUndecided(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5530
5531 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_SetImpossible___")]
5532 public static extern void Pack_SetImpossible(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5533
5534 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_Assign___")]
5535 public static extern void Pack_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5536
5537 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_IsAssignedStatusKnown___")]
5538 public static extern bool Pack_IsAssignedStatusKnown(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5539
5540 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_IsPossible___")]
5541 public static extern bool Pack_IsPossible(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5542
5543 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AssignVar___")]
5544 public static extern global::System.IntPtr Pack_AssignVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5545
5546 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_SetAssigned___")]
5547 public static extern void Pack_SetAssigned(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5548
5549 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_SetUnassigned___")]
5550 public static extern void Pack_SetUnassigned(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5551
5552 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_RemoveAllPossibleFromBin___")]
5553 public static extern void Pack_RemoveAllPossibleFromBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5554
5555 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AssignAllPossibleToBin___")]
5556 public static extern void Pack_AssignAllPossibleToBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5557
5558 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AssignFirstPossibleToBin___")]
5559 public static extern void Pack_AssignFirstPossibleToBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5560
5561 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_AssignAllRemainingItems___")]
5562 public static extern void Pack_AssignAllRemainingItems(global::System.Runtime.InteropServices.HandleRef jarg1);
5563
5564 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_UnassignAllRemainingItems___")]
5565 public static extern void Pack_UnassignAllRemainingItems(global::System.Runtime.InteropServices.HandleRef jarg1);
5566
5567 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_Accept___")]
5568 public static extern void Pack_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5569
5570 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_DisjunctiveConstraint___")]
5571 public static extern void delete_DisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
5572
5573 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DisjunctiveConstraint_SequenceVar___")]
5574 public static extern global::System.IntPtr DisjunctiveConstraint_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1);
5575
5576 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DisjunctiveConstraint_SetTransitionTime___")]
5577 public static extern void DisjunctiveConstraint_SetTransitionTime(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2);
5578
5579 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DisjunctiveConstraint_TransitionTime___")]
5580 public static extern long DisjunctiveConstraint_TransitionTime(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
5581
5582 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SolutionPool___")]
5583 public static extern void delete_SolutionPool(global::System.Runtime.InteropServices.HandleRef jarg1);
5584
5585 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionPool_Initialize___")]
5586 public static extern void SolutionPool_Initialize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5587
5588 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionPool_RegisterNewSolution___")]
5589 public static extern void SolutionPool_RegisterNewSolution(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5590
5591 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionPool_GetNextSolution___")]
5592 public static extern void SolutionPool_GetNextSolution(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5593
5594 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionPool_SyncNeeded___")]
5595 public static extern bool SolutionPool_SyncNeeded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5596
5597 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BaseIntExpr___")]
5598 public static extern void delete_BaseIntExpr(global::System.Runtime.InteropServices.HandleRef jarg1);
5599
5600 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseIntExpr_Var___")]
5601 public static extern global::System.IntPtr BaseIntExpr_Var(global::System.Runtime.InteropServices.HandleRef jarg1);
5602
5603 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseIntExpr_CastToVar___")]
5604 public static extern global::System.IntPtr BaseIntExpr_CastToVar(global::System.Runtime.InteropServices.HandleRef jarg1);
5605
5606 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_UNSPECIFIED_get___")]
5607 public static extern int UNSPECIFIED_get();
5608
5609 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DOMAIN_INT_VAR_get___")]
5610 public static extern int DOMAIN_INT_VAR_get();
5611
5612 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BOOLEAN_VAR_get___")]
5613 public static extern int BOOLEAN_VAR_get();
5614
5615 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_CONST_VAR_get___")]
5616 public static extern int CONST_VAR_get();
5617
5618 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_VAR_ADD_CST_get___")]
5619 public static extern int VAR_ADD_CST_get();
5620
5621 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_VAR_TIMES_CST_get___")]
5622 public static extern int VAR_TIMES_CST_get();
5623
5624 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_CST_SUB_VAR_get___")]
5625 public static extern int CST_SUB_VAR_get();
5626
5627 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OPP_VAR_get___")]
5628 public static extern int OPP_VAR_get();
5629
5630 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TRACE_VAR_get___")]
5631 public static extern int TRACE_VAR_get();
5632
5633 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchOperator___")]
5634 public static extern global::System.IntPtr new_LocalSearchOperator();
5635
5636 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchOperator___")]
5637 public static extern void delete_LocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5638
5639 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_MakeNextNeighbor___")]
5640 public static extern bool LocalSearchOperator_MakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5641
5642 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_EnterSearch___")]
5643 public static extern void LocalSearchOperator_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
5644
5645 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_EnterSearchSwigExplicitLocalSearchOperator___")]
5646 public static extern void LocalSearchOperator_EnterSearchSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5647
5648 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_Start___")]
5649 public static extern void LocalSearchOperator_Start(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5650
5651 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_Reset___")]
5652 public static extern void LocalSearchOperator_Reset(global::System.Runtime.InteropServices.HandleRef jarg1);
5653
5654 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_ResetSwigExplicitLocalSearchOperator___")]
5655 public static extern void LocalSearchOperator_ResetSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5656
5657 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_HasFragments___")]
5658 public static extern bool LocalSearchOperator_HasFragments(global::System.Runtime.InteropServices.HandleRef jarg1);
5659
5660 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_HasFragmentsSwigExplicitLocalSearchOperator___")]
5661 public static extern bool LocalSearchOperator_HasFragmentsSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5662
5663 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_HoldsDelta___")]
5664 public static extern bool LocalSearchOperator_HoldsDelta(global::System.Runtime.InteropServices.HandleRef jarg1);
5665
5666 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_HoldsDeltaSwigExplicitLocalSearchOperator___")]
5667 public static extern bool LocalSearchOperator_HoldsDeltaSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5668
5669 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_director_connect___")]
5671
5672 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchOperatorState___")]
5673 public static extern global::System.IntPtr new_LocalSearchOperatorState();
5674
5675 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_SetCurrentDomainInjectiveAndKeepInverseValues___")]
5676 public static extern void LocalSearchOperatorState_SetCurrentDomainInjectiveAndKeepInverseValues(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5677
5678 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CandidateValue___")]
5679 public static extern long LocalSearchOperatorState_CandidateValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5680
5681 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CommittedValue___")]
5682 public static extern long LocalSearchOperatorState_CommittedValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5683
5684 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CheckPointValue___")]
5685 public static extern long LocalSearchOperatorState_CheckPointValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5686
5687 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_SetCandidateValue___")]
5688 public static extern void LocalSearchOperatorState_SetCandidateValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5689
5690 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CandidateIsActive___")]
5691 public static extern bool LocalSearchOperatorState_CandidateIsActive(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5692
5693 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_SetCandidateActive___")]
5694 public static extern void LocalSearchOperatorState_SetCandidateActive(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, bool jarg3);
5695
5696 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_Commit___")]
5697 public static extern void LocalSearchOperatorState_Commit(global::System.Runtime.InteropServices.HandleRef jarg1);
5698
5699 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CheckPoint___")]
5700 public static extern void LocalSearchOperatorState_CheckPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
5701
5702 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_Revert___")]
5703 public static extern void LocalSearchOperatorState_Revert(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5704
5705 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CandidateIndicesChanged___")]
5706 public static extern global::System.IntPtr LocalSearchOperatorState_CandidateIndicesChanged(global::System.Runtime.InteropServices.HandleRef jarg1);
5707
5708 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_IncrementalIndicesChanged___")]
5709 public static extern global::System.IntPtr LocalSearchOperatorState_IncrementalIndicesChanged(global::System.Runtime.InteropServices.HandleRef jarg1);
5710
5711 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_Resize___")]
5712 public static extern void LocalSearchOperatorState_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5713
5714 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CandidateInverseValue___")]
5715 public static extern long LocalSearchOperatorState_CandidateInverseValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5716
5717 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperatorState_CommittedInverseValue___")]
5718 public static extern long LocalSearchOperatorState_CommittedInverseValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5719
5720 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchOperatorState___")]
5721 public static extern void delete_LocalSearchOperatorState(global::System.Runtime.InteropServices.HandleRef jarg1);
5722
5723 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarLocalSearchOperator__SWIG_0___")]
5724 public static extern global::System.IntPtr new_IntVarLocalSearchOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5725
5726 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarLocalSearchOperator__SWIG_1___")]
5727 public static extern global::System.IntPtr new_IntVarLocalSearchOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5728
5729 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVarLocalSearchOperator___")]
5730 public static extern void delete_IntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5731
5732 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_HoldsDelta___")]
5733 public static extern bool IntVarLocalSearchOperator_HoldsDelta(global::System.Runtime.InteropServices.HandleRef jarg1);
5734
5735 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_HoldsDeltaSwigExplicitIntVarLocalSearchOperator___")]
5736 public static extern bool IntVarLocalSearchOperator_HoldsDeltaSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5737
5738 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Start___")]
5739 public static extern void IntVarLocalSearchOperator_Start(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5740
5741 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_StartSwigExplicitIntVarLocalSearchOperator___")]
5742 public static extern void IntVarLocalSearchOperator_StartSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5743
5744 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_IsIncremental___")]
5745 public static extern bool IntVarLocalSearchOperator_IsIncremental(global::System.Runtime.InteropServices.HandleRef jarg1);
5746
5747 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_IsIncrementalSwigExplicitIntVarLocalSearchOperator___")]
5748 public static extern bool IntVarLocalSearchOperator_IsIncrementalSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5749
5750 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Size___")]
5751 public static extern int IntVarLocalSearchOperator_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
5752
5753 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Value___")]
5754 public static extern long IntVarLocalSearchOperator_Value(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5755
5756 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Var___")]
5757 public static extern global::System.IntPtr IntVarLocalSearchOperator_Var(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5758
5759 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_SkipUnchanged___")]
5760 public static extern bool IntVarLocalSearchOperator_SkipUnchanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5761
5762 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_SkipUnchangedSwigExplicitIntVarLocalSearchOperator___")]
5763 public static extern bool IntVarLocalSearchOperator_SkipUnchangedSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5764
5765 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_OldValue___")]
5766 public static extern long IntVarLocalSearchOperator_OldValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5767
5768 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_PrevValue___")]
5769 public static extern long IntVarLocalSearchOperator_PrevValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5770
5771 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_SetValue___")]
5772 public static extern void IntVarLocalSearchOperator_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5773
5774 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Activated___")]
5775 public static extern bool IntVarLocalSearchOperator_Activated(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5776
5777 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Activate___")]
5778 public static extern void IntVarLocalSearchOperator_Activate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5779
5780 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_Deactivate___")]
5781 public static extern void IntVarLocalSearchOperator_Deactivate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5782
5783 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_ApplyChanges___")]
5784 public static extern bool IntVarLocalSearchOperator_ApplyChanges(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5785
5786 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_RevertChanges___")]
5787 public static extern void IntVarLocalSearchOperator_RevertChanges(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5788
5789 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_AddVars___")]
5790 public static extern void IntVarLocalSearchOperator_AddVars(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5791
5792 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_OnStart___")]
5793 public static extern void IntVarLocalSearchOperator_OnStart(global::System.Runtime.InteropServices.HandleRef jarg1);
5794
5795 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_OnStartSwigExplicitIntVarLocalSearchOperator___")]
5796 public static extern void IntVarLocalSearchOperator_OnStartSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5797
5798 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_MakeOneNeighbor___")]
5799 public static extern bool IntVarLocalSearchOperator_MakeOneNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
5800
5801 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_MakeOneNeighborSwigExplicitIntVarLocalSearchOperator___")]
5802 public static extern bool IntVarLocalSearchOperator_MakeOneNeighborSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
5803
5804 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_director_connect___")]
5806
5807 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_BaseLns___")]
5808 public static extern global::System.IntPtr new_BaseLns(global::System.Runtime.InteropServices.HandleRef jarg1);
5809
5810 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BaseLns___")]
5811 public static extern void delete_BaseLns(global::System.Runtime.InteropServices.HandleRef jarg1);
5812
5813 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_InitFragments___")]
5814 public static extern void BaseLns_InitFragments(global::System.Runtime.InteropServices.HandleRef jarg1);
5815
5816 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_InitFragmentsSwigExplicitBaseLns___")]
5817 public static extern void BaseLns_InitFragmentsSwigExplicitBaseLns(global::System.Runtime.InteropServices.HandleRef jarg1);
5818
5819 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_NextFragment___")]
5820 public static extern bool BaseLns_NextFragment(global::System.Runtime.InteropServices.HandleRef jarg1);
5821
5822 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_AppendToFragment___")]
5823 public static extern void BaseLns_AppendToFragment(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5824
5825 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_FragmentSize___")]
5826 public static extern int BaseLns_FragmentSize(global::System.Runtime.InteropServices.HandleRef jarg1);
5827
5828 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_HasFragments___")]
5829 public static extern bool BaseLns_HasFragments(global::System.Runtime.InteropServices.HandleRef jarg1);
5830
5831 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_HasFragmentsSwigExplicitBaseLns___")]
5832 public static extern bool BaseLns_HasFragmentsSwigExplicitBaseLns(global::System.Runtime.InteropServices.HandleRef jarg1);
5833
5834 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_director_connect___")]
5835 public static extern void BaseLns_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, BaseLns.SwigDelegateBaseLns_0 delegate0, BaseLns.SwigDelegateBaseLns_1 delegate1, BaseLns.SwigDelegateBaseLns_2 delegate2, BaseLns.SwigDelegateBaseLns_3 delegate3, BaseLns.SwigDelegateBaseLns_4 delegate4, BaseLns.SwigDelegateBaseLns_5 delegate5, BaseLns.SwigDelegateBaseLns_6 delegate6, BaseLns.SwigDelegateBaseLns_7 delegate7, BaseLns.SwigDelegateBaseLns_8 delegate8);
5836
5837 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_ChangeValue___")]
5838 public static extern global::System.IntPtr new_ChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5839
5840 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_ChangeValue___")]
5841 public static extern void delete_ChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5842
5843 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ChangeValue_ModifyValue___")]
5844 public static extern long ChangeValue_ModifyValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5845
5846 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ChangeValue_MakeOneNeighbor___")]
5847 public static extern bool ChangeValue_MakeOneNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
5848
5849 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ChangeValue_MakeOneNeighborSwigExplicitChangeValue___")]
5850 public static extern bool ChangeValue_MakeOneNeighborSwigExplicitChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5851
5852 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ChangeValue_director_connect___")]
5854
5855 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_AlternativeNodeIterator___")]
5856 public static extern global::System.IntPtr new_AlternativeNodeIterator(bool jarg1);
5857
5858 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_AlternativeNodeIterator___")]
5859 public static extern void delete_AlternativeNodeIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
5860
5861 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AlternativeNodeIterator_Next___")]
5862 public static extern bool AlternativeNodeIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1);
5863
5864 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AlternativeNodeIterator_GetValue___")]
5865 public static extern int AlternativeNodeIterator_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5866
5867 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_NodeNeighborIterator___")]
5868 public static extern global::System.IntPtr new_NodeNeighborIterator();
5869
5870 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_NodeNeighborIterator___")]
5871 public static extern void delete_NodeNeighborIterator(global::System.Runtime.InteropServices.HandleRef jarg1);
5872
5873 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_NodeNeighborIterator_Next___")]
5874 public static extern bool NodeNeighborIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1);
5875
5876 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_NodeNeighborIterator_GetValue___")]
5877 public static extern int NodeNeighborIterator_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5878
5879 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_NodeNeighborIterator_IsIncomingNeighbor___")]
5880 public static extern bool NodeNeighborIterator_IsIncomingNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
5881
5882 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_NodeNeighborIterator_IsOutgoingNeighbor___")]
5883 public static extern bool NodeNeighborIterator_IsOutgoingNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
5884
5885 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Relax___")]
5886 public static extern void LocalSearchFilter_Relax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5887
5888 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_RelaxSwigExplicitLocalSearchFilter___")]
5889 public static extern void LocalSearchFilter_RelaxSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5890
5891 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Commit___")]
5892 public static extern void LocalSearchFilter_Commit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5893
5894 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_CommitSwigExplicitLocalSearchFilter___")]
5895 public static extern void LocalSearchFilter_CommitSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5896
5897 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Accept___")]
5898 public static extern bool LocalSearchFilter_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5);
5899
5900 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_IsIncremental___")]
5901 public static extern bool LocalSearchFilter_IsIncremental(global::System.Runtime.InteropServices.HandleRef jarg1);
5902
5903 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_IsIncrementalSwigExplicitLocalSearchFilter___")]
5904 public static extern bool LocalSearchFilter_IsIncrementalSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5905
5906 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Synchronize___")]
5907 public static extern void LocalSearchFilter_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5908
5909 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Revert___")]
5910 public static extern void LocalSearchFilter_Revert(global::System.Runtime.InteropServices.HandleRef jarg1);
5911
5912 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_RevertSwigExplicitLocalSearchFilter___")]
5913 public static extern void LocalSearchFilter_RevertSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5914
5915 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_Reset___")]
5916 public static extern void LocalSearchFilter_Reset(global::System.Runtime.InteropServices.HandleRef jarg1);
5917
5918 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_ResetSwigExplicitLocalSearchFilter___")]
5919 public static extern void LocalSearchFilter_ResetSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5920
5921 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_GetSynchronizedObjectiveValue___")]
5922 public static extern long LocalSearchFilter_GetSynchronizedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5923
5924 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_GetSynchronizedObjectiveValueSwigExplicitLocalSearchFilter___")]
5925 public static extern long LocalSearchFilter_GetSynchronizedObjectiveValueSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5926
5927 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_GetAcceptedObjectiveValue___")]
5928 public static extern long LocalSearchFilter_GetAcceptedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5929
5930 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_GetAcceptedObjectiveValueSwigExplicitLocalSearchFilter___")]
5931 public static extern long LocalSearchFilter_GetAcceptedObjectiveValueSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5932
5933 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilter___")]
5934 public static extern global::System.IntPtr new_LocalSearchFilter();
5935
5936 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchFilter___")]
5937 public static extern void delete_LocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
5938
5939 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_director_connect___")]
5941
5942 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_kAccept_get___")]
5943 public static extern int LocalSearchFilterManager_kAccept_get();
5944
5945 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_kRelax_get___")]
5946 public static extern int LocalSearchFilterManager_kRelax_get();
5947
5948 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_filter_set___")]
5949 public static extern void LocalSearchFilterManager_FilterEvent_filter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5950
5951 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_filter_get___")]
5952 public static extern global::System.IntPtr LocalSearchFilterManager_FilterEvent_filter_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5953
5954 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_event_type_set___")]
5955 public static extern void LocalSearchFilterManager_FilterEvent_event_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5956
5957 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_event_type_get___")]
5958 public static extern int LocalSearchFilterManager_FilterEvent_event_type_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5959
5960 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_priority_set___")]
5961 public static extern void LocalSearchFilterManager_FilterEvent_priority_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5962
5963 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_FilterEvent_priority_get___")]
5964 public static extern int LocalSearchFilterManager_FilterEvent_priority_get(global::System.Runtime.InteropServices.HandleRef jarg1);
5965
5966 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterManager_FilterEvent___")]
5967 public static extern global::System.IntPtr new_LocalSearchFilterManager_FilterEvent();
5968
5969 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchFilterManager_FilterEvent___")]
5970 public static extern void delete_LocalSearchFilterManager_FilterEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
5971
5972 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_ToString___")]
5973 public static extern string LocalSearchFilterManager_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
5974
5975 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_ToStringSwigExplicitLocalSearchFilterManager___")]
5976 public static extern string LocalSearchFilterManager_ToStringSwigExplicitLocalSearchFilterManager(global::System.Runtime.InteropServices.HandleRef jarg1);
5977
5978 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterManager__SWIG_0___")]
5979 public static extern global::System.IntPtr new_LocalSearchFilterManager__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5980
5981 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_LocalSearchFilterManager__SWIG_1___")]
5982 public static extern global::System.IntPtr new_LocalSearchFilterManager__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5983
5984 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_Revert___")]
5985 public static extern void LocalSearchFilterManager_Revert(global::System.Runtime.InteropServices.HandleRef jarg1);
5986
5987 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_Accept___")]
5988 public static extern bool LocalSearchFilterManager_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5, long jarg6);
5989
5990 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_Synchronize___")]
5991 public static extern void LocalSearchFilterManager_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5992
5993 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_GetSynchronizedObjectiveValue___")]
5994 public static extern long LocalSearchFilterManager_GetSynchronizedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5995
5996 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_GetAcceptedObjectiveValue___")]
5997 public static extern long LocalSearchFilterManager_GetAcceptedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5998
5999 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchFilterManager___")]
6000 public static extern void delete_LocalSearchFilterManager(global::System.Runtime.InteropServices.HandleRef jarg1);
6001
6002 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_director_connect___")]
6003 public static extern void LocalSearchFilterManager_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, LocalSearchFilterManager.SwigDelegateLocalSearchFilterManager_0 delegate0);
6004
6005 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_IntVarLocalSearchFilter___")]
6006 public static extern global::System.IntPtr new_IntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
6007
6008 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_IntVarLocalSearchFilter___")]
6009 public static extern void delete_IntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
6010
6011 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_Synchronize___")]
6012 public static extern void IntVarLocalSearchFilter_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6013
6014 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_AddVars___")]
6015 public static extern void IntVarLocalSearchFilter_AddVars(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6016
6017 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_Size___")]
6018 public static extern int IntVarLocalSearchFilter_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6019
6020 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_Var___")]
6021 public static extern global::System.IntPtr IntVarLocalSearchFilter_Var(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6022
6023 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_Value___")]
6024 public static extern long IntVarLocalSearchFilter_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6025
6026 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_OnSynchronize___")]
6027 public static extern void IntVarLocalSearchFilter_OnSynchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6028
6029 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_OnSynchronizeSwigExplicitIntVarLocalSearchFilter___")]
6030 public static extern void IntVarLocalSearchFilter_OnSynchronizeSwigExplicitIntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6031
6032 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_Index___")]
6033 public static extern int IntVarLocalSearchFilter_Index(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6034
6035 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_director_connect___")]
6037
6038 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_PropagationMonitor___")]
6039 public static extern void delete_PropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
6040
6041 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_ToString___")]
6042 public static extern string PropagationMonitor_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6043
6044 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_BeginConstraintInitialPropagation___")]
6045 public static extern void PropagationMonitor_BeginConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6046
6047 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_EndConstraintInitialPropagation___")]
6048 public static extern void PropagationMonitor_EndConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6049
6050 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_BeginNestedConstraintInitialPropagation___")]
6051 public static extern void PropagationMonitor_BeginNestedConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6052
6053 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_EndNestedConstraintInitialPropagation___")]
6054 public static extern void PropagationMonitor_EndNestedConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6055
6056 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RegisterDemon___")]
6057 public static extern void PropagationMonitor_RegisterDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6058
6059 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_BeginDemonRun___")]
6060 public static extern void PropagationMonitor_BeginDemonRun(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6061
6062 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_EndDemonRun___")]
6063 public static extern void PropagationMonitor_EndDemonRun(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6064
6065 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_StartProcessingIntegerVariable___")]
6066 public static extern void PropagationMonitor_StartProcessingIntegerVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6067
6068 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_EndProcessingIntegerVariable___")]
6069 public static extern void PropagationMonitor_EndProcessingIntegerVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6070
6071 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_PushContext___")]
6072 public static extern void PropagationMonitor_PushContext(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6073
6074 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_PopContext___")]
6075 public static extern void PropagationMonitor_PopContext(global::System.Runtime.InteropServices.HandleRef jarg1);
6076
6077 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetMin__SWIG_0___")]
6078 public static extern void PropagationMonitor_SetMin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6079
6080 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetMax__SWIG_0___")]
6081 public static extern void PropagationMonitor_SetMax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6082
6083 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetRange__SWIG_0___")]
6084 public static extern void PropagationMonitor_SetRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6085
6086 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetMin__SWIG_1___")]
6087 public static extern void PropagationMonitor_SetMin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6088
6089 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetMax__SWIG_1___")]
6090 public static extern void PropagationMonitor_SetMax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6091
6092 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetRange__SWIG_1___")]
6093 public static extern void PropagationMonitor_SetRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6094
6095 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RemoveValue___")]
6096 public static extern void PropagationMonitor_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6097
6098 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetValue___")]
6099 public static extern void PropagationMonitor_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6100
6101 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RemoveInterval___")]
6102 public static extern void PropagationMonitor_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6103
6104 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetValues___")]
6105 public static extern void PropagationMonitor_SetValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
6106
6107 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RemoveValues___")]
6108 public static extern void PropagationMonitor_RemoveValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3);
6109
6110 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetStartMin___")]
6111 public static extern void PropagationMonitor_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6112
6113 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetStartMax___")]
6114 public static extern void PropagationMonitor_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6115
6116 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetStartRange___")]
6117 public static extern void PropagationMonitor_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6118
6119 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetEndMin___")]
6120 public static extern void PropagationMonitor_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6121
6122 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetEndMax___")]
6123 public static extern void PropagationMonitor_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6124
6125 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetEndRange___")]
6126 public static extern void PropagationMonitor_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6127
6128 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetDurationMin___")]
6129 public static extern void PropagationMonitor_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6130
6131 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetDurationMax___")]
6132 public static extern void PropagationMonitor_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6133
6134 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetDurationRange___")]
6135 public static extern void PropagationMonitor_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6136
6137 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SetPerformed___")]
6138 public static extern void PropagationMonitor_SetPerformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6139
6140 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RankFirst___")]
6141 public static extern void PropagationMonitor_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6142
6143 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RankNotFirst___")]
6144 public static extern void PropagationMonitor_RankNotFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6145
6146 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RankLast___")]
6147 public static extern void PropagationMonitor_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6148
6149 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RankNotLast___")]
6150 public static extern void PropagationMonitor_RankNotLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6151
6152 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_RankSequence___")]
6153 public static extern void PropagationMonitor_RankSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5);
6154
6155 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_Install___")]
6156 public static extern void PropagationMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
6157
6158 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_LocalSearchMonitor___")]
6159 public static extern void delete_LocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1);
6160
6161 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_ToString___")]
6162 public static extern string LocalSearchMonitor_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6163
6164 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_BeginOperatorStart___")]
6165 public static extern void LocalSearchMonitor_BeginOperatorStart(global::System.Runtime.InteropServices.HandleRef jarg1);
6166
6167 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_EndOperatorStart___")]
6168 public static extern void LocalSearchMonitor_EndOperatorStart(global::System.Runtime.InteropServices.HandleRef jarg1);
6169
6170 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_BeginMakeNextNeighbor___")]
6171 public static extern void LocalSearchMonitor_BeginMakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6172
6173 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_EndMakeNextNeighbor___")]
6174 public static extern void LocalSearchMonitor_EndMakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
6175
6176 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_BeginFilterNeighbor___")]
6177 public static extern void LocalSearchMonitor_BeginFilterNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6178
6179 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_EndFilterNeighbor___")]
6180 public static extern void LocalSearchMonitor_EndFilterNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6181
6182 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_BeginAcceptNeighbor___")]
6183 public static extern void LocalSearchMonitor_BeginAcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6184
6185 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_EndAcceptNeighbor___")]
6186 public static extern void LocalSearchMonitor_EndAcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6187
6188 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_BeginFiltering___")]
6189 public static extern void LocalSearchMonitor_BeginFiltering(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6190
6191 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_EndFiltering___")]
6192 public static extern void LocalSearchMonitor_EndFiltering(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6193
6194 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_IsActive___")]
6195 public static extern bool LocalSearchMonitor_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1);
6196
6197 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_Install___")]
6198 public static extern void LocalSearchMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1);
6199
6200 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_kUnboundBooleanVarValue_get___")]
6201 public static extern int BooleanVar_kUnboundBooleanVarValue_get();
6202
6203 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BooleanVar___")]
6204 public static extern void delete_BooleanVar(global::System.Runtime.InteropServices.HandleRef jarg1);
6205
6206 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Min___")]
6207 public static extern long BooleanVar_Min(global::System.Runtime.InteropServices.HandleRef jarg1);
6208
6209 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_SetMin___")]
6210 public static extern void BooleanVar_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6211
6212 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Max___")]
6213 public static extern long BooleanVar_Max(global::System.Runtime.InteropServices.HandleRef jarg1);
6214
6215 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_SetMax___")]
6216 public static extern void BooleanVar_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6217
6218 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_SetRange___")]
6219 public static extern void BooleanVar_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
6220
6221 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Bound___")]
6222 public static extern bool BooleanVar_Bound(global::System.Runtime.InteropServices.HandleRef jarg1);
6223
6224 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Value___")]
6225 public static extern long BooleanVar_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
6226
6227 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_RemoveValue___")]
6228 public static extern void BooleanVar_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6229
6230 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_RemoveInterval___")]
6231 public static extern void BooleanVar_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
6232
6233 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_WhenBound___")]
6234 public static extern void BooleanVar_WhenBound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6235
6236 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_WhenRange___")]
6237 public static extern void BooleanVar_WhenRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6238
6239 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_WhenDomain___")]
6240 public static extern void BooleanVar_WhenDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6241
6242 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Size___")]
6243 public static extern ulong BooleanVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6244
6245 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_Contains___")]
6246 public static extern bool BooleanVar_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6247
6248 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_ToString___")]
6249 public static extern string BooleanVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6250
6251 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_VarType___")]
6252 public static extern int BooleanVar_VarType(global::System.Runtime.InteropServices.HandleRef jarg1);
6253
6254 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_IsEqual___")]
6255 public static extern global::System.IntPtr BooleanVar_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6256
6257 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_IsDifferent___")]
6258 public static extern global::System.IntPtr BooleanVar_IsDifferent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6259
6260 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_IsGreaterOrEqual___")]
6261 public static extern global::System.IntPtr BooleanVar_IsGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6262
6263 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_IsLessOrEqual___")]
6264 public static extern global::System.IntPtr BooleanVar_IsLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6265
6266 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_RestoreValue___")]
6267 public static extern void BooleanVar_RestoreValue(global::System.Runtime.InteropServices.HandleRef jarg1);
6268
6269 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_BaseName___")]
6270 public static extern string BooleanVar_BaseName(global::System.Runtime.InteropServices.HandleRef jarg1);
6271
6272 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_RawValue___")]
6273 public static extern int BooleanVar_RawValue(global::System.Runtime.InteropServices.HandleRef jarg1);
6274
6275 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SymmetryBreaker___")]
6276 public static extern global::System.IntPtr new_SymmetryBreaker();
6277
6278 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SymmetryBreaker___")]
6279 public static extern void delete_SymmetryBreaker(global::System.Runtime.InteropServices.HandleRef jarg1);
6280
6281 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreaker_AddIntegerVariableEqualValueClause___")]
6282 public static extern void SymmetryBreaker_AddIntegerVariableEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6283
6284 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreaker_AddIntegerVariableGreaterOrEqualValueClause___")]
6285 public static extern void SymmetryBreaker_AddIntegerVariableGreaterOrEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6286
6287 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreaker_AddIntegerVariableLessOrEqualValueClause___")]
6288 public static extern void SymmetryBreaker_AddIntegerVariableLessOrEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6289
6290 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreaker_director_connect___")]
6292
6293 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SearchLog___")]
6294 public static extern void delete_SearchLog(global::System.Runtime.InteropServices.HandleRef jarg1);
6295
6296 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_EnterSearch___")]
6297 public static extern void SearchLog_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
6298
6299 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_ExitSearch___")]
6300 public static extern void SearchLog_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
6301
6302 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_AtSolution___")]
6303 public static extern bool SearchLog_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
6304
6305 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_BeginFail___")]
6306 public static extern void SearchLog_BeginFail(global::System.Runtime.InteropServices.HandleRef jarg1);
6307
6308 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_NoMoreSolutions___")]
6309 public static extern void SearchLog_NoMoreSolutions(global::System.Runtime.InteropServices.HandleRef jarg1);
6310
6311 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_AcceptUncheckedNeighbor___")]
6312 public static extern void SearchLog_AcceptUncheckedNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1);
6313
6314 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_ApplyDecision___")]
6315 public static extern void SearchLog_ApplyDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6316
6317 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_RefuteDecision___")]
6318 public static extern void SearchLog_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6319
6320 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_OutputDecision___")]
6321 public static extern void SearchLog_OutputDecision(global::System.Runtime.InteropServices.HandleRef jarg1);
6322
6323 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_Maintain___")]
6324 public static extern void SearchLog_Maintain(global::System.Runtime.InteropServices.HandleRef jarg1);
6325
6326 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_BeginInitialPropagation___")]
6327 public static extern void SearchLog_BeginInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1);
6328
6329 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_EndInitialPropagation___")]
6330 public static extern void SearchLog_EndInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1);
6331
6332 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_ToString___")]
6333 public static extern string SearchLog_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6334
6335 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VOID_FALSE_CONSTRAINT_get___")]
6336 public static extern int ModelCache_VOID_FALSE_CONSTRAINT_get();
6337
6338 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VOID_TRUE_CONSTRAINT_get___")]
6339 public static extern int ModelCache_VOID_TRUE_CONSTRAINT_get();
6340
6341 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VOID_CONSTRAINT_MAX_get___")]
6342 public static extern int ModelCache_VOID_CONSTRAINT_MAX_get();
6343
6344 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_EQUALITY_get___")]
6345 public static extern int ModelCache_VAR_CONSTANT_EQUALITY_get();
6346
6347 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_GREATER_OR_EQUAL_get___")]
6348 public static extern int ModelCache_VAR_CONSTANT_GREATER_OR_EQUAL_get();
6349
6350 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_LESS_OR_EQUAL_get___")]
6351 public static extern int ModelCache_VAR_CONSTANT_LESS_OR_EQUAL_get();
6352
6353 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_NON_EQUALITY_get___")]
6354 public static extern int ModelCache_VAR_CONSTANT_NON_EQUALITY_get();
6355
6356 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_CONSTRAINT_MAX_get___")]
6357 public static extern int ModelCache_VAR_CONSTANT_CONSTRAINT_MAX_get();
6358
6359 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_CONSTANT_BETWEEN_get___")]
6360 public static extern int ModelCache_VAR_CONSTANT_CONSTANT_BETWEEN_get();
6361
6362 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_CONSTANT_CONSTRAINT_MAX_get___")]
6363 public static extern int ModelCache_VAR_CONSTANT_CONSTANT_CONSTRAINT_MAX_get();
6364
6365 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_EQUALITY_get___")]
6366 public static extern int ModelCache_EXPR_EXPR_EQUALITY_get();
6367
6368 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_GREATER_get___")]
6369 public static extern int ModelCache_EXPR_EXPR_GREATER_get();
6370
6371 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_GREATER_OR_EQUAL_get___")]
6372 public static extern int ModelCache_EXPR_EXPR_GREATER_OR_EQUAL_get();
6373
6374 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_LESS_get___")]
6375 public static extern int ModelCache_EXPR_EXPR_LESS_get();
6376
6377 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_LESS_OR_EQUAL_get___")]
6378 public static extern int ModelCache_EXPR_EXPR_LESS_OR_EQUAL_get();
6379
6380 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_NON_EQUALITY_get___")]
6381 public static extern int ModelCache_EXPR_EXPR_NON_EQUALITY_get();
6382
6383 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_CONSTRAINT_MAX_get___")]
6384 public static extern int ModelCache_EXPR_EXPR_CONSTRAINT_MAX_get();
6385
6386 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_OPPOSITE_get___")]
6387 public static extern int ModelCache_EXPR_OPPOSITE_get();
6388
6389 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_ABS_get___")]
6390 public static extern int ModelCache_EXPR_ABS_get();
6391
6392 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_SQUARE_get___")]
6393 public static extern int ModelCache_EXPR_SQUARE_get();
6394
6395 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPRESSION_MAX_get___")]
6396 public static extern int ModelCache_EXPR_EXPRESSION_MAX_get();
6397
6398 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_DIFFERENCE_get___")]
6399 public static extern int ModelCache_EXPR_EXPR_DIFFERENCE_get();
6400
6401 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_PROD_get___")]
6402 public static extern int ModelCache_EXPR_EXPR_PROD_get();
6403
6404 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_DIV_get___")]
6405 public static extern int ModelCache_EXPR_EXPR_DIV_get();
6406
6407 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_MAX_get___")]
6408 public static extern int ModelCache_EXPR_EXPR_MAX_get();
6409
6410 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_MIN_get___")]
6411 public static extern int ModelCache_EXPR_EXPR_MIN_get();
6412
6413 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_SUM_get___")]
6414 public static extern int ModelCache_EXPR_EXPR_SUM_get();
6415
6416 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_IS_LESS_get___")]
6417 public static extern int ModelCache_EXPR_EXPR_IS_LESS_get();
6418
6419 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_IS_LESS_OR_EQUAL_get___")]
6420 public static extern int ModelCache_EXPR_EXPR_IS_LESS_OR_EQUAL_get();
6421
6422 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_IS_EQUAL_get___")]
6423 public static extern int ModelCache_EXPR_EXPR_IS_EQUAL_get();
6424
6425 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_IS_NOT_EQUAL_get___")]
6426 public static extern int ModelCache_EXPR_EXPR_IS_NOT_EQUAL_get();
6427
6428 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_EXPRESSION_MAX_get___")]
6429 public static extern int ModelCache_EXPR_EXPR_EXPRESSION_MAX_get();
6430
6431 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_CONSTANT_CONDITIONAL_get___")]
6432 public static extern int ModelCache_EXPR_EXPR_CONSTANT_CONDITIONAL_get();
6433
6434 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_EXPR_CONSTANT_EXPRESSION_MAX_get___")]
6435 public static extern int ModelCache_EXPR_EXPR_CONSTANT_EXPRESSION_MAX_get();
6436
6437 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_DIFFERENCE_get___")]
6438 public static extern int ModelCache_EXPR_CONSTANT_DIFFERENCE_get();
6439
6440 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_DIVIDE_get___")]
6441 public static extern int ModelCache_EXPR_CONSTANT_DIVIDE_get();
6442
6443 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_PROD_get___")]
6444 public static extern int ModelCache_EXPR_CONSTANT_PROD_get();
6445
6446 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_MAX_get___")]
6447 public static extern int ModelCache_EXPR_CONSTANT_MAX_get();
6448
6449 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_MIN_get___")]
6450 public static extern int ModelCache_EXPR_CONSTANT_MIN_get();
6451
6452 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_SUM_get___")]
6453 public static extern int ModelCache_EXPR_CONSTANT_SUM_get();
6454
6455 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_IS_EQUAL_get___")]
6456 public static extern int ModelCache_EXPR_CONSTANT_IS_EQUAL_get();
6457
6458 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_IS_NOT_EQUAL_get___")]
6459 public static extern int ModelCache_EXPR_CONSTANT_IS_NOT_EQUAL_get();
6460
6461 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_IS_GREATER_OR_EQUAL_get___")]
6462 public static extern int ModelCache_EXPR_CONSTANT_IS_GREATER_OR_EQUAL_get();
6463
6464 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_IS_LESS_OR_EQUAL_get___")]
6465 public static extern int ModelCache_EXPR_CONSTANT_IS_LESS_OR_EQUAL_get();
6466
6467 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_EXPR_CONSTANT_EXPRESSION_MAX_get___")]
6468 public static extern int ModelCache_EXPR_CONSTANT_EXPRESSION_MAX_get();
6469
6470 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_CONSTANT_SEMI_CONTINUOUS_get___")]
6472
6473 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_CONSTANT_EXPRESSION_MAX_get___")]
6474 public static extern int ModelCache_VAR_CONSTANT_CONSTANT_EXPRESSION_MAX_get();
6475
6476 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_ARRAY_ELEMENT_get___")]
6477 public static extern int ModelCache_VAR_CONSTANT_ARRAY_ELEMENT_get();
6478
6479 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_CONSTANT_ARRAY_EXPRESSION_MAX_get___")]
6480 public static extern int ModelCache_VAR_CONSTANT_ARRAY_EXPRESSION_MAX_get();
6481
6482 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_CONSTANT_ARRAY_SCAL_PROD_get___")]
6483 public static extern int ModelCache_VAR_ARRAY_CONSTANT_ARRAY_SCAL_PROD_get();
6484
6485 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_CONSTANT_ARRAY_EXPRESSION_MAX_get___")]
6487
6488 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_MAX_get___")]
6489 public static extern int ModelCache_VAR_ARRAY_MAX_get();
6490
6491 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_MIN_get___")]
6492 public static extern int ModelCache_VAR_ARRAY_MIN_get();
6493
6494 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_SUM_get___")]
6495 public static extern int ModelCache_VAR_ARRAY_SUM_get();
6496
6497 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_EXPRESSION_MAX_get___")]
6498 public static extern int ModelCache_VAR_ARRAY_EXPRESSION_MAX_get();
6499
6500 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_CONSTANT_INDEX_get___")]
6501 public static extern int ModelCache_VAR_ARRAY_CONSTANT_INDEX_get();
6502
6503 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_VAR_ARRAY_CONSTANT_EXPRESSION_MAX_get___")]
6504 public static extern int ModelCache_VAR_ARRAY_CONSTANT_EXPRESSION_MAX_get();
6505
6506 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_ModelCache___")]
6507 public static extern void delete_ModelCache(global::System.Runtime.InteropServices.HandleRef jarg1);
6508
6509 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_Clear___")]
6510 public static extern void ModelCache_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
6511
6512 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVoidConstraint___")]
6513 public static extern global::System.IntPtr ModelCache_FindVoidConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6514
6515 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVoidConstraint___")]
6516 public static extern void ModelCache_InsertVoidConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6517
6518 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarConstantConstraint___")]
6519 public static extern global::System.IntPtr ModelCache_FindVarConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4);
6520
6521 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarConstantConstraint___")]
6522 public static extern void ModelCache_InsertVarConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5);
6523
6524 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarConstantConstantConstraint___")]
6525 public static extern global::System.IntPtr ModelCache_FindVarConstantConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, int jarg5);
6526
6527 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarConstantConstantConstraint___")]
6528 public static extern void ModelCache_InsertVarConstantConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5, int jarg6);
6529
6530 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindExprExprConstraint___")]
6531 public static extern global::System.IntPtr ModelCache_FindExprExprConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
6532
6533 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertExprExprConstraint___")]
6534 public static extern void ModelCache_InsertExprExprConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5);
6535
6536 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindExprExpression___")]
6537 public static extern global::System.IntPtr ModelCache_FindExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6538
6539 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertExprExpression___")]
6540 public static extern void ModelCache_InsertExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
6541
6542 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindExprConstantExpression___")]
6543 public static extern global::System.IntPtr ModelCache_FindExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4);
6544
6545 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertExprConstantExpression___")]
6546 public static extern void ModelCache_InsertExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5);
6547
6548 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindExprExprExpression___")]
6549 public static extern global::System.IntPtr ModelCache_FindExprExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
6550
6551 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertExprExprExpression___")]
6552 public static extern void ModelCache_InsertExprExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5);
6553
6554 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindExprExprConstantExpression___")]
6555 public static extern global::System.IntPtr ModelCache_FindExprExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5);
6556
6557 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertExprExprConstantExpression___")]
6558 public static extern void ModelCache_InsertExprExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5, int jarg6);
6559
6560 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarConstantConstantExpression___")]
6561 public static extern global::System.IntPtr ModelCache_FindVarConstantConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, int jarg5);
6562
6563 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarConstantConstantExpression___")]
6564 public static extern void ModelCache_InsertVarConstantConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5, int jarg6);
6565
6566 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarConstantArrayExpression___")]
6567 public static extern global::System.IntPtr ModelCache_FindVarConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int jarg4);
6568
6569 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarConstantArrayExpression___")]
6570 public static extern void ModelCache_InsertVarConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int jarg5);
6571
6572 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarArrayExpression___")]
6573 public static extern global::System.IntPtr ModelCache_FindVarArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6574
6575 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarArrayExpression___")]
6576 public static extern void ModelCache_InsertVarArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4);
6577
6578 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarArrayConstantArrayExpression___")]
6579 public static extern global::System.IntPtr ModelCache_FindVarArrayConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int jarg4);
6580
6581 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarArrayConstantArrayExpression___")]
6582 public static extern void ModelCache_InsertVarArrayConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int jarg5);
6583
6584 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_FindVarArrayConstantExpression___")]
6585 public static extern global::System.IntPtr ModelCache_FindVarArrayConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4);
6586
6587 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_InsertVarArrayConstantExpression___")]
6588 public static extern void ModelCache_InsertVarArrayConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5);
6589
6590 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelCache_solver___")]
6591 public static extern global::System.IntPtr ModelCache_solver(global::System.Runtime.InteropServices.HandleRef jarg1);
6592
6593 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RevPartialSequence__SWIG_0___")]
6594 public static extern global::System.IntPtr new_RevPartialSequence__SWIG_0( int length1, int[] jarg1);
6595
6596 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RevPartialSequence__SWIG_1___")]
6597 public static extern global::System.IntPtr new_RevPartialSequence__SWIG_1(int jarg1);
6598
6599 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RevPartialSequence___")]
6600 public static extern void delete_RevPartialSequence(global::System.Runtime.InteropServices.HandleRef jarg1);
6601
6602 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_NumFirstRanked___")]
6603 public static extern int RevPartialSequence_NumFirstRanked(global::System.Runtime.InteropServices.HandleRef jarg1);
6604
6605 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_NumLastRanked___")]
6606 public static extern int RevPartialSequence_NumLastRanked(global::System.Runtime.InteropServices.HandleRef jarg1);
6607
6608 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_Size___")]
6609 public static extern int RevPartialSequence_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6610
6611 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_RankFirst___")]
6612 public static extern void RevPartialSequence_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6613
6614 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_RankLast___")]
6615 public static extern void RevPartialSequence_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6616
6617 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_IsRanked___")]
6618 public static extern bool RevPartialSequence_IsRanked(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6619
6620 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevPartialSequence_ToString___")]
6621 public static extern string RevPartialSequence_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6622
6623 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AreAllBound___")]
6624 public static extern bool AreAllBound(global::System.Runtime.InteropServices.HandleRef jarg1);
6625
6626 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AreAllBooleans___")]
6627 public static extern bool AreAllBooleans(global::System.Runtime.InteropServices.HandleRef jarg1);
6628
6629 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AreAllBoundTo___")]
6630 public static extern bool AreAllBoundTo(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6631
6632 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_MaxVarArray___")]
6633 public static extern long MaxVarArray(global::System.Runtime.InteropServices.HandleRef jarg1);
6634
6635 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_MinVarArray___")]
6636 public static extern long MinVarArray(global::System.Runtime.InteropServices.HandleRef jarg1);
6637
6638 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PosIntDivUp___")]
6639 public static extern long PosIntDivUp(long jarg1, long jarg2);
6640
6641 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PosIntDivDown___")]
6642 public static extern long PosIntDivDown(long jarg1, long jarg2);
6643
6644 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ToInt64Vector___")]
6645 public static extern global::System.IntPtr ToInt64Vector( int length1, int[] jarg1);
6646
6647 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RevInteger___")]
6648 public static extern global::System.IntPtr new_RevInteger(long jarg1);
6649
6650 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevInteger_Value___")]
6651 public static extern long RevInteger_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
6652
6653 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevInteger_SetValue___")]
6654 public static extern void RevInteger_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6655
6656 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RevInteger___")]
6657 public static extern void delete_RevInteger(global::System.Runtime.InteropServices.HandleRef jarg1);
6658
6659 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RevBool___")]
6660 public static extern global::System.IntPtr new_RevBool(bool jarg1);
6661
6662 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevBool_Value___")]
6663 public static extern bool RevBool_Value(global::System.Runtime.InteropServices.HandleRef jarg1);
6664
6665 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RevBool_SetValue___")]
6666 public static extern void RevBool_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6667
6668 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RevBool___")]
6669 public static extern void delete_RevBool(global::System.Runtime.InteropServices.HandleRef jarg1);
6670
6671 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_AssignmentIntContainer___")]
6672 public static extern global::System.IntPtr new_AssignmentIntContainer();
6673
6674 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Add___")]
6675 public static extern global::System.IntPtr AssignmentIntContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6676
6677 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_FastAdd___")]
6678 public static extern global::System.IntPtr AssignmentIntContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6679
6680 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_AddAtPosition___")]
6681 public static extern global::System.IntPtr AssignmentIntContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6682
6683 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Clear___")]
6684 public static extern void AssignmentIntContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
6685
6686 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Resize___")]
6687 public static extern void AssignmentIntContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6688
6689 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Empty___")]
6690 public static extern bool AssignmentIntContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1);
6691
6692 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_CopyIntersection___")]
6693 public static extern void AssignmentIntContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6694
6695 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Copy___")]
6696 public static extern void AssignmentIntContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6697
6698 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Contains___")]
6699 public static extern bool AssignmentIntContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6700
6701 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Element__SWIG_0___")]
6702 public static extern global::System.IntPtr AssignmentIntContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6703
6704 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Element__SWIG_1___")]
6705 public static extern global::System.IntPtr AssignmentIntContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6706
6707 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Size___")]
6708 public static extern int AssignmentIntContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6709
6710 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Store___")]
6711 public static extern void AssignmentIntContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
6712
6713 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_Restore___")]
6714 public static extern void AssignmentIntContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
6715
6716 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntContainer_AreAllElementsBound___")]
6717 public static extern bool AssignmentIntContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1);
6718
6719 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_AssignmentIntContainer___")]
6720 public static extern void delete_AssignmentIntContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
6721
6722 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_AssignmentIntervalContainer___")]
6723 public static extern global::System.IntPtr new_AssignmentIntervalContainer();
6724
6725 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Add___")]
6726 public static extern global::System.IntPtr AssignmentIntervalContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6727
6728 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_FastAdd___")]
6729 public static extern global::System.IntPtr AssignmentIntervalContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6730
6731 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_AddAtPosition___")]
6732 public static extern global::System.IntPtr AssignmentIntervalContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6733
6734 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Clear___")]
6735 public static extern void AssignmentIntervalContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
6736
6737 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Resize___")]
6738 public static extern void AssignmentIntervalContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6739
6740 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Empty___")]
6741 public static extern bool AssignmentIntervalContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1);
6742
6743 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_CopyIntersection___")]
6744 public static extern void AssignmentIntervalContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6745
6746 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Copy___")]
6747 public static extern void AssignmentIntervalContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6748
6749 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Contains___")]
6750 public static extern bool AssignmentIntervalContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6751
6752 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Element__SWIG_0___")]
6753 public static extern global::System.IntPtr AssignmentIntervalContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6754
6755 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Element__SWIG_1___")]
6756 public static extern global::System.IntPtr AssignmentIntervalContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6757
6758 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Size___")]
6759 public static extern int AssignmentIntervalContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6760
6761 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Store___")]
6762 public static extern void AssignmentIntervalContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
6763
6764 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_Restore___")]
6765 public static extern void AssignmentIntervalContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
6766
6767 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentIntervalContainer_AreAllElementsBound___")]
6768 public static extern bool AssignmentIntervalContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1);
6769
6770 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_AssignmentIntervalContainer___")]
6771 public static extern void delete_AssignmentIntervalContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
6772
6773 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_AssignmentSequenceContainer___")]
6774 public static extern global::System.IntPtr new_AssignmentSequenceContainer();
6775
6776 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Add___")]
6777 public static extern global::System.IntPtr AssignmentSequenceContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6778
6779 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_FastAdd___")]
6780 public static extern global::System.IntPtr AssignmentSequenceContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6781
6782 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_AddAtPosition___")]
6783 public static extern global::System.IntPtr AssignmentSequenceContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6784
6785 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Clear___")]
6786 public static extern void AssignmentSequenceContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
6787
6788 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Resize___")]
6789 public static extern void AssignmentSequenceContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
6790
6791 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Empty___")]
6792 public static extern bool AssignmentSequenceContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1);
6793
6794 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_CopyIntersection___")]
6795 public static extern void AssignmentSequenceContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6796
6797 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Copy___")]
6798 public static extern void AssignmentSequenceContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6799
6800 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Contains___")]
6801 public static extern bool AssignmentSequenceContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6802
6803 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Element__SWIG_0___")]
6804 public static extern global::System.IntPtr AssignmentSequenceContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6805
6806 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Element__SWIG_1___")]
6807 public static extern global::System.IntPtr AssignmentSequenceContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6808
6809 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Size___")]
6810 public static extern int AssignmentSequenceContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
6811
6812 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Store___")]
6813 public static extern void AssignmentSequenceContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1);
6814
6815 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_Restore___")]
6816 public static extern void AssignmentSequenceContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1);
6817
6818 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_AssignmentSequenceContainer_AreAllElementsBound___")]
6819 public static extern bool AssignmentSequenceContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1);
6820
6821 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_AssignmentSequenceContainer___")]
6822 public static extern void delete_AssignmentSequenceContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
6823
6824 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PickupDeliveryPair_pickup_alternatives_set___")]
6825 public static extern void PickupDeliveryPair_pickup_alternatives_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6826
6827 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PickupDeliveryPair_pickup_alternatives_get___")]
6828 public static extern global::System.IntPtr PickupDeliveryPair_pickup_alternatives_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6829
6830 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PickupDeliveryPair_delivery_alternatives_set___")]
6831 public static extern void PickupDeliveryPair_delivery_alternatives_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6832
6833 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PickupDeliveryPair_delivery_alternatives_get___")]
6834 public static extern global::System.IntPtr PickupDeliveryPair_delivery_alternatives_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6835
6836 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_PickupDeliveryPair___")]
6837 public static extern global::System.IntPtr new_PickupDeliveryPair();
6838
6839 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_PickupDeliveryPair___")]
6840 public static extern void delete_PickupDeliveryPair(global::System.Runtime.InteropServices.HandleRef jarg1);
6841
6842 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingIndexManager__SWIG_0___")]
6843 public static extern global::System.IntPtr new_RoutingIndexManager__SWIG_0(int jarg1, int jarg2, int jarg3);
6844
6845 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingIndexManager__SWIG_1___")]
6846 public static extern global::System.IntPtr new_RoutingIndexManager__SWIG_1(int jarg1, int jarg2, int length3, int[] jarg3, int length4, int[] jarg4);
6847
6848 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_GetNumberOfNodes___")]
6849 public static extern int RoutingIndexManager_GetNumberOfNodes(global::System.Runtime.InteropServices.HandleRef jarg1);
6850
6851 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_GetNumberOfVehicles___")]
6852 public static extern int RoutingIndexManager_GetNumberOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
6853
6854 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_GetNumberOfIndices___")]
6855 public static extern int RoutingIndexManager_GetNumberOfIndices(global::System.Runtime.InteropServices.HandleRef jarg1);
6856
6857 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_GetStartIndex___")]
6858 public static extern long RoutingIndexManager_GetStartIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6859
6860 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_GetEndIndex___")]
6861 public static extern long RoutingIndexManager_GetEndIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6862
6863 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_NodeToIndex___")]
6864 public static extern long RoutingIndexManager_NodeToIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6865
6866 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_NodesToIndices___")]
6867 public static extern global::System.IntPtr RoutingIndexManager_NodesToIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2);
6868
6869 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingIndexManager_IndexToNode___")]
6870 public static extern int RoutingIndexManager_IndexToNode(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6871
6872 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingIndexManager___")]
6873 public static extern void delete_RoutingIndexManager(global::System.Runtime.InteropServices.HandleRef jarg1);
6874
6875 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultRoutingModelParameters___")]
6876 public static extern System.IntPtr DefaultRoutingModelParameters();
6877
6878 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultRoutingSearchParameters___")]
6879 public static extern System.IntPtr DefaultRoutingSearchParameters();
6880
6881 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DefaultSecondaryRoutingSearchParameters___")]
6882 public static extern System.IntPtr DefaultSecondaryRoutingSearchParameters();
6883
6884 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_FindErrorInRoutingSearchParameters___")]
6885 public static extern string FindErrorInRoutingSearchParameters(int search_parameters_size, byte[] jarg1);
6886
6887 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_FindErrorsInRoutingSearchParameters___")]
6888 public static extern global::System.IntPtr FindErrorsInRoutingSearchParameters(int search_parameters_size, byte[] jarg1);
6889
6890 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_PathsMetadata___")]
6891 public static extern global::System.IntPtr new_PathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1);
6892
6893 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_IsStart___")]
6894 public static extern bool PathsMetadata_IsStart(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6895
6896 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_IsEnd___")]
6897 public static extern bool PathsMetadata_IsEnd(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6898
6899 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_GetPath___")]
6900 public static extern int PathsMetadata_GetPath(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6901
6902 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_NumPaths___")]
6903 public static extern int PathsMetadata_NumPaths(global::System.Runtime.InteropServices.HandleRef jarg1);
6904
6905 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_Paths___")]
6906 public static extern global::System.IntPtr PathsMetadata_Paths(global::System.Runtime.InteropServices.HandleRef jarg1);
6907
6908 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_Starts___")]
6909 public static extern global::System.IntPtr PathsMetadata_Starts(global::System.Runtime.InteropServices.HandleRef jarg1);
6910
6911 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_Start___")]
6912 public static extern long PathsMetadata_Start(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6913
6914 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_End___")]
6915 public static extern long PathsMetadata_End(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6916
6917 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PathsMetadata_Ends___")]
6918 public static extern global::System.IntPtr PathsMetadata_Ends(global::System.Runtime.InteropServices.HandleRef jarg1);
6919
6920 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_PathsMetadata___")]
6921 public static extern void delete_PathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1);
6922
6923 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PICKUP_AND_DELIVERY_NO_ORDER_get___")]
6924 public static extern int RoutingModel_PICKUP_AND_DELIVERY_NO_ORDER_get();
6925
6926 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PICKUP_AND_DELIVERY_LIFO_get___")]
6927 public static extern int RoutingModel_PICKUP_AND_DELIVERY_LIFO_get();
6928
6929 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PICKUP_AND_DELIVERY_FIFO_get___")]
6930 public static extern int RoutingModel_PICKUP_AND_DELIVERY_FIFO_get();
6931
6932 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_set___")]
6933 public static extern void RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6934
6935 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_get___")]
6936 public static extern int RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6937
6938 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_set___")]
6939 public static extern void RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6940
6941 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_get___")]
6942 public static extern long RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6943
6944 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_VehicleTypeContainer_VehicleClassEntry___")]
6945 public static extern global::System.IntPtr new_RoutingModel_VehicleTypeContainer_VehicleClassEntry();
6946
6947 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_VehicleTypeContainer_VehicleClassEntry___")]
6948 public static extern void delete_RoutingModel_VehicleTypeContainer_VehicleClassEntry(global::System.Runtime.InteropServices.HandleRef jarg1);
6949
6950 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_NumTypes___")]
6951 public static extern int RoutingModel_VehicleTypeContainer_NumTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
6952
6953 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_Type___")]
6954 public static extern int RoutingModel_VehicleTypeContainer_Type(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6955
6956 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_type_index_of_vehicle_set___")]
6957 public static extern void RoutingModel_VehicleTypeContainer_type_index_of_vehicle_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6958
6959 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_type_index_of_vehicle_get___")]
6960 public static extern global::System.IntPtr RoutingModel_VehicleTypeContainer_type_index_of_vehicle_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6961
6962 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_set___")]
6963 public static extern void RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6964
6965 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_get___")]
6966 public static extern global::System.IntPtr RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6967
6968 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_set___")]
6969 public static extern void RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6970
6971 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_get___")]
6972 public static extern global::System.IntPtr RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_get(global::System.Runtime.InteropServices.HandleRef jarg1);
6973
6974 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_VehicleTypeContainer___")]
6975 public static extern global::System.IntPtr new_RoutingModel_VehicleTypeContainer();
6976
6977 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_VehicleTypeContainer___")]
6978 public static extern void delete_RoutingModel_VehicleTypeContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
6979
6980 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_ResourceGroup_Attributes__SWIG_0___")]
6981 public static extern global::System.IntPtr new_RoutingModel_ResourceGroup_Attributes__SWIG_0();
6982
6983 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_ResourceGroup_Attributes__SWIG_1___")]
6984 public static extern global::System.IntPtr new_RoutingModel_ResourceGroup_Attributes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6985
6986 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_Attributes_StartDomain___")]
6987 public static extern global::System.IntPtr RoutingModel_ResourceGroup_Attributes_StartDomain(global::System.Runtime.InteropServices.HandleRef jarg1);
6988
6989 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_Attributes_EndDomain___")]
6990 public static extern global::System.IntPtr RoutingModel_ResourceGroup_Attributes_EndDomain(global::System.Runtime.InteropServices.HandleRef jarg1);
6991
6992 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_ResourceGroup_Attributes___")]
6993 public static extern void delete_RoutingModel_ResourceGroup_Attributes(global::System.Runtime.InteropServices.HandleRef jarg1);
6994
6995 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_Resource_GetDimensionAttributes___")]
6996 public static extern global::System.IntPtr RoutingModel_ResourceGroup_Resource_GetDimensionAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6997
6998 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_ResourceGroup_Resource___")]
6999 public static extern void delete_RoutingModel_ResourceGroup_Resource(global::System.Runtime.InteropServices.HandleRef jarg1);
7000
7001 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_AddResource___")]
7002 public static extern int RoutingModel_ResourceGroup_AddResource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7003
7004 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_NotifyVehicleRequiresAResource___")]
7005 public static extern void RoutingModel_ResourceGroup_NotifyVehicleRequiresAResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7006
7007 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetVehiclesRequiringAResource___")]
7008 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetVehiclesRequiringAResource(global::System.Runtime.InteropServices.HandleRef jarg1);
7009
7010 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_VehicleRequiresAResource___")]
7011 public static extern bool RoutingModel_ResourceGroup_VehicleRequiresAResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7012
7013 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_SetAllowedResourcesForVehicle___")]
7014 public static extern void RoutingModel_ResourceGroup_SetAllowedResourcesForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int length3, int[] jarg3);
7015
7016 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_ClearAllowedResourcesForVehicle___")]
7017 public static extern void RoutingModel_ResourceGroup_ClearAllowedResourcesForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7018
7019 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResourcesMarkedAllowedForVehicle___")]
7020 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetResourcesMarkedAllowedForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7021
7022 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_IsResourceAllowedForVehicle___")]
7023 public static extern bool RoutingModel_ResourceGroup_IsResourceAllowedForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7024
7025 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResources___")]
7026 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetResources(global::System.Runtime.InteropServices.HandleRef jarg1);
7027
7028 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResource___")]
7029 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7030
7031 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetAffectedDimensionIndices___")]
7032 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetAffectedDimensionIndices(global::System.Runtime.InteropServices.HandleRef jarg1);
7033
7034 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResourceClassesCount___")]
7035 public static extern int RoutingModel_ResourceGroup_GetResourceClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1);
7036
7037 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResourceIndicesInClass___")]
7038 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetResourceIndicesInClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7039
7040 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResourceIndicesPerClass___")]
7041 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetResourceIndicesPerClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7042
7043 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetResourceClassIndex___")]
7044 public static extern int RoutingModel_ResourceGroup_GetResourceClassIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7045
7046 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_GetDimensionAttributesForClass___")]
7047 public static extern global::System.IntPtr RoutingModel_ResourceGroup_GetDimensionAttributesForClass(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
7048
7049 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_Size___")]
7050 public static extern int RoutingModel_ResourceGroup_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
7051
7052 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceGroup_Index___")]
7053 public static extern int RoutingModel_ResourceGroup_Index(global::System.Runtime.InteropServices.HandleRef jarg1);
7054
7055 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_ResourceGroup___")]
7056 public static extern void delete_RoutingModel_ResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
7057
7058 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VariableValuePair_var_index_set___")]
7059 public static extern void RoutingModel_VariableValuePair_var_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7060
7061 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VariableValuePair_var_index_get___")]
7062 public static extern int RoutingModel_VariableValuePair_var_index_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7063
7064 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VariableValuePair_value_set___")]
7065 public static extern void RoutingModel_VariableValuePair_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7066
7067 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VariableValuePair_value_get___")]
7068 public static extern long RoutingModel_VariableValuePair_value_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7069
7070 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_VariableValuePair___")]
7071 public static extern global::System.IntPtr new_RoutingModel_VariableValuePair();
7072
7073 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_VariableValuePair___")]
7074 public static extern void delete_RoutingModel_VariableValuePair(global::System.Runtime.InteropServices.HandleRef jarg1);
7075
7076 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_SecondaryOptimizer___")]
7077 public static extern global::System.IntPtr new_RoutingModel_SecondaryOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2, long jarg3);
7078
7079 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SecondaryOptimizer_Solve___")]
7080 public static extern bool RoutingModel_SecondaryOptimizer_Solve(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7081
7082 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_SecondaryOptimizer___")]
7083 public static extern void delete_RoutingModel_SecondaryOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1);
7084
7085 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kNoPenalty_get___")]
7086 public static extern long RoutingModel_kNoPenalty_get();
7087
7088 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kNoDisjunction_get___")]
7089 public static extern int RoutingModel_kNoDisjunction_get();
7090
7091 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kNoDimension_get___")]
7092 public static extern int RoutingModel_kNoDimension_get();
7093
7094 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel__SWIG_0___")]
7095 public static extern global::System.IntPtr new_RoutingModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7096
7097 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel__SWIG_1___")]
7098 public static extern global::System.IntPtr new_RoutingModel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int parameters_size, byte[] jarg2);
7099
7100 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel___")]
7101 public static extern void delete_RoutingModel(global::System.Runtime.InteropServices.HandleRef jarg1);
7102
7103 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kTransitEvaluatorSignUnknown_get___")]
7104 public static extern int RoutingModel_kTransitEvaluatorSignUnknown_get();
7105
7106 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kTransitEvaluatorSignPositiveOrZero_get___")]
7108
7109 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_kTransitEvaluatorSignNegativeOrZero_get___")]
7111
7112 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterUnaryTransitVector___")]
7113 public static extern int RoutingModel_RegisterUnaryTransitVector(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
7114
7115 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterUnaryTransitCallback__SWIG_0___")]
7116 public static extern int RoutingModel_RegisterUnaryTransitCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, int jarg3);
7117
7118 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterUnaryTransitCallback__SWIG_1___")]
7119 public static extern int RoutingModel_RegisterUnaryTransitCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2);
7120
7121 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterTransitMatrix___")]
7122 public static extern int RoutingModel_RegisterTransitMatrix(global::System.Runtime.InteropServices.HandleRef jarg1,
7123 int len2_1, int[] len2_2, long[]
7124 jarg2);
7125
7126 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterTransitCallback__SWIG_0___")]
7127 public static extern int RoutingModel_RegisterTransitCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, int jarg3);
7128
7129 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterTransitCallback__SWIG_1___")]
7130 public static extern int RoutingModel_RegisterTransitCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2);
7131
7132 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RegisterCumulDependentTransitCallback___")]
7133 public static extern int RoutingModel_RegisterCumulDependentTransitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7134
7135 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CumulDependentTransitCallback___")]
7136 public static extern global::System.IntPtr RoutingModel_CumulDependentTransitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7137
7138 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDimension___")]
7139 public static extern bool RoutingModel_AddDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4, bool jarg5, string jarg6);
7140
7141 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDimensionWithVehicleTransits___")]
7142 public static extern bool RoutingModel_AddDimensionWithVehicleTransits(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3, long jarg4, bool jarg5, string jarg6);
7143
7144 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDimensionWithVehicleCapacity___")]
7145 public static extern bool RoutingModel_AddDimensionWithVehicleCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, int length4, long[] jarg4, bool jarg5, string jarg6);
7146
7147 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDimensionWithVehicleTransitAndCapacity___")]
7148 public static extern bool RoutingModel_AddDimensionWithVehicleTransitAndCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3, int length4, long[] jarg4, bool jarg5, string jarg6);
7149
7150 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDimensionWithCumulDependentVehicleTransitAndCapacity___")]
7151 public static extern bool RoutingModel_AddDimensionWithCumulDependentVehicleTransitAndCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, long jarg4, int length5, long[] jarg5, bool jarg6, string jarg7);
7152
7153 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddConstantDimensionWithSlack___")]
7154 public static extern global::System.IntPtr RoutingModel_AddConstantDimensionWithSlack(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, bool jarg5, string jarg6);
7155
7156 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddConstantDimension___")]
7157 public static extern global::System.IntPtr RoutingModel_AddConstantDimension(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4, string jarg5);
7158
7159 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddVectorDimension___")]
7160 public static extern global::System.IntPtr RoutingModel_AddVectorDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, bool jarg4, string jarg5);
7161
7162 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddMatrixDimension___")]
7163 public static extern global::System.IntPtr RoutingModel_AddMatrixDimension(global::System.Runtime.InteropServices.HandleRef jarg1,
7164 int len2_1, int[] len2_2, long[]
7165 jarg2, long jarg3, bool jarg4, string jarg5);
7166
7167 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetUnaryDimensions___")]
7168 public static extern global::System.IntPtr RoutingModel_GetUnaryDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
7169
7170 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDimensionsWithGlobalCumulOptimizers___")]
7171 public static extern global::System.IntPtr RoutingModel_GetDimensionsWithGlobalCumulOptimizers(global::System.Runtime.InteropServices.HandleRef jarg1);
7172
7173 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDimensionsWithLocalCumulOptimizers___")]
7174 public static extern global::System.IntPtr RoutingModel_GetDimensionsWithLocalCumulOptimizers(global::System.Runtime.InteropServices.HandleRef jarg1);
7175
7176 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasGlobalCumulOptimizer___")]
7177 public static extern bool RoutingModel_HasGlobalCumulOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7178
7179 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasLocalCumulOptimizer___")]
7180 public static extern bool RoutingModel_HasLocalCumulOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7181
7182 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableGlobalCumulLPOptimizer___")]
7183 public static extern global::System.IntPtr RoutingModel_GetMutableGlobalCumulLPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7184
7185 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableGlobalCumulMPOptimizer___")]
7186 public static extern global::System.IntPtr RoutingModel_GetMutableGlobalCumulMPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7187
7188 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableLocalCumulLPOptimizer___")]
7189 public static extern global::System.IntPtr RoutingModel_GetMutableLocalCumulLPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7190
7191 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasDimension___")]
7192 public static extern bool RoutingModel_HasDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7193
7194 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDimensionOrDie___")]
7195 public static extern global::System.IntPtr RoutingModel_GetDimensionOrDie(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7196
7197 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableDimension___")]
7198 public static extern global::System.IntPtr RoutingModel_GetMutableDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7199
7200 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetPrimaryConstrainedDimension___")]
7201 public static extern void RoutingModel_SetPrimaryConstrainedDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7202
7203 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetPrimaryConstrainedDimension___")]
7204 public static extern string RoutingModel_GetPrimaryConstrainedDimension(global::System.Runtime.InteropServices.HandleRef jarg1);
7205
7206 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddResourceGroup___")]
7207 public static extern global::System.IntPtr RoutingModel_AddResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1);
7208
7209 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetResourceGroups___")]
7210 public static extern global::System.IntPtr RoutingModel_GetResourceGroups(global::System.Runtime.InteropServices.HandleRef jarg1);
7211
7212 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetResourceGroup___")]
7213 public static extern global::System.IntPtr RoutingModel_GetResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7214
7215 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDimensionResourceGroupIndices___")]
7216 public static extern global::System.IntPtr RoutingModel_GetDimensionResourceGroupIndices(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7217
7218 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDimensionResourceGroupIndex___")]
7219 public static extern int RoutingModel_GetDimensionResourceGroupIndex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7220
7221 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PENALIZE_ONCE_get___")]
7222 public static extern int RoutingModel_PENALIZE_ONCE_get();
7223
7224 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PENALIZE_PER_INACTIVE_get___")]
7225 public static extern int RoutingModel_PENALIZE_PER_INACTIVE_get();
7226
7227 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDisjunction__SWIG_0___")]
7228 public static extern int RoutingModel_AddDisjunction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, long jarg4, int jarg5);
7229
7230 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDisjunction__SWIG_1___")]
7231 public static extern int RoutingModel_AddDisjunction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, long jarg4);
7232
7233 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDisjunction__SWIG_2___")]
7234 public static extern int RoutingModel_AddDisjunction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3);
7235
7236 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddDisjunction__SWIG_3___")]
7237 public static extern int RoutingModel_AddDisjunction__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
7238
7239 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDisjunctionIndices___")]
7240 public static extern global::System.IntPtr RoutingModel_GetDisjunctionIndices(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7241
7242 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDisjunctionNodeIndices___")]
7243 public static extern global::System.IntPtr RoutingModel_GetDisjunctionNodeIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7244
7245 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDisjunctionPenalty___")]
7246 public static extern long RoutingModel_GetDisjunctionPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7247
7248 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDisjunctionMaxCardinality___")]
7249 public static extern long RoutingModel_GetDisjunctionMaxCardinality(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7250
7251 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDisjunctionPenaltyCostBehavior___")]
7252 public static extern int RoutingModel_GetDisjunctionPenaltyCostBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7253
7254 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNumberOfDisjunctions___")]
7255 public static extern int RoutingModel_GetNumberOfDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1);
7256
7257 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasMandatoryDisjunctions___")]
7258 public static extern bool RoutingModel_HasMandatoryDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1);
7259
7260 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasMaxCardinalityConstrainedDisjunctions___")]
7261 public static extern bool RoutingModel_HasMaxCardinalityConstrainedDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1);
7262
7263 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IgnoreDisjunctionsAlreadyForcedToZero___")]
7264 public static extern void RoutingModel_IgnoreDisjunctionsAlreadyForcedToZero(global::System.Runtime.InteropServices.HandleRef jarg1);
7265
7266 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddSoftSameVehicleConstraint___")]
7267 public static extern void RoutingModel_AddSoftSameVehicleConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3);
7268
7269 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetAllowedVehiclesForIndex___")]
7270 public static extern void RoutingModel_SetAllowedVehiclesForIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3);
7271
7272 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsVehicleAllowedForIndex___")]
7273 public static extern bool RoutingModel_IsVehicleAllowedForIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
7274
7275 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddPickupAndDelivery___")]
7276 public static extern void RoutingModel_AddPickupAndDelivery(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7277
7278 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddPickupAndDeliverySets___")]
7279 public static extern void RoutingModel_AddPickupAndDeliverySets(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7280
7281 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PickupDeliveryPosition_pd_pair_index_set___")]
7282 public static extern void RoutingModel_PickupDeliveryPosition_pd_pair_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7283
7284 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PickupDeliveryPosition_pd_pair_index_get___")]
7285 public static extern int RoutingModel_PickupDeliveryPosition_pd_pair_index_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7286
7287 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PickupDeliveryPosition_alternative_index_set___")]
7288 public static extern void RoutingModel_PickupDeliveryPosition_alternative_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7289
7290 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PickupDeliveryPosition_alternative_index_get___")]
7291 public static extern int RoutingModel_PickupDeliveryPosition_alternative_index_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7292
7293 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_PickupDeliveryPosition___")]
7294 public static extern global::System.IntPtr new_RoutingModel_PickupDeliveryPosition();
7295
7296 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_PickupDeliveryPosition___")]
7297 public static extern void delete_RoutingModel_PickupDeliveryPosition(global::System.Runtime.InteropServices.HandleRef jarg1);
7298
7299 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetPickupPosition___")]
7300 public static extern global::System.IntPtr RoutingModel_GetPickupPosition(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7301
7302 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDeliveryPosition___")]
7303 public static extern global::System.IntPtr RoutingModel_GetDeliveryPosition(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7304
7305 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsPickup___")]
7306 public static extern bool RoutingModel_IsPickup(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7307
7308 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsDelivery___")]
7309 public static extern bool RoutingModel_IsDelivery(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7310
7311 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetPickupAndDeliveryPolicyOfAllVehicles___")]
7312 public static extern void RoutingModel_SetPickupAndDeliveryPolicyOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7313
7314 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetPickupAndDeliveryPolicyOfVehicle___")]
7315 public static extern void RoutingModel_SetPickupAndDeliveryPolicyOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7316
7317 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetPickupAndDeliveryPolicyOfVehicle___")]
7318 public static extern int RoutingModel_GetPickupAndDeliveryPolicyOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7319
7320 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNumOfSingletonNodes___")]
7321 public static extern int RoutingModel_GetNumOfSingletonNodes(global::System.Runtime.InteropServices.HandleRef jarg1);
7322
7323 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetFirstMatchingPickupDeliverySibling___")]
7324 public static extern global::System.IntPtr RoutingModel_GetFirstMatchingPickupDeliverySibling(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7325
7326 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_TYPE_ADDED_TO_VEHICLE_get___")]
7327 public static extern int RoutingModel_TYPE_ADDED_TO_VEHICLE_get();
7328
7329 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ADDED_TYPE_REMOVED_FROM_VEHICLE_get___")]
7330 public static extern int RoutingModel_ADDED_TYPE_REMOVED_FROM_VEHICLE_get();
7331
7332 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_TYPE_ON_VEHICLE_UP_TO_VISIT_get___")]
7333 public static extern int RoutingModel_TYPE_ON_VEHICLE_UP_TO_VISIT_get();
7334
7335 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_TYPE_SIMULTANEOUSLY_ADDED_AND_REMOVED_get___")]
7337
7338 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetVisitType___")]
7339 public static extern void RoutingModel_SetVisitType(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4);
7340
7341 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVisitType___")]
7342 public static extern int RoutingModel_GetVisitType(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7343
7344 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSingleNodesOfType___")]
7345 public static extern global::System.IntPtr RoutingModel_GetSingleNodesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7346
7347 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetPairIndicesOfType___")]
7348 public static extern global::System.IntPtr RoutingModel_GetPairIndicesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7349
7350 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVisitTypePolicy___")]
7351 public static extern int RoutingModel_GetVisitTypePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7352
7353 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNumberOfVisitTypes___")]
7354 public static extern int RoutingModel_GetNumberOfVisitTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
7355
7356 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddHardTypeIncompatibility___")]
7357 public static extern void RoutingModel_AddHardTypeIncompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7358
7359 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddTemporalTypeIncompatibility___")]
7360 public static extern void RoutingModel_AddTemporalTypeIncompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7361
7362 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetTemporalTypeIncompatibilitiesOfType___")]
7363 public static extern global::System.IntPtr RoutingModel_GetTemporalTypeIncompatibilitiesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7364
7365 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasHardTypeIncompatibilities___")]
7366 public static extern bool RoutingModel_HasHardTypeIncompatibilities(global::System.Runtime.InteropServices.HandleRef jarg1);
7367
7368 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasTemporalTypeIncompatibilities___")]
7369 public static extern bool RoutingModel_HasTemporalTypeIncompatibilities(global::System.Runtime.InteropServices.HandleRef jarg1);
7370
7371 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddRequiredTypeAlternativesWhenAddingType___")]
7372 public static extern void RoutingModel_AddRequiredTypeAlternativesWhenAddingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7373
7374 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddRequiredTypeAlternativesWhenRemovingType___")]
7375 public static extern void RoutingModel_AddRequiredTypeAlternativesWhenRemovingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7376
7377 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameVehicleRequiredTypeAlternativesOfType___")]
7378 public static extern global::System.IntPtr RoutingModel_GetSameVehicleRequiredTypeAlternativesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7379
7380 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetRequiredTypeAlternativesWhenAddingType___")]
7381 public static extern global::System.IntPtr RoutingModel_GetRequiredTypeAlternativesWhenAddingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7382
7383 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetRequiredTypeAlternativesWhenRemovingType___")]
7384 public static extern global::System.IntPtr RoutingModel_GetRequiredTypeAlternativesWhenRemovingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7385
7386 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasSameVehicleTypeRequirements___")]
7387 public static extern bool RoutingModel_HasSameVehicleTypeRequirements(global::System.Runtime.InteropServices.HandleRef jarg1);
7388
7389 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasTemporalTypeRequirements___")]
7390 public static extern bool RoutingModel_HasTemporalTypeRequirements(global::System.Runtime.InteropServices.HandleRef jarg1);
7391
7392 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_UnperformedPenalty___")]
7393 public static extern long RoutingModel_UnperformedPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7394
7395 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_UnperformedPenaltyOrValue___")]
7396 public static extern long RoutingModel_UnperformedPenaltyOrValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7397
7398 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetDepot___")]
7399 public static extern long RoutingModel_GetDepot(global::System.Runtime.InteropServices.HandleRef jarg1);
7400
7401 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetMaximumNumberOfActiveVehicles___")]
7402 public static extern void RoutingModel_SetMaximumNumberOfActiveVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7403
7404 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMaximumNumberOfActiveVehicles___")]
7405 public static extern int RoutingModel_GetMaximumNumberOfActiveVehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
7406
7407 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetArcCostEvaluatorOfAllVehicles___")]
7408 public static extern void RoutingModel_SetArcCostEvaluatorOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7409
7410 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetArcCostEvaluatorOfVehicle___")]
7411 public static extern void RoutingModel_SetArcCostEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7412
7413 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetFixedCostOfAllVehicles___")]
7414 public static extern void RoutingModel_SetFixedCostOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7415
7416 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetFixedCostOfVehicle___")]
7417 public static extern void RoutingModel_SetFixedCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
7418
7419 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetFixedCostOfVehicle___")]
7420 public static extern long RoutingModel_GetFixedCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7421
7422 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetPathEnergyCostOfVehicle___")]
7423 public static extern void RoutingModel_SetPathEnergyCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4, int jarg5);
7424
7425 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetPathEnergyCostsOfVehicle___")]
7426 public static extern void RoutingModel_SetPathEnergyCostsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4, long jarg5, long jarg6, int jarg7);
7427
7428 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetAmortizedCostFactorsOfAllVehicles___")]
7429 public static extern void RoutingModel_SetAmortizedCostFactorsOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7430
7431 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetAmortizedCostFactorsOfVehicle___")]
7432 public static extern void RoutingModel_SetAmortizedCostFactorsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, int jarg4);
7433
7434 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetAmortizedLinearCostFactorOfVehicles___")]
7435 public static extern global::System.IntPtr RoutingModel_GetAmortizedLinearCostFactorOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
7436
7437 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetAmortizedQuadraticCostFactorOfVehicles___")]
7438 public static extern global::System.IntPtr RoutingModel_GetAmortizedQuadraticCostFactorOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
7439
7440 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddRouteConstraint__SWIG_0___")]
7441 public static extern void RoutingModel_AddRouteConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7442
7443 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddRouteConstraint__SWIG_1___")]
7444 public static extern void RoutingModel_AddRouteConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7445
7446 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetRouteCost___")]
7447 public static extern global::System.IntPtr RoutingModel_GetRouteCost(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
7448
7449 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetVehicleUsedWhenEmpty___")]
7450 public static extern void RoutingModel_SetVehicleUsedWhenEmpty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, int jarg3);
7451
7452 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsVehicleUsedWhenEmpty___")]
7453 public static extern bool RoutingModel_IsVehicleUsedWhenEmpty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7454
7455 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetFirstSolutionEvaluator___")]
7456 public static extern void RoutingModel_SetFirstSolutionEvaluator(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2);
7457
7458 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetFirstSolutionHint___")]
7459 public static extern void RoutingModel_SetFirstSolutionHint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7460
7461 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetFirstSolutionHint___")]
7462 public static extern global::System.IntPtr RoutingModel_GetFirstSolutionHint(global::System.Runtime.InteropServices.HandleRef jarg1);
7463
7464 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddLocalSearchOperator___")]
7465 public static extern void RoutingModel_AddLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7466
7467 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddSearchMonitor___")]
7468 public static extern void RoutingModel_AddSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7469
7470 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddEnterSearchCallback___")]
7471 public static extern void RoutingModel_AddEnterSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
7472
7473 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddAtSolutionCallback__SWIG_0___")]
7474 public static extern void RoutingModel_AddAtSolutionCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2, bool jarg3);
7475
7476 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddAtSolutionCallback__SWIG_1___")]
7477 public static extern void RoutingModel_AddAtSolutionCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
7478
7479 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddRestoreDimensionValuesResetCallback___")]
7480 public static extern void RoutingModel_AddRestoreDimensionValuesResetCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2);
7481
7482 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddVariableMinimizedByFinalizer___")]
7483 public static extern void RoutingModel_AddVariableMinimizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7484
7485 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddVariableMaximizedByFinalizer___")]
7486 public static extern void RoutingModel_AddVariableMaximizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7487
7488 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddWeightedVariableMinimizedByFinalizer___")]
7489 public static extern void RoutingModel_AddWeightedVariableMinimizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
7490
7491 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddWeightedVariableMaximizedByFinalizer___")]
7492 public static extern void RoutingModel_AddWeightedVariableMaximizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
7493
7494 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddVariableTargetToFinalizer___")]
7495 public static extern void RoutingModel_AddVariableTargetToFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
7496
7497 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddWeightedVariableTargetToFinalizer___")]
7498 public static extern void RoutingModel_AddWeightedVariableTargetToFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
7499
7500 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CloseModel___")]
7501 public static extern void RoutingModel_CloseModel(global::System.Runtime.InteropServices.HandleRef jarg1);
7502
7503 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CloseModelWithParameters___")]
7504 public static extern void RoutingModel_CloseModelWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2);
7505
7506 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Solve__SWIG_0___")]
7507 public static extern global::System.IntPtr RoutingModel_Solve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7508
7509 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Solve__SWIG_1___")]
7510 public static extern global::System.IntPtr RoutingModel_Solve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7511
7512 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SolveWithParameters___")]
7513 public static extern global::System.IntPtr RoutingModel_SolveWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2);
7514
7515 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SolveFromAssignmentWithParameters___")]
7516 public static extern global::System.IntPtr RoutingModel_SolveFromAssignmentWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3);
7517
7518 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_0___")]
7519 public static extern global::System.IntPtr RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7520
7521 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_1___")]
7522 public static extern global::System.IntPtr RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, bool jarg4);
7523
7524 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SolveFromAssignmentsWithParameters__SWIG_0___")]
7525 public static extern global::System.IntPtr RoutingModel_SolveFromAssignmentsWithParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7526
7527 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SolveFromAssignmentsWithParameters__SWIG_1___")]
7528 public static extern global::System.IntPtr RoutingModel_SolveFromAssignmentsWithParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3);
7529
7530 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SolveWithIteratedLocalSearch___")]
7531 public static extern global::System.IntPtr RoutingModel_SolveWithIteratedLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2);
7532
7533 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_SetAssignmentFromOtherModelAssignment___")]
7534 public static extern void RoutingModel_SetAssignmentFromOtherModelAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7535
7536 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ComputeLowerBound___")]
7537 public static extern long RoutingModel_ComputeLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1);
7538
7539 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ObjectiveLowerBound___")]
7540 public static extern long RoutingModel_ObjectiveLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1);
7541
7542 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetStatus___")]
7543 public static extern int RoutingModel_GetStatus(global::System.Runtime.InteropServices.HandleRef jarg1);
7544
7545 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_EnableDeepSerialization___")]
7546 public static extern bool RoutingModel_EnableDeepSerialization(global::System.Runtime.InteropServices.HandleRef jarg1);
7547
7548 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ApplyLocks___")]
7549 public static extern global::System.IntPtr RoutingModel_ApplyLocks(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2);
7550
7551 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ApplyLocksToAllVehicles___")]
7552 public static extern bool RoutingModel_ApplyLocksToAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1,
7553 int len2_1, int[] len2_2, long[]
7554 jarg2, bool jarg3);
7555
7556 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_PreAssignment___")]
7557 public static extern global::System.IntPtr RoutingModel_PreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
7558
7559 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_MutablePreAssignment___")]
7560 public static extern global::System.IntPtr RoutingModel_MutablePreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
7561
7562 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_WriteAssignment___")]
7563 public static extern bool RoutingModel_WriteAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7564
7565 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ReadAssignment___")]
7566 public static extern global::System.IntPtr RoutingModel_ReadAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7567
7568 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RestoreAssignment___")]
7569 public static extern global::System.IntPtr RoutingModel_RestoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7570
7571 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ReadAssignmentFromRoutes___")]
7572 public static extern global::System.IntPtr RoutingModel_ReadAssignmentFromRoutes(global::System.Runtime.InteropServices.HandleRef jarg1,
7573 int len2_1, int[] len2_2, long[]
7574 jarg2, bool jarg3);
7575
7576 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_RoutesToAssignment___")]
7577 public static extern bool RoutingModel_RoutesToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1,
7578 int len2_1, int[] len2_2, long[]
7579 jarg2, bool jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5);
7580
7581 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AssignmentToRoutes___")]
7582 public static extern void RoutingModel_AssignmentToRoutes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2,
7583 int len3_1, int[] len3_2, long[]
7584 jarg3);
7585
7586 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CompactAssignment___")]
7587 public static extern global::System.IntPtr RoutingModel_CompactAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7588
7589 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CompactAndCheckAssignment___")]
7590 public static extern global::System.IntPtr RoutingModel_CompactAndCheckAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7591
7592 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddToAssignment___")]
7593 public static extern void RoutingModel_AddToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7594
7595 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddIntervalToAssignment___")]
7596 public static extern void RoutingModel_AddIntervalToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7597
7598 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_num_neighbors_set___")]
7599 public static extern void RoutingModel_NodeNeighborsParameters_num_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7600
7601 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_num_neighbors_get___")]
7602 public static extern int RoutingModel_NodeNeighborsParameters_num_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7603
7604 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_set___")]
7605 public static extern void RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7606
7607 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_get___")]
7608 public static extern bool RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7609
7610 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_set___")]
7611 public static extern void RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7612
7613 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_get___")]
7614 public static extern bool RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7615
7616 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_set___")]
7617 public static extern void RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7618
7619 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_get___")]
7620 public static extern bool RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7621
7622 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_NodeNeighborsParameters___")]
7623 public static extern global::System.IntPtr new_RoutingModel_NodeNeighborsParameters();
7624
7625 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_NodeNeighborsParameters___")]
7626 public static extern void delete_RoutingModel_NodeNeighborsParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
7627
7628 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModel_NodeNeighborsByCostClass___")]
7629 public static extern global::System.IntPtr new_RoutingModel_NodeNeighborsByCostClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7630
7631 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsByCostClass_ComputeNeighbors___")]
7632 public static extern void RoutingModel_NodeNeighborsByCostClass_ComputeNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7633
7634 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsByCostClass_GetIncomingNeighborsOfNodeForCostClass___")]
7635 public static extern global::System.IntPtr RoutingModel_NodeNeighborsByCostClass_GetIncomingNeighborsOfNodeForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7636
7637 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsByCostClass_GetOutgoingNeighborsOfNodeForCostClass___")]
7638 public static extern global::System.IntPtr RoutingModel_NodeNeighborsByCostClass_GetOutgoingNeighborsOfNodeForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7639
7640 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NodeNeighborsByCostClass_IsNeighborhoodArcForCostClass___")]
7641 public static extern bool RoutingModel_NodeNeighborsByCostClass_IsNeighborhoodArcForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4);
7642
7643 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModel_NodeNeighborsByCostClass___")]
7644 public static extern void delete_RoutingModel_NodeNeighborsByCostClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7645
7646 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_0___")]
7647 public static extern global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6, bool jarg7);
7648
7649 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_1___")]
7650 public static extern global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6);
7651
7652 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_2___")]
7653 public static extern global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5);
7654
7655 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_3___")]
7656 public static extern global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7657
7658 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_4___")]
7659 public static extern global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7660
7661 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AddLocalSearchFilter___")]
7662 public static extern void RoutingModel_AddLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7663
7664 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Start___")]
7665 public static extern long RoutingModel_Start(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7666
7667 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_End___")]
7668 public static extern long RoutingModel_End(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7669
7670 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsStart___")]
7671 public static extern bool RoutingModel_IsStart(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7672
7673 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsEnd___")]
7674 public static extern bool RoutingModel_IsEnd(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7675
7676 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleIndex___")]
7677 public static extern int RoutingModel_VehicleIndex(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7678
7679 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Next___")]
7680 public static extern long RoutingModel_Next(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
7681
7682 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsVehicleUsed___")]
7683 public static extern bool RoutingModel_IsVehicleUsed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
7684
7685 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Nexts___")]
7686 public static extern global::System.IntPtr RoutingModel_Nexts(global::System.Runtime.InteropServices.HandleRef jarg1);
7687
7688 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleVars___")]
7689 public static extern global::System.IntPtr RoutingModel_VehicleVars(global::System.Runtime.InteropServices.HandleRef jarg1);
7690
7691 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceVars___")]
7692 public static extern global::System.IntPtr RoutingModel_ResourceVars(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7693
7694 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_NextVar___")]
7695 public static extern global::System.IntPtr RoutingModel_NextVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7696
7697 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ActiveVar___")]
7698 public static extern global::System.IntPtr RoutingModel_ActiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7699
7700 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ActiveVehicleVar___")]
7701 public static extern global::System.IntPtr RoutingModel_ActiveVehicleVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7702
7703 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleRouteConsideredVar___")]
7704 public static extern global::System.IntPtr RoutingModel_VehicleRouteConsideredVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7705
7706 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_VehicleVar___")]
7707 public static extern global::System.IntPtr RoutingModel_VehicleVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7708
7709 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ResourceVar___")]
7710 public static extern global::System.IntPtr RoutingModel_ResourceVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7711
7712 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CostVar___")]
7713 public static extern global::System.IntPtr RoutingModel_CostVar(global::System.Runtime.InteropServices.HandleRef jarg1);
7714
7715 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetArcCostForVehicle___")]
7716 public static extern long RoutingModel_GetArcCostForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7717
7718 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CostsAreHomogeneousAcrossVehicles___")]
7719 public static extern bool RoutingModel_CostsAreHomogeneousAcrossVehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
7720
7721 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetHomogeneousCost___")]
7722 public static extern long RoutingModel_GetHomogeneousCost(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7723
7724 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetArcCostForFirstSolution___")]
7725 public static extern long RoutingModel_GetArcCostForFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7726
7727 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetArcCostForClass___")]
7728 public static extern long RoutingModel_GetArcCostForClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7729
7730 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetCostClassIndexOfVehicle___")]
7731 public static extern int RoutingModel_GetCostClassIndexOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7732
7733 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_HasVehicleWithCostClassIndex___")]
7734 public static extern bool RoutingModel_HasVehicleWithCostClassIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7735
7736 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetCostClassesCount___")]
7737 public static extern int RoutingModel_GetCostClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1);
7738
7739 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNonZeroCostClassesCount___")]
7740 public static extern int RoutingModel_GetNonZeroCostClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1);
7741
7742 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVehicleClassIndexOfVehicle___")]
7743 public static extern int RoutingModel_GetVehicleClassIndexOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7744
7745 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVehicleOfClass___")]
7746 public static extern int RoutingModel_GetVehicleOfClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7747
7748 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVehicleClassesCount___")]
7749 public static extern int RoutingModel_GetVehicleClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1);
7750
7751 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameVehicleIndicesOfIndex___")]
7752 public static extern global::System.IntPtr RoutingModel_GetSameVehicleIndicesOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7753
7754 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameActivityIndicesOfIndex___")]
7755 public static extern global::System.IntPtr RoutingModel_GetSameActivityIndicesOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7756
7757 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameActivityGroupOfIndex___")]
7758 public static extern int RoutingModel_GetSameActivityGroupOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7759
7760 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameActivityGroupsCount___")]
7761 public static extern int RoutingModel_GetSameActivityGroupsCount(global::System.Runtime.InteropServices.HandleRef jarg1);
7762
7763 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameActivityIndicesOfGroup___")]
7764 public static extern global::System.IntPtr RoutingModel_GetSameActivityIndicesOfGroup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7765
7766 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVehicleTypeContainer___")]
7767 public static extern global::System.IntPtr RoutingModel_GetVehicleTypeContainer(global::System.Runtime.InteropServices.HandleRef jarg1);
7768
7769 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_ArcIsMoreConstrainedThanArc___")]
7770 public static extern bool RoutingModel_ArcIsMoreConstrainedThanArc(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7771
7772 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_DebugOutputAssignment___")]
7773 public static extern string RoutingModel_DebugOutputAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
7774
7775 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CheckIfAssignmentIsFeasible___")]
7776 public static extern bool RoutingModel_CheckIfAssignmentIsFeasible(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7777
7778 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_solver___")]
7779 public static extern global::System.IntPtr RoutingModel_solver(global::System.Runtime.InteropServices.HandleRef jarg1);
7780
7781 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CheckLimit__SWIG_0___")]
7782 public static extern bool RoutingModel_CheckLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7783
7784 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CheckLimit__SWIG_1___")]
7785 public static extern bool RoutingModel_CheckLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7786
7787 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_UpdateTimeLimit___")]
7788 public static extern void RoutingModel_UpdateTimeLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7789
7790 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_TimeBuffer___")]
7791 public static extern global::System.IntPtr RoutingModel_TimeBuffer(global::System.Runtime.InteropServices.HandleRef jarg1);
7792
7793 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableCPSatInterrupt___")]
7794 public static extern global::System.IntPtr RoutingModel_GetMutableCPSatInterrupt(global::System.Runtime.InteropServices.HandleRef jarg1);
7795
7796 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetMutableCPInterrupt___")]
7797 public static extern global::System.IntPtr RoutingModel_GetMutableCPInterrupt(global::System.Runtime.InteropServices.HandleRef jarg1);
7798
7799 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_CancelSearch___")]
7800 public static extern void RoutingModel_CancelSearch(global::System.Runtime.InteropServices.HandleRef jarg1);
7801
7802 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Nodes___")]
7803 public static extern int RoutingModel_Nodes(global::System.Runtime.InteropServices.HandleRef jarg1);
7804
7805 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Vehicles___")]
7806 public static extern int RoutingModel_Vehicles(global::System.Runtime.InteropServices.HandleRef jarg1);
7807
7808 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_Size___")]
7809 public static extern long RoutingModel_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
7810
7811 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNumberOfDecisionsInFirstSolution___")]
7812 public static extern long RoutingModel_GetNumberOfDecisionsInFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2);
7813
7814 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetNumberOfRejectsInFirstSolution___")]
7815 public static extern long RoutingModel_GetNumberOfRejectsInFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2);
7816
7817 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_IsMatchingModel___")]
7818 public static extern bool RoutingModel_IsMatchingModel(global::System.Runtime.InteropServices.HandleRef jarg1);
7819
7820 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_AreRoutesInterdependent___")]
7821 public static extern bool RoutingModel_AreRoutesInterdependent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7822
7823 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_MakeGuidedSlackFinalizer___")]
7824 public static extern global::System.IntPtr RoutingModel_MakeGuidedSlackFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3);
7825
7826 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_MakeSelfDependentDimensionFinalizer___")]
7827 public static extern global::System.IntPtr RoutingModel_MakeSelfDependentDimensionFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7828
7829 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetPathsMetadata___")]
7830 public static extern global::System.IntPtr RoutingModel_GetPathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1);
7831
7832 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetVehiclesOfSameClass___")]
7833 public static extern global::System.IntPtr RoutingModel_GetVehiclesOfSameClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7834
7835 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModel_GetSameVehicleClassArcs___")]
7836 public static extern global::System.IntPtr RoutingModel_GetSameVehicleClassArcs(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7837
7838 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModelVisitor_kLightElement_get___")]
7839 public static extern string RoutingModelVisitor_kLightElement_get();
7840
7841 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModelVisitor_kLightElement2_get___")]
7842 public static extern string RoutingModelVisitor_kLightElement2_get();
7843
7844 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModelVisitor_kRemoveValues_get___")]
7845 public static extern string RoutingModelVisitor_kRemoveValues_get();
7846
7847 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_RoutingModelVisitor___")]
7848 public static extern global::System.IntPtr new_RoutingModelVisitor();
7849
7850 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingModelVisitor___")]
7851 public static extern void delete_RoutingModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1);
7852
7853 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_GlobalVehicleBreaksConstraint___")]
7854 public static extern global::System.IntPtr new_GlobalVehicleBreaksConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
7855
7856 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_GlobalVehicleBreaksConstraint_ToString___")]
7857 public static extern string GlobalVehicleBreaksConstraint_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
7858
7859 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_GlobalVehicleBreaksConstraint_Post___")]
7860 public static extern void GlobalVehicleBreaksConstraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1);
7861
7862 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_GlobalVehicleBreaksConstraint_InitialPropagateWrapper___")]
7863 public static extern void GlobalVehicleBreaksConstraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1);
7864
7865 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_GlobalVehicleBreaksConstraint___")]
7866 public static extern void delete_GlobalVehicleBreaksConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
7867
7868 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_TypeRegulationsChecker___")]
7869 public static extern void delete_TypeRegulationsChecker(global::System.Runtime.InteropServices.HandleRef jarg1);
7870
7871 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_TypeIncompatibilityChecker___")]
7872 public static extern global::System.IntPtr new_TypeIncompatibilityChecker(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7873
7874 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_TypeIncompatibilityChecker___")]
7875 public static extern void delete_TypeIncompatibilityChecker(global::System.Runtime.InteropServices.HandleRef jarg1);
7876
7877 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_TypeRequirementChecker___")]
7878 public static extern global::System.IntPtr new_TypeRequirementChecker(global::System.Runtime.InteropServices.HandleRef jarg1);
7879
7880 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_TypeRequirementChecker___")]
7881 public static extern void delete_TypeRequirementChecker(global::System.Runtime.InteropServices.HandleRef jarg1);
7882
7883 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_TypeRegulationsConstraint___")]
7884 public static extern global::System.IntPtr new_TypeRegulationsConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
7885
7886 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TypeRegulationsConstraint_Post___")]
7887 public static extern void TypeRegulationsConstraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1);
7888
7889 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TypeRegulationsConstraint_InitialPropagateWrapper___")]
7890 public static extern void TypeRegulationsConstraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1);
7891
7892 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_TypeRegulationsConstraint___")]
7893 public static extern void delete_TypeRegulationsConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
7894
7895 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BoundCost_bound_set___")]
7896 public static extern void BoundCost_bound_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7897
7898 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BoundCost_bound_get___")]
7899 public static extern long BoundCost_bound_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7900
7901 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BoundCost_cost_set___")]
7902 public static extern void BoundCost_cost_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7903
7904 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BoundCost_cost_get___")]
7905 public static extern long BoundCost_cost_get(global::System.Runtime.InteropServices.HandleRef jarg1);
7906
7907 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_BoundCost__SWIG_0___")]
7908 public static extern global::System.IntPtr new_BoundCost__SWIG_0();
7909
7910 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_BoundCost__SWIG_1___")]
7911 public static extern global::System.IntPtr new_BoundCost__SWIG_1(long jarg1, long jarg2);
7912
7913 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_BoundCost___")]
7914 public static extern void delete_BoundCost(global::System.Runtime.InteropServices.HandleRef jarg1);
7915
7916 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_new_SimpleBoundCosts___")]
7917 public static extern global::System.IntPtr new_SimpleBoundCosts(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7918
7919 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SimpleBoundCosts_GetBoundCost___")]
7920 public static extern global::System.IntPtr SimpleBoundCosts_GetBoundCost(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7921
7922 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SimpleBoundCosts_GetSize___")]
7923 public static extern int SimpleBoundCosts_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1);
7924
7925 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_SimpleBoundCosts___")]
7926 public static extern void delete_SimpleBoundCosts(global::System.Runtime.InteropServices.HandleRef jarg1);
7927
7928 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_delete_RoutingDimension___")]
7929 public static extern void delete_RoutingDimension(global::System.Runtime.InteropServices.HandleRef jarg1);
7930
7931 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_Model___")]
7932 public static extern global::System.IntPtr RoutingDimension_Model(global::System.Runtime.InteropServices.HandleRef jarg1);
7933
7934 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetTransitValue___")]
7935 public static extern long RoutingDimension_GetTransitValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7936
7937 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetTransitValueFromClass___")]
7938 public static extern long RoutingDimension_GetTransitValueFromClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7939
7940 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_CumulVar___")]
7941 public static extern global::System.IntPtr RoutingDimension_CumulVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7942
7943 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_TransitVar___")]
7944 public static extern global::System.IntPtr RoutingDimension_TransitVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7945
7946 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_FixedTransitVar___")]
7947 public static extern global::System.IntPtr RoutingDimension_FixedTransitVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7948
7949 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SlackVar___")]
7950 public static extern global::System.IntPtr RoutingDimension_SlackVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7951
7952 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetCumulVarRange___")]
7953 public static extern void RoutingDimension_SetCumulVarRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7954
7955 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarMin___")]
7956 public static extern long RoutingDimension_GetCumulVarMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7957
7958 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarMax___")]
7959 public static extern long RoutingDimension_GetCumulVarMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7960
7961 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_Cumuls___")]
7962 public static extern global::System.IntPtr RoutingDimension_Cumuls(global::System.Runtime.InteropServices.HandleRef jarg1);
7963
7964 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_FixedTransits___")]
7965 public static extern global::System.IntPtr RoutingDimension_FixedTransits(global::System.Runtime.InteropServices.HandleRef jarg1);
7966
7967 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_Transits___")]
7968 public static extern global::System.IntPtr RoutingDimension_Transits(global::System.Runtime.InteropServices.HandleRef jarg1);
7969
7970 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_Slacks___")]
7971 public static extern global::System.IntPtr RoutingDimension_Slacks(global::System.Runtime.InteropServices.HandleRef jarg1);
7972
7973 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSpanUpperBoundForVehicle___")]
7974 public static extern void RoutingDimension_SetSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
7975
7976 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSpanCostCoefficientForVehicle___")]
7977 public static extern void RoutingDimension_SetSpanCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
7978
7979 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSpanCostCoefficientForAllVehicles___")]
7980 public static extern void RoutingDimension_SetSpanCostCoefficientForAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7981
7982 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSlackCostCoefficientForVehicle___")]
7983 public static extern void RoutingDimension_SetSlackCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3);
7984
7985 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSlackCostCoefficientForAllVehicles___")]
7986 public static extern void RoutingDimension_SetSlackCostCoefficientForAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7987
7988 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetGlobalSpanCostCoefficient___")]
7989 public static extern void RoutingDimension_SetGlobalSpanCostCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7990
7991 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetCumulVarSoftUpperBound___")]
7992 public static extern void RoutingDimension_SetCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7993
7994 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasCumulVarSoftUpperBound___")]
7995 public static extern bool RoutingDimension_HasCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7996
7997 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarSoftUpperBound___")]
7998 public static extern long RoutingDimension_GetCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7999
8000 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarSoftUpperBoundCoefficient___")]
8001 public static extern long RoutingDimension_GetCumulVarSoftUpperBoundCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8002
8003 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetCumulVarSoftLowerBound___")]
8004 public static extern void RoutingDimension_SetCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
8005
8006 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasCumulVarSoftLowerBound___")]
8007 public static extern bool RoutingDimension_HasCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8008
8009 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarSoftLowerBound___")]
8010 public static extern long RoutingDimension_GetCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8011
8012 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetCumulVarSoftLowerBoundCoefficient___")]
8013 public static extern long RoutingDimension_GetCumulVarSoftLowerBoundCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8014
8015 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_0___")]
8016 public static extern void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5);
8017
8018 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_1___")]
8019 public static extern void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int length4, long[] jarg4);
8020
8021 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetBreakDistanceDurationOfVehicle___")]
8022 public static extern void RoutingDimension_SetBreakDistanceDurationOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, int jarg4);
8023
8024 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_InitializeBreaks___")]
8025 public static extern void RoutingDimension_InitializeBreaks(global::System.Runtime.InteropServices.HandleRef jarg1);
8026
8027 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasBreakConstraints___")]
8028 public static extern bool RoutingDimension_HasBreakConstraints(global::System.Runtime.InteropServices.HandleRef jarg1);
8029
8030 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_2___")]
8031 public static extern void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int length4, long[] jarg4, LongLongToLong jarg5);
8032
8033 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetBreakIntervalsOfVehicle___")]
8034 public static extern global::System.IntPtr RoutingDimension_GetBreakIntervalsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8035
8036 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetPreTravelEvaluatorOfVehicle___")]
8037 public static extern int RoutingDimension_GetPreTravelEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8038
8039 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetPostTravelEvaluatorOfVehicle___")]
8040 public static extern int RoutingDimension_GetPostTravelEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8041
8042 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_BaseDimension___")]
8043 public static extern global::System.IntPtr RoutingDimension_BaseDimension(global::System.Runtime.InteropServices.HandleRef jarg1);
8044
8045 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_ShortestTransitionSlack___")]
8046 public static extern long RoutingDimension_ShortestTransitionSlack(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8047
8048 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_Name___")]
8049 public static extern string RoutingDimension_Name(global::System.Runtime.InteropServices.HandleRef jarg1);
8050
8051 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetPickupToDeliveryLimitFunctionForPair___")]
8052 public static extern void RoutingDimension_SetPickupToDeliveryLimitFunctionForPair(global::System.Runtime.InteropServices.HandleRef jarg1, IntIntToLong jarg2, int jarg3);
8053
8054 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasPickupToDeliveryLimits___")]
8055 public static extern bool RoutingDimension_HasPickupToDeliveryLimits(global::System.Runtime.InteropServices.HandleRef jarg1);
8056
8057 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_AddNodePrecedence___")]
8058 public static extern void RoutingDimension_AddNodePrecedence(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
8059
8060 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetSpanUpperBoundForVehicle___")]
8061 public static extern long RoutingDimension_GetSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8062
8063 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetSpanCostCoefficientForVehicle___")]
8064 public static extern long RoutingDimension_GetSpanCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8065
8066 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetSlackCostCoefficientForVehicle___")]
8067 public static extern long RoutingDimension_GetSlackCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8068
8069 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GlobalSpanCostCoefficient___")]
8070 public static extern long RoutingDimension_GlobalSpanCostCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1);
8071
8072 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetGlobalOptimizerOffset___")]
8073 public static extern long RoutingDimension_GetGlobalOptimizerOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
8074
8075 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetLocalOptimizerOffsetForVehicle___")]
8076 public static extern long RoutingDimension_GetLocalOptimizerOffsetForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8077
8078 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetSoftSpanUpperBoundForVehicle___")]
8079 public static extern void RoutingDimension_SetSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8080
8081 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasSoftSpanUpperBounds___")]
8082 public static extern bool RoutingDimension_HasSoftSpanUpperBounds(global::System.Runtime.InteropServices.HandleRef jarg1);
8083
8084 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetSoftSpanUpperBoundForVehicle___")]
8085 public static extern global::System.IntPtr RoutingDimension_GetSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8086
8087 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_SetQuadraticCostSoftSpanUpperBoundForVehicle___")]
8088 public static extern void RoutingDimension_SetQuadraticCostSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
8089
8090 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_HasQuadraticCostSoftSpanUpperBounds___")]
8091 public static extern bool RoutingDimension_HasQuadraticCostSoftSpanUpperBounds(global::System.Runtime.InteropServices.HandleRef jarg1);
8092
8093 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingDimension_GetQuadraticCostSoftSpanUpperBoundForVehicle___")]
8094 public static extern global::System.IntPtr RoutingDimension_GetQuadraticCostSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8095
8096 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolveModelWithSat___")]
8097 public static extern bool SolveModelWithSat(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8098
8099 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationBaseObject_SWIGUpcast___")]
8100 public static extern global::System.IntPtr PropagationBaseObject_SWIGUpcast(global::System.IntPtr jarg1);
8101
8102 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Decision_SWIGUpcast___")]
8103 public static extern global::System.IntPtr Decision_SWIGUpcast(global::System.IntPtr jarg1);
8104
8105 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionVisitor_SWIGUpcast___")]
8106 public static extern global::System.IntPtr DecisionVisitor_SWIGUpcast(global::System.IntPtr jarg1);
8107
8108 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DecisionBuilder_SWIGUpcast___")]
8109 public static extern global::System.IntPtr DecisionBuilder_SWIGUpcast(global::System.IntPtr jarg1);
8110
8111 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Demon_SWIGUpcast___")]
8112 public static extern global::System.IntPtr Demon_SWIGUpcast(global::System.IntPtr jarg1);
8113
8114 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ModelVisitor_SWIGUpcast___")]
8115 public static extern global::System.IntPtr ModelVisitor_SWIGUpcast(global::System.IntPtr jarg1);
8116
8117 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Constraint_SWIGUpcast___")]
8118 public static extern global::System.IntPtr Constraint_SWIGUpcast(global::System.IntPtr jarg1);
8119
8120 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_CastConstraint_SWIGUpcast___")]
8121 public static extern global::System.IntPtr CastConstraint_SWIGUpcast(global::System.IntPtr jarg1);
8122
8123 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchMonitor_SWIGUpcast___")]
8124 public static extern global::System.IntPtr SearchMonitor_SWIGUpcast(global::System.IntPtr jarg1);
8125
8126 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntExpr_SWIGUpcast___")]
8127 public static extern global::System.IntPtr IntExpr_SWIGUpcast(global::System.IntPtr jarg1);
8128
8129 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarIterator_SWIGUpcast___")]
8130 public static extern global::System.IntPtr IntVarIterator_SWIGUpcast(global::System.IntPtr jarg1);
8131
8132 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVar_SWIGUpcast___")]
8133 public static extern global::System.IntPtr IntVar_SWIGUpcast(global::System.IntPtr jarg1);
8134
8135 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionCollector_SWIGUpcast___")]
8136 public static extern global::System.IntPtr SolutionCollector_SWIGUpcast(global::System.IntPtr jarg1);
8137
8138 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseObjectiveMonitor_SWIGUpcast___")]
8139 public static extern global::System.IntPtr BaseObjectiveMonitor_SWIGUpcast(global::System.IntPtr jarg1);
8140
8141 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ObjectiveMonitor_SWIGUpcast___")]
8142 public static extern global::System.IntPtr ObjectiveMonitor_SWIGUpcast(global::System.IntPtr jarg1);
8143
8144 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_OptimizeVar_SWIGUpcast___")]
8145 public static extern global::System.IntPtr OptimizeVar_SWIGUpcast(global::System.IntPtr jarg1);
8146
8147 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLimit_SWIGUpcast___")]
8148 public static extern global::System.IntPtr SearchLimit_SWIGUpcast(global::System.IntPtr jarg1);
8149
8150 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RegularLimit_SWIGUpcast___")]
8151 public static extern global::System.IntPtr RegularLimit_SWIGUpcast(global::System.IntPtr jarg1);
8152
8153 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ImprovementSearchLimit_SWIGUpcast___")]
8154 public static extern global::System.IntPtr ImprovementSearchLimit_SWIGUpcast(global::System.IntPtr jarg1);
8155
8156 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVar_SWIGUpcast___")]
8157 public static extern global::System.IntPtr IntervalVar_SWIGUpcast(global::System.IntPtr jarg1);
8158
8159 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVar_SWIGUpcast___")]
8160 public static extern global::System.IntPtr SequenceVar_SWIGUpcast(global::System.IntPtr jarg1);
8161
8162 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarElement_SWIGUpcast___")]
8163 public static extern global::System.IntPtr IntVarElement_SWIGUpcast(global::System.IntPtr jarg1);
8164
8165 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntervalVarElement_SWIGUpcast___")]
8166 public static extern global::System.IntPtr IntervalVarElement_SWIGUpcast(global::System.IntPtr jarg1);
8167
8168 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SequenceVarElement_SWIGUpcast___")]
8169 public static extern global::System.IntPtr SequenceVarElement_SWIGUpcast(global::System.IntPtr jarg1);
8170
8171 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Assignment_SWIGUpcast___")]
8172 public static extern global::System.IntPtr Assignment_SWIGUpcast(global::System.IntPtr jarg1);
8173
8174 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_Pack_SWIGUpcast___")]
8175 public static extern global::System.IntPtr Pack_SWIGUpcast(global::System.IntPtr jarg1);
8176
8177 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_DisjunctiveConstraint_SWIGUpcast___")]
8178 public static extern global::System.IntPtr DisjunctiveConstraint_SWIGUpcast(global::System.IntPtr jarg1);
8179
8180 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SolutionPool_SWIGUpcast___")]
8181 public static extern global::System.IntPtr SolutionPool_SWIGUpcast(global::System.IntPtr jarg1);
8182
8183 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseIntExpr_SWIGUpcast___")]
8184 public static extern global::System.IntPtr BaseIntExpr_SWIGUpcast(global::System.IntPtr jarg1);
8185
8186 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchOperator_SWIGUpcast___")]
8187 public static extern global::System.IntPtr LocalSearchOperator_SWIGUpcast(global::System.IntPtr jarg1);
8188
8189 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchOperator_SWIGUpcast___")]
8190 public static extern global::System.IntPtr IntVarLocalSearchOperator_SWIGUpcast(global::System.IntPtr jarg1);
8191
8192 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BaseLns_SWIGUpcast___")]
8193 public static extern global::System.IntPtr BaseLns_SWIGUpcast(global::System.IntPtr jarg1);
8194
8195 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_ChangeValue_SWIGUpcast___")]
8196 public static extern global::System.IntPtr ChangeValue_SWIGUpcast(global::System.IntPtr jarg1);
8197
8198 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilter_SWIGUpcast___")]
8199 public static extern global::System.IntPtr LocalSearchFilter_SWIGUpcast(global::System.IntPtr jarg1);
8200
8201 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchFilterManager_SWIGUpcast___")]
8202 public static extern global::System.IntPtr LocalSearchFilterManager_SWIGUpcast(global::System.IntPtr jarg1);
8203
8204 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_IntVarLocalSearchFilter_SWIGUpcast___")]
8205 public static extern global::System.IntPtr IntVarLocalSearchFilter_SWIGUpcast(global::System.IntPtr jarg1);
8206
8207 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_PropagationMonitor_SWIGUpcast___")]
8208 public static extern global::System.IntPtr PropagationMonitor_SWIGUpcast(global::System.IntPtr jarg1);
8209
8210 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_LocalSearchMonitor_SWIGUpcast___")]
8211 public static extern global::System.IntPtr LocalSearchMonitor_SWIGUpcast(global::System.IntPtr jarg1);
8212
8213 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_BooleanVar_SWIGUpcast___")]
8214 public static extern global::System.IntPtr BooleanVar_SWIGUpcast(global::System.IntPtr jarg1);
8215
8216 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SymmetryBreaker_SWIGUpcast___")]
8217 public static extern global::System.IntPtr SymmetryBreaker_SWIGUpcast(global::System.IntPtr jarg1);
8218
8219 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_SearchLog_SWIGUpcast___")]
8220 public static extern global::System.IntPtr SearchLog_SWIGUpcast(global::System.IntPtr jarg1);
8221
8222 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_RoutingModelVisitor_SWIGUpcast___")]
8223 public static extern global::System.IntPtr RoutingModelVisitor_SWIGUpcast(global::System.IntPtr jarg1);
8224
8225 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_GlobalVehicleBreaksConstraint_SWIGUpcast___")]
8226 public static extern global::System.IntPtr GlobalVehicleBreaksConstraint_SWIGUpcast(global::System.IntPtr jarg1);
8227
8228 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TypeIncompatibilityChecker_SWIGUpcast___")]
8229 public static extern global::System.IntPtr TypeIncompatibilityChecker_SWIGUpcast(global::System.IntPtr jarg1);
8230
8231 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TypeRequirementChecker_SWIGUpcast___")]
8232 public static extern global::System.IntPtr TypeRequirementChecker_SWIGUpcast(global::System.IntPtr jarg1);
8233
8234 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfConstraintSolver_TypeRegulationsConstraint_SWIGUpcast___")]
8235 public static extern global::System.IntPtr TypeRegulationsConstraint_SWIGUpcast(global::System.IntPtr jarg1);
8236}
8238}
delegate void SwigDelegateBaseLns_2(global::System.IntPtr assignment)
delegate long SwigDelegateChangeValue_10(long index, long value)
delegate void SwigDelegateChangeValue_2(global::System.IntPtr assignment)
delegate bool SwigDelegateChangeValue_7(int arg0)
delegate global::System.IntPtr SwigDelegateDecisionBuilder_1(global::System.IntPtr s)
delegate void SwigDelegateDecision_1(global::System.IntPtr s)
delegate void SwigDelegateDecision_2(global::System.IntPtr s)
delegate void SwigDelegateDecision_3(global::System.IntPtr visitor)
delegate void SwigDelegateDemon_1(global::System.IntPtr s)
delegate void SwigDelegateIntVarLocalSearchFilter_9(global::System.IntPtr arg0)
delegate void SwigDelegateIntVarLocalSearchFilter_1(global::System.IntPtr arg0, global::System.IntPtr arg1)
delegate bool SwigDelegateIntVarLocalSearchFilter_3(global::System.IntPtr delta, global::System.IntPtr deltadelta, long objective_min, long objective_max)
delegate void SwigDelegateIntVarLocalSearchFilter_2(global::System.IntPtr arg0, global::System.IntPtr arg1)
delegate void SwigDelegateIntVarLocalSearchOperator_2(global::System.IntPtr assignment)
delegate void SwigDelegateLocalSearchFilter_5(global::System.IntPtr assignment, global::System.IntPtr delta)
delegate void SwigDelegateLocalSearchFilter_1(global::System.IntPtr arg0, global::System.IntPtr arg1)
delegate void SwigDelegateLocalSearchFilter_2(global::System.IntPtr arg0, global::System.IntPtr arg1)
delegate bool SwigDelegateLocalSearchFilter_3(global::System.IntPtr delta, global::System.IntPtr deltadelta, long objective_min, long objective_max)
delegate bool SwigDelegateLocalSearchOperator_1(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate void SwigDelegateLocalSearchOperator_3(global::System.IntPtr assignment)
delegate void SwigDelegateOptimizeVar_8(global::System.IntPtr d, bool apply)
delegate void SwigDelegateOptimizeVar_23(global::System.IntPtr visitor)
delegate global::System.IntPtr SwigDelegateOptimizeVar_26(int index)
delegate long SwigDelegateOptimizeVar_29(int index)
delegate bool SwigDelegateOptimizeVar_17(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate void SwigDelegateOptimizeVar_4(global::System.IntPtr db)
delegate long SwigDelegateOptimizeVar_27(int index)
delegate void SwigDelegateOptimizeVar_6(global::System.IntPtr d)
delegate global::System.IntPtr SwigDelegateOptimizeVar_25(int index)
delegate void SwigDelegateOptimizeVar_5(global::System.IntPtr b, global::System.IntPtr d)
delegate bool SwigDelegateOptimizeVar_28(int index)
delegate void SwigDelegateOptimizeVar_7(global::System.IntPtr d)
delegate bool SwigDelegateRegularLimit_17(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate void SwigDelegateRegularLimit_8(global::System.IntPtr d, bool apply)
delegate void SwigDelegateRegularLimit_23(global::System.IntPtr visitor)
delegate void SwigDelegateRegularLimit_27(global::System.IntPtr limit)
delegate void SwigDelegateRegularLimit_6(global::System.IntPtr d)
delegate void SwigDelegateRegularLimit_4(global::System.IntPtr b)
delegate void SwigDelegateRegularLimit_5(global::System.IntPtr b, global::System.IntPtr d)
delegate void SwigDelegateRegularLimit_7(global::System.IntPtr d)
delegate global::System.IntPtr SwigDelegateRegularLimit_28()
delegate bool SwigDelegateRegularLimit_25(global::System.IntPtr offset)
delegate bool SwigDelegateSearchLimit_17(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate global::System.IntPtr SwigDelegateSearchLimit_28()
delegate void SwigDelegateSearchLimit_7(global::System.IntPtr d)
delegate void SwigDelegateSearchLimit_23(global::System.IntPtr visitor)
delegate void SwigDelegateSearchLimit_27(global::System.IntPtr limit)
delegate void SwigDelegateSearchLimit_4(global::System.IntPtr b)
delegate void SwigDelegateSearchLimit_8(global::System.IntPtr d, bool apply)
delegate bool SwigDelegateSearchLimit_25(global::System.IntPtr offset)
delegate void SwigDelegateSearchLimit_6(global::System.IntPtr d)
delegate void SwigDelegateSearchLimit_5(global::System.IntPtr b, global::System.IntPtr d)
delegate void SwigDelegateSearchMonitor_23(global::System.IntPtr visitor)
delegate void SwigDelegateSearchMonitor_5(global::System.IntPtr b, global::System.IntPtr d)
delegate void SwigDelegateSearchMonitor_8(global::System.IntPtr d, bool apply)
delegate void SwigDelegateSearchMonitor_6(global::System.IntPtr d)
delegate bool SwigDelegateSearchMonitor_17(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate void SwigDelegateSearchMonitor_7(global::System.IntPtr d)
delegate void SwigDelegateSearchMonitor_4(global::System.IntPtr b)
delegate void SwigDelegateSolutionCollector_4(global::System.IntPtr b)
delegate void SwigDelegateSolutionCollector_5(global::System.IntPtr b, global::System.IntPtr d)
delegate bool SwigDelegateSolutionCollector_17(global::System.IntPtr delta, global::System.IntPtr deltadelta)
delegate void SwigDelegateSolutionCollector_23(global::System.IntPtr visitor)
delegate void SwigDelegateSolutionCollector_8(global::System.IntPtr d, bool apply)
delegate void SwigDelegateSolutionCollector_7(global::System.IntPtr d)
delegate void SwigDelegateSolutionCollector_6(global::System.IntPtr d)
delegate void SwigDelegateSymmetryBreaker_5(global::System.IntPtr sequence, int index)
delegate void SwigDelegateSymmetryBreaker_6(global::System.IntPtr sequence, int index)
delegate void SwigDelegateSymmetryBreaker_4(global::System.IntPtr var, long est)
delegate void SwigDelegateSymmetryBreaker_2(global::System.IntPtr var, long value, bool start_with_lower_half)
delegate void SwigDelegateSymmetryBreaker_3(global::System.IntPtr var, long est)
delegate void SwigDelegateSymmetryBreaker_1(global::System.IntPtr var, long value)
static void SWIGRegisterExceptionCallbacksArgument_operations_research_constraint_solver(ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)
static void SWIGRegisterExceptionCallbacks_operations_research_constraint_solver(ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)
static void SWIGRegisterStringCallback_operations_research_constraint_solver(SWIGStringDelegate stringDelegate)
static global::System.IntPtr IntVarLocalSearchFilter_SWIGUpcast(global::System.IntPtr jarg1)
static void delete_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSymmetryManager__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr IntervalVar_EndsAfterStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_ResourceGroup_GetResourcesMarkedAllowedForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long RoutingIndexManager_NodeToIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_BaseLns(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntExpr_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeDistribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void SolutionCollector_Add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAllSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static string RoutingModel_GetPrimaryConstrainedDimension(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeVariableDomainFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeAtSolutionCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr Solver_MakeElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void BooleanVar_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr ObjectiveMonitor_MinimizationVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool OptimizeVar_AtSolutionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetPerformedRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static bool IntervalVar_MustBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_AcceptNeighborSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeConstraintInitialPropagateCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_GlobalVehicleBreaksConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static int DecisionBuilderVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr SequenceVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntervalVar_WhenAnything__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr new_OptimizeVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static global::System.IntPtr SymmetryBreaker_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr LocalSearchFilterManager_FilterEvent_filter_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_RelaxedMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OptimizeVar_ApplyBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeBoolVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static uint LocalSearchOperatorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsAfterStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_SolveFromAssignmentsWithParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3)
static void delete_SearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RegularLimit_CopySwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Int64Vector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntTupleSet_InsertAll__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, int[] jarg2)
static void Solver_ClearNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_ShortestTransitionSlack(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RoutingModel_GetFirstMatchingPickupDeliverySibling(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_ResourceGroup_IsResourceAllowedForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static string Solver_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVar_RemoveValues(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static global::System.IntPtr Solver_MakePhase__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void SearchMonitor_NoMoreSolutionsSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_EndInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Decision_RefuteWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int RoutingModel_Nodes(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilderVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void RoutingModel_PickupDeliveryPosition_pd_pair_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void LocalSearchOperatorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeGreater__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void PropagationBaseObject_ResetActionOnFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Constraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntTupleSet_InsertAll__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2)
static void RevInteger_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeWeightedMaximize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4)
static global::System.IntPtr Assignment_FastAdd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr ModelCache_FindVoidConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_PickupDeliveryPosition_pd_pair_index_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarLocalSearchOperator_MakeOneNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static long LocalSearchOperatorState_CommittedValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void SearchMonitor_EndFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void SymmetryBreakerVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long SolutionCollector_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_Cache(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeCumulative__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5)
static global::System.IntPtr IntExpr_Minimize(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVar_WhenBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_PopState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RevPartialSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelCache_InsertVarConstantConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5, int jarg6)
static bool SearchMonitor_AcceptDeltaSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_TypeRegulationsConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetSpanCostCoefficientForAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int Solver_SolveDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchMonitor_BeginAcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeDefaultPhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ImprovementSearchLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SetAssignmentFromAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr ModelVisitor_SWIGUpcast(global::System.IntPtr jarg1)
static int RoutingModel_NodeNeighborsParameters_num_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddRestoreDimensionValuesResetCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static void RegularLimit_ExitSearchSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SolutionCollector_Solution(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool BooleanVar_Bound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Assignment_Activated__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr ModelCache_FindVarConstantConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, int jarg5)
static void RoutingModel_SetPickupAndDeliveryPolicyOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static long MinVarArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetPickupToDeliveryLimitFunctionForPair(global::System.Runtime.InteropServices.HandleRef jarg1, IntIntToLong jarg2, int jarg3)
static global::System.IntPtr Solver_MakeIntervalVarRelation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void ModelVisitor_VisitSequenceArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long LocalSearchOperatorState_CandidateInverseValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long RoutingModel_GetNumberOfRejectsInFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2)
static global::System.IntPtr RoutingModel_ResourceVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool BooleanVar_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarElement_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void RoutingModel_AddPickupAndDeliverySets(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeOperator__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongLongToLong jarg3, int jarg4)
static void Assignment_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLexicographicTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6, long jarg7, double jarg8)
static void delete_BaseObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Assignment_ObjectiveMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_EndSearchAux(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenStartBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static long Assignment_ObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr SearchLimit_SWIGUpcast(global::System.IntPtr jarg1)
static void LocalSearchOperatorState_SetCurrentDomainInjectiveAndKeepInverseValues(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Solver_SetUseFastLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static uint Int64Vector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetAmortizedLinearCostFactorOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetBackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static global::System.IntPtr Solver_MakeDistribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeLubyRestart(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeIndexOfConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static bool Assignment_Contains__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Decision_ApplyWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static System.IntPtr Solver_Parameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntTupleSet_Contains__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static global::System.IntPtr Solver_Compose__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchFilterVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ActiveVehicleVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool SequenceVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLess__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void PropagationMonitor_BeginConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ModelVisitor_EndVisitExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static long IntervalVar_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetSameVehicleIndicesOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntervalVar_EndsAfterEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsGreaterCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr new_IntBoolPair__SWIG_1(int jarg1, bool jarg2)
static void Solver_IntegerCastInfo_expression_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void delete_RoutingDimension(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_Empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Int64Vector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Int64VectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool LocalSearchOperator_MakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_LocalSearchOperatorVector__SWIG_2(int jarg1)
static void delete_BooleanVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilter_ResetSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchOperator_SWIGUpcast(global::System.IntPtr jarg1)
static bool DefaultPhaseParameters_run_all_heuristics_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeVariableLessOrEqualValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeIsGreaterOrEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static uint SymmetryBreakerVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionPool_Initialize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIntConst__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, string jarg3)
static void Assignment_ActivateObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddWeightedVariableMinimizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static long Solver_Rand64(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int length4, long[] jarg4, LongLongToLong jarg5)
static void RegularLimit_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsMemberVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static global::System.IntPtr Solver_MakeFirstSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeMin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr new_SearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMoveTowardTargetOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void RoutingModel_SetPathEnergyCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4, int jarg5)
static int RoutingModel_GetNonZeroCostClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DecisionBuilderVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static long Assignment_ObjectiveMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchLimit_InstallSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_FinishCurrentSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static long SolutionCollector_Failures(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long IntVarElement_Max(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DisjunctiveConstraint_SWIGUpcast(global::System.IntPtr jarg1)
static int DefaultPhaseParameters_random_seed_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeElementEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static void LocalSearchFilter_Revert(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AddSumVariableWeightsLessOrEqualConstantDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static int DefaultPhaseParameters_heuristic_period_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Decision_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Decision.SwigDelegateDecision_0 delegate0, Decision.SwigDelegateDecision_1 delegate1, Decision.SwigDelegateDecision_2 delegate2, Decision.SwigDelegateDecision_3 delegate3)
static void IntervalVarElement_SetEndValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void SearchMonitor_BeginNextDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVar_WhenAnything__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long BoundCost_cost_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static global::System.IntPtr Assignment_FastAdd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeCumulative__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, string jarg5)
static global::System.IntPtr Solver_MakeIsLessCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeStatisticsModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr BaseLns_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeFailuresLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ModelVisitor_VisitIntegerArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int length3, long[] jarg3)
static global::System.IntPtr SymmetryBreakerVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool IntVarLocalSearchOperator_SkipUnchanged(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RoutingModel_AddVariableTargetToFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void RoutingDimension_SetSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr SequenceVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool LocalSearchFilter_IsIncrementalSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVarElement_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchMonitor_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeScalProdGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4)
static bool RoutingModel_NodeNeighborsParameters_only_sort_neighbors_for_partial_neighborhoods_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsAtStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int DefaultPhaseParameters_heuristic_num_failures_limit_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SearchMonitor_solver(global::System.Runtime.InteropServices.HandleRef jarg1)
static int BooleanVar_RawValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static long OptimizeVar_Best(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchMonitorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void Solver_NewSearchAux__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeLessOrEqual__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr Solver_MakeNonEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void AssignmentIntContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_Nexts(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreakerVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static string PropagationBaseObject_Name(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void ChangeValue_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ChangeValue.SwigDelegateChangeValue_0 delegate0, ChangeValue.SwigDelegateChangeValue_1 delegate1, ChangeValue.SwigDelegateChangeValue_2 delegate2, ChangeValue.SwigDelegateChangeValue_3 delegate3, ChangeValue.SwigDelegateChangeValue_4 delegate4, ChangeValue.SwigDelegateChangeValue_5 delegate5, ChangeValue.SwigDelegateChangeValue_6 delegate6, ChangeValue.SwigDelegateChangeValue_7 delegate7, ChangeValue.SwigDelegateChangeValue_8 delegate8, ChangeValue.SwigDelegateChangeValue_9 delegate9, ChangeValue.SwigDelegateChangeValue_10 delegate10)
static bool IntervalVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint LocalSearchFilterVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntVar_OldMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePhase__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongToLong jarg4, LongToLong jarg5)
static void delete_AssignmentIntervalContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreakerVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void PropagationMonitor_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void SequenceVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeRejectFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchOperator_HasFragments(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Solver_IsProfilingEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchFilterVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long ObjectiveMonitor_Step(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void DecisionBuilderVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void BaseLns_InitFragmentsSwigExplicitBaseLns(global::System.Runtime.InteropServices.HandleRef jarg1)
static string SequenceVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void DecisionVisitor_VisitSetVariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_RoutingModel_VehicleTypeContainer_VehicleClassEntry(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_AcceptSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Assignment_SetStartValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVarElement_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void PropagationMonitor_SetMax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeStoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr SequenceVarElement_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr RoutingModel_GetPickupPosition(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr new_TypeIncompatibilityChecker(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void SequenceVarElement_SetUnperformed(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static global::System.IntPtr Solver_MakeIsMemberVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static global::System.IntPtr RoutingModel_GetPathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeWeightedMaximize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4)
static void RoutingDimension_SetGlobalSpanCostCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int RoutingModel_ResourceGroup_GetResourceClassIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentSequenceContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long RoutingModel_UnperformedPenaltyOrValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void RegularLimit_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void DecisionVisitor_VisitUnknownDecision(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePathCumul__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr Solver_MakeLexicalLessOrEqualWithOffsets(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4)
static void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeRankLastInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void SearchMonitor_BeginInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Solver_UseFastLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNeighborhoodLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int RoutingModel_VariableValuePair_var_index_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsLessOrEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ModelCache_InsertVarConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int jarg5)
static void SearchLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_AddLocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingDimension_HasCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool IntVar_IsVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_RoutingModel_NodeNeighborsByCostClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_SafeStartExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntExpr_Range(global::System.Runtime.InteropServices.HandleRef jarg1, out int jarg2, out int jarg3)
static void Int64Vector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static void SymmetryBreakerVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr BooleanVar_IsLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeScalProdGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4)
static global::System.IntPtr IntervalVarElement_SWIGUpcast(global::System.IntPtr jarg1)
static bool Solver_Solve__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr RoutingDimension_SlackVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void SequenceVarElement_SetBackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static int SearchMonitorVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationBaseObject_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_IntBoolPair(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_AddDimensionWithVehicleTransitAndCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3, int length4, long[] jarg4, bool jarg5, string jarg6)
static void RoutingModel_AddAtSolutionCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static long SolutionCollector_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool SolutionCollector_HasSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SimpleBoundCosts(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeDecisionBuilderFromAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakePrintModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeCumulative__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4, string jarg5)
static void RoutingModel_SetVisitType(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3, int jarg4)
static global::System.IntPtr RoutingModel_AddConstantDimensionWithSlack(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, bool jarg5, string jarg6)
static global::System.IntPtr ObjectiveMonitor_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr SequenceVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_RegisterDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_GetResourceIndicesInClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Pack_SWIGUpcast(global::System.IntPtr jarg1)
static void delete_Demon(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsAfterEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void SearchLog_BeginFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentIntervalContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void RoutingModel_AddRequiredTypeAlternativesWhenAddingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingDimension_HasPickupToDeliveryLimits(global::System.Runtime.InteropServices.HandleRef jarg1)
static ulong IntVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeTemporalDisjunction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeSymmetryManager__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void ModelVisitor_VisitIntegerVariable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void Solver_ClearFailIntercept(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeFalseConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int RoutingModel_GetVehicleOfClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelCache_InsertExprExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5, int jarg6)
static global::System.IntPtr Solver_MakeSquare(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_VehicleVars(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_GetFixedCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeMaxEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool Solver_SolveAndCommit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeLimit__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int proto_size, byte[] jarg2)
static global::System.IntPtr Solver_MakeBestValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void delete_RegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr GlobalVehicleBreaksConstraint_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr IntVar_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetMutableLocalCumulLPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint Int64VectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeProd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long RoutingModel_GetDisjunctionMaxCardinality(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeSum__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long SequenceVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static long MaxVarArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RegularLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static global::System.IntPtr Solver_MakeScalProd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static bool LocalSearchFilter_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5)
static global::System.IntPtr IntVar_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr SequenceVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr FindErrorsInRoutingSearchParameters(int search_parameters_size, byte[] jarg1)
static void SearchMonitorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchOperatorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void DecisionBuilderVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeMonotonicElement(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Assignment_SequenceVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchFilterManager_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeDeviation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static global::System.IntPtr new_RoutingIndexManager__SWIG_1(int jarg1, int jarg2, int length3, int[] jarg3, int length4, int[] jarg4)
static global::System.IntPtr TypeRegulationsConstraint_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeSumObjectiveFilter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongLongLongToLong jarg4, int jarg5)
static string SearchLimit_ToStringSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_solver(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchOperatorState_CandidateIsActive(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeClosureDemon(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static void IntervalVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchOperator_Reset(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsAfterStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string PropagationBaseObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void GlobalVehicleBreaksConstraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeElementEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void Solver_AddPropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RegularLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_Try__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void PropagationMonitor_BeginNestedConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_IgnoreDisjunctionsAlreadyForcedToZero(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BaseObjectiveMonitor_SetActive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void IntVar_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeAllowedAssignments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakePathCumul__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, LongLongToLong jarg5)
static bool SequenceVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string DecisionBuilder_ToStringSwigExplicitDecisionBuilder(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntExpr_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeNotMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void delete_TypeRegulationsChecker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool Solver_Solve__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr Assignment_Add__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string BooleanVar_BaseName(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static int BaseObjectiveMonitor_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Pack_IsAssignedStatusKnown(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool NodeNeighborIterator_IsOutgoingNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AddWeightedSumEqualVarDimension__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5)
static void ModelVisitor_EndVisitIntegerExpression(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool Solver_Solve__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static long Solver_Failures(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_GetPickupAndDeliveryPolicyOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void LocalSearchFilterVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ModelVisitor_VisitIntegerMatrixArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr IntVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_ReadAssignmentFromRoutes(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2, bool jarg3)
static global::System.IntPtr RoutingModel_GetSingleNodesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4)
static global::System.IntPtr Solver_MakeIsLexicalLessOrEqualWithOffsetsCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int SymmetryBreakerVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ResourceVars(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RoutingModel_SetPickupAndDeliveryPolicyOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long RoutingDimension_GetCumulVarMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntExpr_SWIGUpcast(global::System.IntPtr jarg1)
static void RoutingModel_AddSoftSameVehicleConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3)
static global::System.IntPtr Solver_MakeWeightedOptimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, long jarg5)
static global::System.IntPtr RoutingModel_RestoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_RestartSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static int Assignment_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntTupleSet_Contains__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void RegularLimit_InitSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr new_OptimizeVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4)
static long BooleanVar_Min(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLog_ApplyDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntTupleSet_SortedLexicographically(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_HasGlobalCumulOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long ChangeValue_ModifyValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void delete_CastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BoundCost_cost_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long Assignment_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_DecisionVisitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static string Pack_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelCache_InsertExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, bool jarg4)
static void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void ModelVisitor_VisitIntervalVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void PropagationMonitor_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static long IntVarLocalSearchOperator_PrevValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeScalProdEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4)
static void RoutingModel_AddWeightedVariableTargetToFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr BaseIntExpr_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long PathsMetadata_Start(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Solver_NewSearchAux__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void SequenceVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SequenceVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_LocalSearchOperatorState(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePhase__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void IntervalVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilderVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr new_BoundCost__SWIG_1(long jarg1, long jarg2)
static bool OptimizeVar_AcceptSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_PeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetBreakIntervalsOfVehicle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int length4, long[] jarg4)
static void Int64VectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeNotMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static global::System.IntPtr Solver_MakeConstraintAdder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchMonitor_EndAcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr Solver_Try__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIsLessOrEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void PropagationMonitor_SetRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static bool AlternativeNodeIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_ConcatenateOperators__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVar_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6, bool jarg7)
static void RoutingModel_SetAssignmentFromOtherModelAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr IntExpr_IsLess__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeFalseConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void DisjunctiveConstraint_SetTransitionTime(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2)
static global::System.IntPtr RoutingModel_FastSolveFromAssignmentWithParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void IntExpr_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void delete_LocalSearchFilterManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static int AssignmentIntervalContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchFilterVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntervalVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_HasObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsMember__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static long IntervalVar_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr RoutingModel_SolveFromAssignmentsWithParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void SearchLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RegularLimit_Failures(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetPerformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static long RoutingDimension_GetLocalOptimizerOffsetForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SearchMonitor_NoMoreSolutions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModel_NodeNeighborsByCostClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr AssignmentIntContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int RoutingModel_Vehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchOperatorState_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void ModelVisitor_BeginVisitIntegerExpression(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_AssignmentSequenceContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_SafeDurationExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Int64VectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Solver_InstrumentsVariables(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreaker_AddIntegerVariableGreaterOrEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_IntegerCastInfo_expression_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperator_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_Start(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_AddDisjunction__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void Pack_RemoveAllPossibleFromBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void TypeRegulationsConstraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_SetAmortizedCostFactorsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, int jarg4)
static global::System.IntPtr DecisionBuilderVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Pack_AssignAllPossibleToBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SearchMonitorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetDurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RoutingModel_HasDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void PropagationMonitor_EndDemonRun(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeDifference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_GetLocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePathConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr Solver_MakeIntervalRelaxedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr LocalSearchOperatorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int IntTupleSet_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void Int64Vector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RegularLimit_UpdateLimits(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5)
static bool LocalSearchOperator_HasFragmentsSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntVarIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeBestValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr RoutingModel_MakeSelfDependentDimensionFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5, bool jarg6)
static long RoutingModel_GetArcCostForClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static bool Solver_NameAllVariables(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterManager_FilterEvent_filter_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_SolutionPool(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ModelCache_InsertVarArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void delete_LocalSearchOperatorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr AssignmentIntervalContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_GetOrCreateLocalSearchState(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeTimeLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Assignment_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static int Int64Vector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Assignment_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static long Assignment_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_Objective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenDurationRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr Solver_MakeOperator__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void delete_RoutingModel_PickupDeliveryPosition(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingIndexManager_IndexToNode(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool AreAllBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_Compose__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static bool RoutingModel_HasMaxCardinalityConstrainedDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Int64Vector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr AssignmentIntervalContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long RegularLimit_Solutions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsAtEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr IntExpr_IsMember__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void LocalSearchFilterVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchMonitor_EndInitialPropagationSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreakerVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool IntVarLocalSearchOperator_HoldsDelta(global::System.Runtime.InteropServices.HandleRef jarg1)
static long LocalSearchFilter_GetSynchronizedObjectiveValueSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentSequenceContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static long IntervalVar_EndMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr SolutionCollector_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeAllDifferentExcept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Int64Vector_Repeat(long jarg1, int jarg2)
static void IntervalVarElement_SetDurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntervalVar_RelaxedMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_NodeNeighborsByCostClass_GetIncomingNeighborsOfNodeForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static uint DecisionBuilderVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_GetCostClassIndexOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool Solver_Solve__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int SearchMonitor_ProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingDimension_HasCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool Solver_CheckConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_NodeNeighborsParameters_add_vehicle_ends_to_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int RoutingModel_VehicleTypeContainer_Type(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RevPartialSequence_NumLastRanked(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntExpr_WhenRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static void SearchMonitorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntBoolPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr Solver_MakeMinEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool Solver_SolveAndCommit__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void LocalSearchMonitor_EndMakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static int RoutingModel_RegisterUnaryTransitVector(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void RoutingModel_AddTemporalTypeIncompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeScheduleOrPostpone(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, ref int jarg4)
static global::System.IntPtr RoutingModel_GetVehiclesOfSameClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool IntVarElement_Bound(global::System.Runtime.InteropServices.HandleRef jarg1)
static int Demon_Priority(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntExpr_Max(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2)
static void Int64VectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GetSpanCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool IntVarLocalSearchOperator_Activated(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_NodeNeighborsByCostClass_GetOutgoingNeighborsOfNodeForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void LocalSearchFilter_RevertSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_ImprovementSearchLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, double jarg4, double jarg5, double jarg6, int jarg7)
static void SequenceVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_PropagationBaseObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_BeginFailSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsLessOrEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr IntervalVar_StartsAt(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RoutingModel_GetMutableCPInterrupt(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelCache_InsertExprExprConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static void IntervalVarElement_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool Assignment_Contains__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_RegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7)
static global::System.IntPtr Solver_MakeGreater__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr PropagationBaseObject_solver(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeScalProdEquality__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void IntTupleSet_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenDurationRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeMinimize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void IntervalVar_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr RoutingModel_GetRequiredTypeAlternativesWhenRemovingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void DecisionBuilderVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_HasMandatoryDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool OptimizeVar_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_GetArcCostForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static global::System.IntPtr Solver_MakePhase__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, LongToLong jarg4, int jarg5)
static long IntervalVarElement_StartMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSum__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingDimension_BaseDimension(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_PushState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarElement_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int RevPartialSequence_NumFirstRanked(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_VehicleRouteConsideredVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_ModelCache(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeScalProdEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int IntVar_VarType(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePower(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void Assignment_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeDefaultPhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Pack_SetUnassigned(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr PathsMetadata_Paths(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool SequenceVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingModel_IsPickup(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntVar_GetDomain(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SearchMonitorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int LocalSearchOperatorVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarLocalSearchOperator_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static bool SymmetryBreakerVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_NewSearchAux__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_Resource_GetDimensionAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool AssignmentElement_Activated(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SequenceVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarLocalSearchOperator_MakeOneNeighborSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_SearchMonitorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OptimizeVar_BeginNextDecisionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingModel_GetDepot(global::System.Runtime.InteropServices.HandleRef jarg1)
static long BaseObjectiveMonitor_BestValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long PathsMetadata_End(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeAllSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RoutingModel_IsEnd(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVarElement_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int IntTupleSet_NumTuples(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Solver_Solutions(global::System.Runtime.InteropServices.HandleRef jarg1)
static int SequenceVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_CancelSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Assignment_IntervalVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_SetOptimizationDirection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeSumEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_SetFixedCostOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static void delete_Assignment(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool SearchMonitor_AcceptSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BooleanVar_WhenBound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeModulo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void IntVarLocalSearchOperator_OnStartSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_PushContext(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr Solver_ConcatenateOperators__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, IntIntToLong jarg3)
static long LocalSearchOperatorState_CheckPointValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntVectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeIsBetweenVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void SearchLog_OutputDecision(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DecisionVisitor_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr LocalSearchOperatorState_IncrementalIndicesChanged(global::System.Runtime.InteropServices.HandleRef jarg1)
static long ObjectiveMonitor_BestValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long SolutionCollector_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string OptimizeVar_Name(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_BeginDemonRun(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Pack_AddCountUsedBinDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingDimension_FixedTransitVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void ModelVisitor_VisitIntervalArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_VehicleTypeContainer_VehicleClassEntry_vehicle_class_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Constraint_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_RunUncheckedLocalSearch__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static string BooleanVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsGreater__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_RegisterDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool RevPartialSequence_IsRanked(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_GetCostClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeDistribute__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4)
static void delete_RevInteger(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_AddDimensionWithVehicleTransits(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3, long jarg4, bool jarg5, string jarg6)
static void ModelCache_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SearchMonitor_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeIsGreaterOrEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void PropagationMonitor_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr RoutingModel_GetMutableCPSatInterrupt(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_AcceptUncheckedNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitIntegerVariableArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeDifference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntervalVar_WhenDurationBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool DecisionBuilderVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long IntVarElement_Min(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeAllDifferent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static long Assignment_ObjectiveMaxFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool IntVarLocalSearchOperator_IsIncremental(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_SolveWithIteratedLocalSearch(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_GetAffectedDimensionIndices(global::System.Runtime.InteropServices.HandleRef jarg1)
static long BoundCost_bound_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool ObjectiveMonitor_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_TimeBuffer(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr Solver_MakeSymmetryManager__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_GlobalVehicleBreaksConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static bool SearchMonitorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void RoutingModel_SetFirstSolutionEvaluator(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2)
static int Solver_TopProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelCache_InsertVarConstantConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5, int jarg6)
static bool AssignmentSequenceContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool SymmetryBreakerVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool LocalSearchFilterVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntervalVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchMonitor_BeginOperatorStart(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_HasLocalCumulOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_SetAmortizedCostFactorsOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static bool RoutingModel_CostsAreHomogeneousAcrossVehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Solver_UncheckedSolutions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeCircuit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr BaseObjectiveMonitor_SWIGUpcast(global::System.IntPtr jarg1)
static bool RoutingModel_IsDelivery(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr ModelCache_FindVarConstantConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, int jarg5)
static int Solver_Constraints(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_CumulDependentTransitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void PropagationMonitor_RemoveValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakePhase__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6)
static void Assignment_Deactivate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVarElement_SWIGUpcast(global::System.IntPtr jarg1)
static void LocalSearchFilterManager_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int RevPartialSequence_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BooleanVar_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr IntervalVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void Decision_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAllDifferent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_IntVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, VoidToString jarg3)
static global::System.IntPtr Solver_MakeConditionalExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static long Assignment_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint SymmetryBreakerVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationBaseObject_UnfreezeQueue(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilder_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, DecisionBuilder.SwigDelegateDecisionBuilder_0 delegate0, DecisionBuilder.SwigDelegateDecisionBuilder_1 delegate1)
static global::System.IntPtr IntExpr_Member__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static global::System.IntPtr Solver_MakeNotBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr IntExpr_IsDifferent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchOperatorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void AssignmentIntContainer_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr ModelCache_FindExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4)
static string FindErrorInRoutingSearchParameters(int search_parameters_size, byte[] jarg1)
static bool RoutingModel_WriteAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool RoutingModel_ApplyLocksToAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2, bool jarg3)
static global::System.IntPtr Solver_MakeOptimize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static global::System.IntPtr Solver_MakeIsGreaterCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void LocalSearchMonitor_BeginFilterNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchFilterManager_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, LocalSearchFilterManager.SwigDelegateLocalSearchFilterManager_0 delegate0)
static global::System.IntPtr Solver_MakeNotMemberCt__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4)
static global::System.IntPtr Solver_MakeMax__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr new_Int64Vector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeAcceptFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_ConstParameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool SearchMonitor_LocalOptimum(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_IntegerCastInfo_maintainer_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeLexicalLess(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Solver_ShouldFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_ObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVarLocalSearchOperator_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SearchLog_BeginInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLog_NoMoreSolutions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitIntegerArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3)
static void Int64Vector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Demon_RunWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_IntegerCastInfo_variable_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeImprovementLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, double jarg4, double jarg5, double jarg6, int jarg7)
static void SearchLimit_PeriodicCheckSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeCumulative__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5)
static bool IntVarLocalSearchOperator_IsIncrementalSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIntervalVarRelationWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5)
static global::System.IntPtr Solver_MakeElementEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeDiv__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr new_IntVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchMonitor_ApplyDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeGreater__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int Assignment_NumIntervalVars(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSum__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr new_Assignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static string PropagationBaseObject_BaseName(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GetCumulVarMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool IntExpr_IsVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_PerformedExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_Assignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ObjectiveMonitor_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool AssignmentSequenceContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SolutionCollector_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_SetPrimaryConstrainedDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void SolutionCollector_Add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void DecisionBuilderVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool LocalSearchFilterVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static System.IntPtr Solver_MakeDefaultRegularLimitParameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6, long jarg7, double jarg8)
static long IntervalVar_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_RefuteDecisionSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_IntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetEndValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void SearchMonitor_EnterSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionCollector_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SolutionCollector.SwigDelegateSolutionCollector_0 delegate0, SolutionCollector.SwigDelegateSolutionCollector_1 delegate1, SolutionCollector.SwigDelegateSolutionCollector_2 delegate2, SolutionCollector.SwigDelegateSolutionCollector_3 delegate3, SolutionCollector.SwigDelegateSolutionCollector_4 delegate4, SolutionCollector.SwigDelegateSolutionCollector_5 delegate5, SolutionCollector.SwigDelegateSolutionCollector_6 delegate6, SolutionCollector.SwigDelegateSolutionCollector_7 delegate7, SolutionCollector.SwigDelegateSolutionCollector_8 delegate8, SolutionCollector.SwigDelegateSolutionCollector_9 delegate9, SolutionCollector.SwigDelegateSolutionCollector_10 delegate10, SolutionCollector.SwigDelegateSolutionCollector_11 delegate11, SolutionCollector.SwigDelegateSolutionCollector_12 delegate12, SolutionCollector.SwigDelegateSolutionCollector_13 delegate13, SolutionCollector.SwigDelegateSolutionCollector_14 delegate14, SolutionCollector.SwigDelegateSolutionCollector_15 delegate15, SolutionCollector.SwigDelegateSolutionCollector_16 delegate16, SolutionCollector.SwigDelegateSolutionCollector_17 delegate17, SolutionCollector.SwigDelegateSolutionCollector_18 delegate18, SolutionCollector.SwigDelegateSolutionCollector_19 delegate19, SolutionCollector.SwigDelegateSolutionCollector_20 delegate20, SolutionCollector.SwigDelegateSolutionCollector_21 delegate21, SolutionCollector.SwigDelegateSolutionCollector_22 delegate22, SolutionCollector.SwigDelegateSolutionCollector_23 delegate23, SolutionCollector.SwigDelegateSolutionCollector_24 delegate24)
static bool AssignmentIntContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetQuadraticCostSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool SearchMonitor_IsUncheckedSolutionLimitReached(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_EndsAtStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool SearchMonitor_AcceptDelta(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetObjectiveMinFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static string LocalSearchFilterManager_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_ChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_RegisterUnaryTransitCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, int jarg3)
static long IntTupleSet_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeIsEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeLimit__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7)
static global::System.IntPtr Solver_MakeConstantRestart(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static ulong BooleanVar_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVarLocalSearchOperator_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_0 delegate0, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_1 delegate1, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_2 delegate2, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_3 delegate3, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_4 delegate4, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_5 delegate5, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_6 delegate6, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_7 delegate7, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_8 delegate8, IntVarLocalSearchOperator.SwigDelegateIntVarLocalSearchOperator_9 delegate9)
static global::System.IntPtr new_ObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4)
static void ModelCache_InsertVarConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5)
static long RoutingDimension_GetCumulVarSoftLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static string DecisionBuilder_GetName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetMutableDimension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr Solver_MakeIntervalVarRelation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, long jarg4)
static void RoutingDimension_SetBreakDistanceDurationOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, int jarg4)
static long LocalSearchFilterManager_GetSynchronizedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_LocalSearchFilterVector__SWIG_2(int jarg1)
static void IntVarIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchOperatorVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void OptimizeVar_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, OptimizeVar.SwigDelegateOptimizeVar_0 delegate0, OptimizeVar.SwigDelegateOptimizeVar_1 delegate1, OptimizeVar.SwigDelegateOptimizeVar_2 delegate2, OptimizeVar.SwigDelegateOptimizeVar_3 delegate3, OptimizeVar.SwigDelegateOptimizeVar_4 delegate4, OptimizeVar.SwigDelegateOptimizeVar_5 delegate5, OptimizeVar.SwigDelegateOptimizeVar_6 delegate6, OptimizeVar.SwigDelegateOptimizeVar_7 delegate7, OptimizeVar.SwigDelegateOptimizeVar_8 delegate8, OptimizeVar.SwigDelegateOptimizeVar_9 delegate9, OptimizeVar.SwigDelegateOptimizeVar_10 delegate10, OptimizeVar.SwigDelegateOptimizeVar_11 delegate11, OptimizeVar.SwigDelegateOptimizeVar_12 delegate12, OptimizeVar.SwigDelegateOptimizeVar_13 delegate13, OptimizeVar.SwigDelegateOptimizeVar_14 delegate14, OptimizeVar.SwigDelegateOptimizeVar_15 delegate15, OptimizeVar.SwigDelegateOptimizeVar_16 delegate16, OptimizeVar.SwigDelegateOptimizeVar_17 delegate17, OptimizeVar.SwigDelegateOptimizeVar_18 delegate18, OptimizeVar.SwigDelegateOptimizeVar_19 delegate19, OptimizeVar.SwigDelegateOptimizeVar_20 delegate20, OptimizeVar.SwigDelegateOptimizeVar_21 delegate21, OptimizeVar.SwigDelegateOptimizeVar_22 delegate22, OptimizeVar.SwigDelegateOptimizeVar_23 delegate23, OptimizeVar.SwigDelegateOptimizeVar_24 delegate24, OptimizeVar.SwigDelegateOptimizeVar_25 delegate25, OptimizeVar.SwigDelegateOptimizeVar_26 delegate26, OptimizeVar.SwigDelegateOptimizeVar_27 delegate27, OptimizeVar.SwigDelegateOptimizeVar_28 delegate28, OptimizeVar.SwigDelegateOptimizeVar_29 delegate29, OptimizeVar.SwigDelegateOptimizeVar_30 delegate30, OptimizeVar.SwigDelegateOptimizeVar_31 delegate31)
static global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void Solver_MakeIntervalVarArray(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8, bool jarg9, string jarg10, global::System.Runtime.InteropServices.HandleRef jarg11)
static long IntervalVarElement_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static int Int64Vector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_DisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLexicographicImprovementLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, double jarg6, int jarg7)
static int RoutingModel_AddDisjunction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, long jarg4, int jarg5)
static void AssignmentIntContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr SearchMonitorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool LocalSearchOperatorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperator_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, LocalSearchOperator.SwigDelegateLocalSearchOperator_0 delegate0, LocalSearchOperator.SwigDelegateLocalSearchOperator_1 delegate1, LocalSearchOperator.SwigDelegateLocalSearchOperator_2 delegate2, LocalSearchOperator.SwigDelegateLocalSearchOperator_3 delegate3, LocalSearchOperator.SwigDelegateLocalSearchOperator_4 delegate4, LocalSearchOperator.SwigDelegateLocalSearchOperator_5 delegate5, LocalSearchOperator.SwigDelegateLocalSearchOperator_6 delegate6)
static void Assignment_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_LocalSearchFilterManager_FilterEvent(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static long RoutingDimension_GetTransitValueFromClass(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static int IntVar_Index(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_RestartSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ObjectiveMonitor_ObjectiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_Add__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchFilterManager_FilterEvent_priority_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntervalVar_SafeEndExpr(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DecisionVisitor_VisitRankLastInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void SymmetryBreaker_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SymmetryBreaker.SwigDelegateSymmetryBreaker_0 delegate0, SymmetryBreaker.SwigDelegateSymmetryBreaker_1 delegate1, SymmetryBreaker.SwigDelegateSymmetryBreaker_2 delegate2, SymmetryBreaker.SwigDelegateSymmetryBreaker_3 delegate3, SymmetryBreaker.SwigDelegateSymmetryBreaker_4 delegate4, SymmetryBreaker.SwigDelegateSymmetryBreaker_5 delegate5, SymmetryBreaker.SwigDelegateSymmetryBreaker_6 delegate6, SymmetryBreaker.SwigDelegateSymmetryBreaker_7 delegate7)
static global::System.IntPtr PickupDeliveryPair_delivery_alternatives_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSortingConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long IntervalVar_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeIsGreaterVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr AssignmentSequenceContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool LocalSearchFilterManager_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, long jarg5, long jarg6)
static long RevInteger_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static ulong Solver_FailStamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLocalSearchPhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void AssignmentIntervalContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModel_ResourceGroup_Resource(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr OptimizeVar_SWIGUpcast(global::System.IntPtr jarg1)
static void LocalSearchFilterVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void SearchMonitor_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntVar_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static string Demon_ToStringSwigExplicitDemon(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVar_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool BaseObjectiveMonitor_IsActive(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilderVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakePhase__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, int jarg4)
static void IntervalVar_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool AssignmentIntervalContainer_Empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr PropagationBaseObject_SWIGUpcast(global::System.IntPtr jarg1)
static void delete_BaseObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_TopPeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNoCycle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Pack_PropagateDelayed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_Compose__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_RoutingIndexManager__SWIG_0(int jarg1, int jarg2, int jarg3)
static long RoutingModel_GetArcCostForFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void delete_AssignmentIntContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntVarLocalSearchOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMax__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_DecisionBuilder(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetAmortizedQuadraticCostFactorOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static string LocalSearchMonitor_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentIntervalContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVarIterator_SWIGUpcast(global::System.IntPtr jarg1)
static int IntBoolPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr PickupDeliveryPair_pickup_alternatives_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static long SolutionCollector_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void GlobalVehicleBreaksConstraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntExpr_Bound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_BalancingDecision(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetSpanCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static global::System.IntPtr RoutingModel_SolveWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2)
static global::System.IntPtr Solver_MakeTrueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static long LocalSearchOperatorState_CandidateValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeOperator__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static global::System.IntPtr Solver_MakeDistribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void BooleanVar_WhenDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long RoutingDimension_GetCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr SymmetryBreakerVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeVariableGreaterOrEqualValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeIfThenElseCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void IntervalVarElement_SetPerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool RoutingModel_AddDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4, bool jarg5, string jarg6)
static global::System.IntPtr Solver_MakePhase__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4)
static global::System.IntPtr Solver_MakeIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, bool jarg8, string jarg9)
static bool RoutingModel_EnableDeepSerialization(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorState_Commit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeTemporalDisjunction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static string RegularLimit_ToStringSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GetCumulVarSoftUpperBoundCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool AssignmentIntContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6, bool jarg7)
static global::System.IntPtr Solver_MakeProfiledDecisionBuilderWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeCount__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static uint SearchMonitorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_RemoveValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void SearchLog_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeMapDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeFixedDurationStartSyncedOnEndIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr Solver_MakeSolutionsLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void SolutionCollector_AddObjectives(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int DefaultPhaseParameters_value_selection_schema_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetPerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool Solver_InstrumentsDemons(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarElement_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void DecisionBuilderVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperator_EnterSearchSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeWeightedMinimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4)
static int RoutingModel_GetMaximumNumberOfActiveVehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MultiArmedBanditConcatenateOperators(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, double jarg4, bool jarg5)
static long SolutionCollector_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingModel_GetMutableGlobalCumulLPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVarElement_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr Solver_MakePhase__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5)
static void SolutionPool_RegisterNewSolution(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_AddVariableMaximizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_SWIGUpcast(global::System.IntPtr jarg1)
static void DefaultPhaseParameters_random_seed_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool SolutionPool_SyncNeeded(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int IntTupleSet_Insert4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5)
static void delete_RoutingIndexManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddIntervalToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr AssignmentSequenceContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static long IntervalVarElement_PerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionVisitor_VisitScheduleOrExpedite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool IntVectorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenEndBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr DefaultPhaseParameters_decision_builder_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetObjectiveMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Solver_RestartCurrentSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetMutableGlobalCumulMPOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVarElement_SetForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Solver_Branches(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void LocalSearchFilterManager_Revert(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntVarIterator_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_RankNotLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr IntVarLocalSearchOperator_Var(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntervalVar_EndsAfter(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void RevPartialSequence_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void BooleanVar_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr RoutingModel_VehicleTypeContainer_vehicles_per_vehicle_class_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr new_LocalSearchFilterManager__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_ReadAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_SequenceVarElement(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchOperatorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakePhase__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6, int jarg7)
static global::System.IntPtr Solver_MakeBoolVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_ObjectiveBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Pack_AssignVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void SearchLimit_PeriodicCheck(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetDimensionsWithGlobalCumulOptimizers(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_RandomConcatenateOperators__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr SolutionPool_SWIGUpcast(global::System.IntPtr jarg1)
static void PropagationMonitor_SetMin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool Assignment_Bound(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeDistribute__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4, int length5, long[] jarg5)
static void RegularLimit_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, RegularLimit.SwigDelegateRegularLimit_0 delegate0, RegularLimit.SwigDelegateRegularLimit_1 delegate1, RegularLimit.SwigDelegateRegularLimit_2 delegate2, RegularLimit.SwigDelegateRegularLimit_3 delegate3, RegularLimit.SwigDelegateRegularLimit_4 delegate4, RegularLimit.SwigDelegateRegularLimit_5 delegate5, RegularLimit.SwigDelegateRegularLimit_6 delegate6, RegularLimit.SwigDelegateRegularLimit_7 delegate7, RegularLimit.SwigDelegateRegularLimit_8 delegate8, RegularLimit.SwigDelegateRegularLimit_9 delegate9, RegularLimit.SwigDelegateRegularLimit_10 delegate10, RegularLimit.SwigDelegateRegularLimit_11 delegate11, RegularLimit.SwigDelegateRegularLimit_12 delegate12, RegularLimit.SwigDelegateRegularLimit_13 delegate13, RegularLimit.SwigDelegateRegularLimit_14 delegate14, RegularLimit.SwigDelegateRegularLimit_15 delegate15, RegularLimit.SwigDelegateRegularLimit_16 delegate16, RegularLimit.SwigDelegateRegularLimit_17 delegate17, RegularLimit.SwigDelegateRegularLimit_18 delegate18, RegularLimit.SwigDelegateRegularLimit_19 delegate19, RegularLimit.SwigDelegateRegularLimit_20 delegate20, RegularLimit.SwigDelegateRegularLimit_21 delegate21, RegularLimit.SwigDelegateRegularLimit_22 delegate22, RegularLimit.SwigDelegateRegularLimit_23 delegate23, RegularLimit.SwigDelegateRegularLimit_24 delegate24, RegularLimit.SwigDelegateRegularLimit_25 delegate25, RegularLimit.SwigDelegateRegularLimit_26 delegate26, RegularLimit.SwigDelegateRegularLimit_27 delegate27, RegularLimit.SwigDelegateRegularLimit_28 delegate28)
static string Assignment_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVarLocalSearchFilter_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static string SearchLimit_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsEqualCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_Solver_IntegerCastInfo(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_ResourceGroup_ClearAllowedResourcesForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RoutingModel_AddRequiredTypeAlternativesWhenRemovingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchFilter_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr CastConstraint_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr BaseIntExpr_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr SimpleBoundCosts_GetBoundCost(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool DefaultPhaseParameters_persistent_impact_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVarElement_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DefaultPhaseParameters_heuristic_num_failures_limit_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntervalVar_WhenStartBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Int64VectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntervalVarElement_SetStartRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void SearchMonitor_PeriodicCheckSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVar_OldDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_AcceptUncheckedNeighborSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVar_WhenEndRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void AssignmentIntervalContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModel_ResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SequenceVar_SWIGUpcast(global::System.IntPtr jarg1)
static bool SearchMonitor_AtSolutionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool NodeNeighborIterator_Next(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr ModelCache_FindVarConstantConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4)
static global::System.IntPtr Assignment_ObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Int64VectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int IntTupleSet_Arity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeWeightedMinimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4)
static global::System.IntPtr Constraint_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_CastExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_IntegerCastInfo_variable_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarLocalSearchOperator_OnStart(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_Deactivate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SymmetryBreakerVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static uint IntVectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIntVar__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, string jarg3)
static int BaseLns_FragmentSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Pack_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SequenceVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchMonitor_BeginMakeNextNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAbsEquality(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchOperatorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Solver_CurrentlyInSolve(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeIsLessVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_AddEnterSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static int DefaultPhaseParameters_var_selection_schema_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SolutionCollector_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr new_RoutingModel_SecondaryOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2, long jarg3)
static void IntervalVar_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void PropagationMonitor_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr RoutingModel_GetTemporalTypeIncompatibilitiesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_RegisterIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntExpr_IsLess__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchLog_ExitSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntExpr_Min(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, int length3, long[] jarg3)
static global::System.IntPtr Solver_MakeNotMemberCt__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4)
static global::System.IntPtr Solver_MakeStrictDisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static uint SequenceVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeEnterSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr LocalSearchFilterVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntExpr_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void RoutingModel_AddAtSolutionCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2, bool jarg3)
static void IntVarElement_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_SearchMonitorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsDifferentCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr LocalSearchFilterVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool Int64Vector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSemiContinuousExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void SearchMonitor_BeginFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_SecondaryOptimizer_Solve(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeRoundRobinCompoundObjectiveMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr Solver_MakeLexicalLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void PropagationMonitor_SetMax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void Pack_AddWeightedSumEqualVarDimension__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntervalVarElement_SetPerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Solver_AddCastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void SequenceVarElement_SetSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, int length4, int[] jarg4)
static int RoutingModel_RegisterCumulDependentTransitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIsLessCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeCover(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_IsMatchingModel(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_NewSearchAux__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RoutingModel_HasHardTypeIncompatibilities(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int RoutingModel_RegisterTransitCallback__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, int jarg3)
static global::System.IntPtr ImprovementSearchLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_ModelVisitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_RegisterUnaryTransitCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2)
static void PropagationMonitor_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool IntervalVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_SetPerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void SearchLog_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_ActivatedObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeBestLexicographicValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool NodeNeighborIterator_IsIncomingNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool AreAllBooleans(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeBestLexicographicValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int Assignment_NumSequenceVars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitSequenceArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Solver_ExportProfilingOverview(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void Assignment_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitIntegerExpressionArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void PropagationBaseObject_EnqueueDelayedDemon(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SymmetryBreakerVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RegularLimit_IsUncheckedSolutionLimitReached(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVar_GetHoles(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntTupleSet_Insert3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static void SearchMonitorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr IntervalVar_AvoidsDate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr LocalSearchOperatorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeGenericTabuSearch(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, long jarg6)
static void Solver_SetContext(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int SearchMonitor_ProgressPercentSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool SearchLog_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNullIntersectExcept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)
static long IntVar_OldMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePathCumul__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, LongLongToLong jarg6)
static void Constraint_InitialPropagateWrapper(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool PropagationBaseObject_HasName(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_GetNumberOfDecisionsInFirstSolution(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2)
static global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr Solver_MakeExitSearchCallback(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr Solver_MakeElementEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void SearchMonitor_ExitSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool OptimizeVar_AcceptSolutionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Int64Vector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void delete_TypeIncompatibilityChecker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperator_ResetSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchOperator_HoldsDeltaSwigExplicitLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchFilterVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr AssignmentIntervalContainer_Element__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAssignVariableValueOrFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void LocalSearchOperatorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr SequenceVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SolutionPool_GetNextSolution(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_SetArcCostEvaluatorOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntVarLocalSearchOperator_SWIGUpcast(global::System.IntPtr jarg1)
static bool RoutingModel_HasTemporalTypeIncompatibilities(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Assignment_Value(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long SolutionCollector_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long RegularLimit_Branches(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_AreRoutesInterdependent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void BaseLns_AppendToFragment(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void AssignmentSequenceContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePhase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongToLong jarg4)
static void SequenceVar_RankNotLast(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr ChangeValue_SWIGUpcast(global::System.IntPtr jarg1)
static void Solver_SetGuidedLocalSearchPenaltyCallback(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongLongToLong jarg2)
static global::System.IntPtr SearchMonitorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static long RoutingDimension_GetSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_SolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeFixedDurationEndSyncedOnEndIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void ModelVisitor_BeginVisitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeIsDifferentVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int RoutingModel_ResourceGroup_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_ResourceGroup_Attributes_StartDomain(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_GetStatus(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_ActivatedObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void PickupDeliveryPair_delivery_alternatives_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingModel_HasTemporalTypeRequirements(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Assignment_DurationValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntTupleSet_SortedByColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_RunUncheckedLocalSearch__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool SequenceVarVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static long LocalSearchFilter_GetAcceptedObjectiveValueSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenStartRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool SearchMonitorVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarIterator_Init(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_AddVectorDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, bool jarg4, string jarg5)
static long BooleanVar_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingDimension_Cumuls(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ToInt64Vector(int length1, int[] jarg1)
static global::System.IntPtr Assignment_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingModel_CheckLimit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchMonitor_AcceptNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_Solver_IntegerCastInfo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int IntVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int DefaultPhaseParameters_initialization_splits_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNullIntersect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeFirstSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeFailDecision(global::System.Runtime.InteropServices.HandleRef jarg1)
static string Constraint_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitIntervalArrayArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchMonitor_EndFailSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_SearchLog(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_NewSearchAux__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int RoutingModel_RegisterTransitCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2)
static long IntervalVarElement_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_Pack(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint SearchMonitorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static string GlobalVehicleBreaksConstraint_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RevBool_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_UnassignAllRemainingItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SymmetryBreakerVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool IntervalVar_MayBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr PathsMetadata_Starts(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_SetArcCostEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void Assignment_SetObjectiveMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void AssignmentElement_Deactivate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_Activate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Assignment_HasObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool SearchMonitor_IsUncheckedSolutionLimitReachedSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVar_IsDifferent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int RoutingModel_AddDisjunction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3, long jarg4)
static string Decision_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionCollector_EnterSearchSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BooleanVar_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr BaseObjectiveMonitor_MinimizationVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeOperator__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongLongLongToLong jarg4, int jarg5)
static void PropagationMonitor_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_RoutingModel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int parameters_size, byte[] jarg2)
static long LocalSearchOperatorState_CommittedInverseValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Int64VectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Int64VectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void LocalSearchFilterVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, string jarg4)
static int RoutingModel_VehicleIndex(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static string Constraint_ToStringSwigExplicitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarLocalSearchFilter_Synchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr AssignmentIntervalContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_MutableIntVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVar_OldDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeBranchesLimit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVarLocalSearchOperator_StartSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_Add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long LocalSearchFilter_GetAcceptedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr PropagationMonitor_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeMin__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int IntTupleSet_NumDifferentValuesInColumn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string BaseObject_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SymmetryBreakerVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint DecisionBuilderVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeTransitionConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int length5, long[] jarg5)
static void Pack_Post(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeCustomLimit(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToBoolean jarg2)
static int IntTupleSet_Insert2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void LocalSearchFilterManager_FilterEvent_event_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeIsEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long IntervalVar_OldEndMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static ulong Solver_Stamp(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_ComputeLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, string jarg4)
static void SearchMonitor_RefuteDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_AddVariableMinimizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool IntVarIterator_Ok(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SequenceVar_RankSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, int length4, int[] jarg4)
static global::System.IntPtr Solver_Try__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static string SolutionCollector_ToStringSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarLocalSearchFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_0 delegate0, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_1 delegate1, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_2 delegate2, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_3 delegate3, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_4 delegate4, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_5 delegate5, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_6 delegate6, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_7 delegate7, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_8 delegate8, IntVarLocalSearchFilter.SwigDelegateIntVarLocalSearchFilter_9 delegate9)
static void Assignment_Activate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchOperatorState_Revert(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static long RoutingDimension_GetCumulVarSoftLowerBoundCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr ModelCache_FindVarArrayConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, int jarg4)
static global::System.IntPtr RoutingModel_AddResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVarVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int DefaultPhaseParameters_display_level_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeFixedDurationStartSyncedOnStartIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr RoutingModel_GetDimensionOrDie(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr Solver_MakeMax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntervalVar_EndsAfterStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingIndexManager_GetEndIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_GetVehicleTypeContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DecisionBuilder_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr RoutingModel_ResourceGroup_GetResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void TypeRegulationsConstraint_Post(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void IntExpr_WhenRange__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string Solver_ModelName(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void SearchMonitor_EndNextDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_RoutingModel_VariableValuePair(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsMemberCt__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr RoutingModel_CompactAndCheckAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVar_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_RankNotFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void Assignment_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingModel_Next(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int SearchMonitorVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Demon_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void IntVarLocalSearchFilter_OnSynchronizeSwigExplicitIntVarLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVar_WhenDomain__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr RoutingDimension_GetSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_IntTupleSet(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Int64VectorVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_AddConstantDimension(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4, string jarg5)
static void SequenceVarElement_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_ReSeed(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long IntervalVar_OldEndMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetObjectiveMaxFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static bool BaseLns_HasFragmentsSwigExplicitBaseLns(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SequenceVar_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeSymmetryManager__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void PropagationMonitor_EndProcessingIntegerVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntExpr_IndexOf__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_Int64Vector(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVarElement_PerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_EndsAtStartWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static long Solver_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static global::System.IntPtr TypeRequirementChecker_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeProd__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void LocalSearchFilter_RelaxSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeIsEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr IntervalVarVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Solver_CheckFail(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationBaseObject_SetVariableToCleanOnFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string RevPartialSequence_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeRandomLnsOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void Pack_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void OptimizeVar_RefuteDecisionSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarLocalSearchOperator_AddVars(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIntVar__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void BooleanVar_SetMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static string SolutionCollector_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_Solver__SWIG_1(string jarg1, int parameters_size, byte[] jarg2)
static void Int64VectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void RevBool_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static long RoutingModel_End(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_GetDimensionResourceGroupIndex(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeDecision(global::System.Runtime.InteropServices.HandleRef jarg1, SolverToVoid jarg2, SolverToVoid jarg3)
static void RoutingDimension_SetCumulVarRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static string IntVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_IsVehicleUsed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static uint LocalSearchFilterVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_GetDisjunctionIndices(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeCumulative__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4, string jarg5)
static void SearchLimit_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Solver_NextSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakePhase__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, LongLongToLong jarg4)
static global::System.IntPtr AssignmentIntContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_ClearObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_ResourceGroup_SetAllowedResourcesForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int length3, int[] jarg3)
static int RoutingModel_GetNumberOfVisitTypes(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeScheduleOrExpedite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, ref int jarg4)
static global::System.IntPtr Solver_MakeIsGreaterOrEqualCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeSumLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void DecisionVisitor_VisitScheduleOrPostpone(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void ModelCache_InsertVoidConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void IntervalVarVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetDurationRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static int Assignment_NumIntVars(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_SetFixedCostOfAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr SolutionCollector_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RegularLimit_MakeCloneSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetCumulVarSoftUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static void SolutionCollector_InstallSwigExplicitSolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5)
static void RoutingModel_NodeNeighborsParameters_num_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RegularLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntervalVarVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr SequenceVarElement_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_AlternativeNodeIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_MapTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAssignVariablesValuesOrDoNothing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void delete_SimpleBoundCosts(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DefaultPhaseParameters_heuristic_period_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int PathsMetadata_GetPath(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static bool LocalSearchFilter_IsIncremental(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IsGreater__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DefaultPhaseParameters_initialization_splits_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool Pack_IsPossible(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void Assignment_SetPerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool Solver_SolveAndCommit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RegularLimit_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ImprovementSearchLimit_SWIGUpcast(global::System.IntPtr jarg1)
static void IntVarLocalSearchOperator_Start(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool IntervalVar_IsPerformedBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilter_Commit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SearchMonitor_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Solver_IsLocalSearchProfilingEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsGreaterOrEqualVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr SolutionCollector_LastSolutionOrNull(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetDeliveryPosition(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_IntervalVarVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSearchTrace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr new_IntBoolPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)
static string DecisionBuilder_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_IncrementNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1)
static string Solver_Context(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long SolutionCollector_ObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int IntVarLocalSearchFilter_Index(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SolutionCollector_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void IntVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_LocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModel(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_AfterDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void IntervalVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void Assignment_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint IntervalVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_SearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMirrorInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ModelVisitor_BeginVisitModel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void IntVectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long IntVarLocalSearchFilter_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Assignment_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static void delete_Int64VectorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DefaultPhaseParameters_run_all_heuristics_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void SymmetryBreakerVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_Deactivate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int IntervalVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIntVar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, string jarg3)
static global::System.IntPtr Assignment_MutableIntervalVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarLocalSearchFilter_AddVars(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_CloseModel(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorState_CheckPoint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool DefaultPhaseParameters_use_last_conflict_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetSameActivityIndicesOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeAssignVariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static long IntVarLocalSearchOperator_Value(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static uint LocalSearchOperatorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetPairIndicesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ObjectiveMonitor_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntervalVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingModel_ResourceGroup_GetResourceClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_ClearLocalSearchState(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentSequenceContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_SetStartValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static string SequenceVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_GetDisjunctionPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool Assignment_ObjectiveBoundFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void LocalSearchFilter_Reset(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Assignment_IntVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_IntervalVarElement(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilderVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RoutingModel_AddRouteConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Pack_ClearAll(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionCollector_Add__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Solver_Solve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingModel_GetSameActivityIndicesOfGroup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeDisjunctiveConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static global::System.IntPtr Solver_MakeAssignVariableValueOrDoNothing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_NodeNeighborIterator(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Solver_FilteredNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSumGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void IntervalVar_WhenStartRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static long IntervalVar_OldStartMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVar_WhenEndRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static global::System.IntPtr new_SequenceVarElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int LocalSearchFilterVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool PathsMetadata_IsEnd(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DefaultPhaseParameters_var_selection_schema_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string OptimizeVar_ToStringSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeElement__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int NodeNeighborIterator_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static string IntVarIterator_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_RoutingModel_ResourceGroup_Attributes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr LocalSearchOperatorState_CandidateIndicesChanged(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_GetSameActivityGroupsCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeScalProdLessOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4)
static global::System.IntPtr Solver_MakeNonEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void RoutingModel_AddLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int SimpleBoundCosts_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchOperatorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVar_WhenBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static int LocalSearchFilterManager_FilterEvent_event_type_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_MakeGuidedSlackFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3)
static void delete_AssignmentElement(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BaseLns_InitFragments(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingDimension_GetBreakIntervalsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_IntervalVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_TypeRegulationsConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static long SolutionCollector_Value(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_TypeRequirementChecker(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentIntContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)
static global::System.IntPtr Solver_GetPropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_DefaultPhaseParameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLog_Maintain(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AddWeightedSumOfAssignedDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RegularLimit_InstallSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentIntervalContainer_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int RoutingModel_GetNumOfSingletonNodes(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsLessOrEqualCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void PropagationMonitor_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_CompactAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Pack_AddCountAssignedItemsDimension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool ObjectiveMonitor_AcceptDelta(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long IntervalVar_OldStartMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetUnperformed(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static void Assignment_DeactivateObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_VariableValuePair_var_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr AssignmentIntContainer_FastAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void AssignmentIntervalContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int IntTupleSet_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_GetDimensionAttributesForClass(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static string IntervalVarElement_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_VisitIntegerVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool Solver_CheckAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchMonitor_EndFiltering(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr IntExpr_IsGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long IntervalVarElement_PerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntervalVar_StartsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long LocalSearchFilter_GetSynchronizedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_IsVehicleUsedWhenEmpty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntervalVar_EndsAtEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr BooleanVar_IsDifferent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeDistribute__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int length4, long[] jarg4)
static void delete_ImprovementSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PickupDeliveryPair(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr AssignmentIntervalContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr RoutingModel_ApplyLocks(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void SequenceVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Assignment_ObjectiveMinFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool SearchLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchOperator_Start(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVarVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchFilterVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int AssignmentSequenceContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetDimensionsWithLocalCumulOptimizers(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_BeginVisitExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr new_ImprovementSearchLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, double jarg6, int jarg7)
static void SearchMonitor_RestartSearchSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIsGreaterCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr Solver_MakeIntVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4)
static uint Int64Vector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr CastConstraint_TargetVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static void IntVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int RoutingModel_PickupDeliveryPosition_alternative_index_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchMonitor_EndOperatorStart(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVarLocalSearchOperator_SkipUnchangedSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelCache_InsertVarArrayConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int jarg5)
static global::System.IntPtr RoutingModel_GetDisjunctionNodeIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_GetRequiredTypeAlternativesWhenAddingType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeNoCycle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongToBoolean jarg4)
static bool RoutingModel_IsVehicleAllowedForIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static void DecisionBuilderVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AddHardTypeIncompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntervalVar_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeIsDifferentCstVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RegularLimit_CheckWithOffsetSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingDimension_Transits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, int length3, long[] jarg3)
static void IntervalVar_SetEndMax(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RegularLimit_MakeIdenticalClone(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelCache_InsertExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5)
static bool RegularLimit_IsUncheckedSolutionLimitReachedSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_PropagationBaseObject(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVarVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeFixedDurationEndSyncedOnStartIntervalVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr Solver_MakeNBestLexicographicValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr RoutingModel_GetRouteCost(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static long RegularLimit_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_RandomConcatenateOperators__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SymmetryBreakerVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingDimension_AddNodePrecedence(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static uint IntVarVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetSameVehicleRequiredTypeAlternativesOfType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ImprovementSearchLimit_CheckWithOffset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr BooleanVar_SWIGUpcast(global::System.IntPtr jarg1)
static void Pack_AssignFirstPossibleToBin(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingIndexManager_GetNumberOfNodes(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_PathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ModelCache_FindVarConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int jarg4)
static global::System.IntPtr Solver_MakeOperator__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static bool DecisionBuilderVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeDistribute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5)
static void Assignment_SetObjectiveRangeFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4)
static void Pack_Propagate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_AssignmentToRoutes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int len3_1, int[] len3_2, long[] jarg3)
static global::System.IntPtr IntervalVar_EndsAfterEndWithDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int RoutingModel_GetSameActivityGroupOfIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr SequenceVar_Next(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_Decision(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool AssignmentIntervalContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLog_EndInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionCollector_AddObjective(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_RoutingModel_SecondaryOptimizer(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_SolveFromAssignmentWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int search_parameters_size, byte[] jarg3)
static global::System.IntPtr Solver_MakeIsMemberCt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr IntVarLocalSearchFilter_Var(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SequenceVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingModel_IsStart(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePhase__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, LongLongLongToBoolean jarg4)
static int SymmetryBreakerVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchMonitor_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVarElement_DurationMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, bool jarg6)
static void RoutingDimension_SetSlackCostCoefficientForAllVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void PropagationMonitor_StartProcessingIntegerVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeScalProd__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void delete_SymmetryBreaker(global::System.Runtime.InteropServices.HandleRef jarg1)
static int SolutionCollector_SolutionCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilderVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNonOverlappingBoxesConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void LocalSearchOperatorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static int RegularLimit_ProgressPercentSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Int64Vector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void LocalSearchOperatorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SequenceVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_NodeNeighborsByCostClass_IsNeighborhoodArcForCostClass(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, long jarg4)
static bool RoutingModel_ArcIsMoreConstrainedThanArc(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static global::System.IntPtr Solver_MakeAssignVariablesValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static void IntervalVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_ActiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Assignment_DeactivateObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLog_AcceptUncheckedNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr ModelCache_solver(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ModelCache_FindExprExprConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static int RoutingModel_AddDisjunction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2, long jarg3)
static global::System.IntPtr new_LocalSearchFilterVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLexicographicSimulatedAnnealing(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4, int length5, long[] jarg5)
static void RoutingModel_SetPathEnergyCostsOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4, long jarg5, long jarg6, int jarg7)
static bool SearchMonitorVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void AssignmentIntContainer_Store(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLimit__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5)
static void RoutingModel_PickupDeliveryPosition_alternative_index_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr BooleanVar_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Int64VectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static long RoutingModel_UnperformedPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int RoutingModel_ResourceGroup_AddResource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Int64Vector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static global::System.IntPtr Solver_MakeSymmetryManager__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void DecisionVisitor_VisitSplitVariableDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, bool jarg4)
static global::System.IntPtr Constraint_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr new_LocalSearchOperatorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeRandomLnsOperator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4)
static global::System.IntPtr Solver_MakeLexicographicOptimize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, long[] jarg4)
static int RegularLimit_ProgressPercent(global::System.Runtime.InteropServices.HandleRef jarg1)
static string RoutingModel_DebugOutputAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)
static global::System.IntPtr RoutingModel_Solve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Assignment_DurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntervalVarVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr IntExpr_IsGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchMonitor_AfterDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static void IntervalVar_WhenPerformedBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static void ModelCache_InsertExprExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5)
static global::System.IntPtr AssignmentSequenceContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static int RoutingModel_GetVisitTypePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static long Assignment_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void ImprovementSearchLimit_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long BaseObjectiveMonitor_Step(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int IntervalVarVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVar_IsGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeIntervalRelaxedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_LocalSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNBestValueSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, bool jarg4)
static int RoutingModel_GetVisitType(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int Assignment_NumObjectives(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePhase__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, LongLongToLong jarg4, LongToLong jarg5)
static void SearchMonitor_InstallSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool DecisionBuilderVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingDimension_GetTransitValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static global::System.IntPtr RoutingIndexManager_NodesToIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static bool SearchMonitor_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DecisionBuilderVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntervalVar_StartsAfter(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_GetVehiclesRequiringAResource(global::System.Runtime.InteropServices.HandleRef jarg1)
static void BooleanVar_RestoreValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingDimension_Model(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeOpposite(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool ObjectiveMonitor_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_SymmetryBreakerVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GlobalSpanCostCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1)
static int LocalSearchFilterVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeRestoreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int RoutingModel_GetNumberOfDisjunctions(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIndexExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void delete_PropagationMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_Solver(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_NewSearchAux__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5)
static global::System.IntPtr RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentElement_Activate(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3)
static void Constraint_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Constraint.SwigDelegateConstraint_0 delegate0, Constraint.SwigDelegateConstraint_1 delegate1, Constraint.SwigDelegateConstraint_2 delegate2, Constraint.SwigDelegateConstraint_3 delegate3, Constraint.SwigDelegateConstraint_4 delegate4)
static void AssignmentSequenceContainer_CopyIntersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarLocalSearchFilter_OnSynchronize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeSimulatedAnnealing(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5)
static void DefaultPhaseParameters_display_level_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RegularLimit_AcceptSwigExplicitRegularLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntervalVar_StartsAtStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakePhase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4)
static void Pack_AddWeightedSumLessOrEqualConstantDimension__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, LongToLong jarg2, int length3, long[] jarg3)
static void RoutingModel_SetMaximumNumberOfActiveVehicles(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeScalProdLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, long jarg4)
static long Assignment_PerformedMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIntVar__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static string RegularLimit_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNonOverlappingNonStrictBoxesConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void SearchMonitorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static global::System.IntPtr Solver_MakeAssignVariablesValuesOrFail(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static bool IntervalVarVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_Attributes_EndDomain(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_VehicleTypeContainer_type_index_of_vehicle_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string OptimizeVar_NameSwigExplicitOptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_SymmetryBreakerVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchOperatorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void DefaultPhaseParameters_decision_builder_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Pack_SetAssigned(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int Solver_Rand32(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr AssignmentIntContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Solver_Fail(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Solver_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_OptimizeVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static long DisjunctiveConstraint_TransitionTime(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void Int64VectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RevPartialSequence_RankFirst(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool RoutingModel_ResourceGroup_VehicleRequiresAResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Assignment_SetDurationMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_GetDimensionResourceGroupIndices(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_Compose__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static uint Int64VectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static long BooleanVar_Max(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_GetDisjunctionPenaltyCostBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_BaseIntExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Assignment_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr SearchMonitorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntervalVar_EndsAtEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVarLocalSearchOperator_Deactivate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVar_SetPerformed(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr Solver_MakeSumObjectiveFilter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongLongToLong jarg3, int jarg4)
static long IntervalVarElement_StartMin(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Int64Vector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool RoutingModel_HasSameVehicleTypeRequirements(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_Activated__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingModel_ObjectiveLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_SetAllowedVehiclesForIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, long jarg3)
static void Int64Vector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr IntervalVar_DurationExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_ConcatenateOperators__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr AssignmentIntContainer_AddAtPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr IntervalVar_SWIGUpcast(global::System.IntPtr jarg1)
static void RoutingModel_VariableValuePair_value_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeCount__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void IntVectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint IntervalVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr LocalSearchMonitor_SWIGUpcast(global::System.IntPtr jarg1)
static uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeIntVar__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static global::System.IntPtr IntervalVar_EndsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeLimit__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, long jarg5, bool jarg6)
static void Assignment_SetMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_NextVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVar_WhenDurationBound__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, VoidToVoid jarg2)
static int BooleanVar_VarType(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVarElement_SetEndMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void BaseLns_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, BaseLns.SwigDelegateBaseLns_0 delegate0, BaseLns.SwigDelegateBaseLns_1 delegate1, BaseLns.SwigDelegateBaseLns_2 delegate2, BaseLns.SwigDelegateBaseLns_3 delegate3, BaseLns.SwigDelegateBaseLns_4 delegate4, BaseLns.SwigDelegateBaseLns_5 delegate5, BaseLns.SwigDelegateBaseLns_6 delegate6, BaseLns.SwigDelegateBaseLns_7 delegate7, BaseLns.SwigDelegateBaseLns_8 delegate8)
static bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVarVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SequenceVar_RankNotFirst(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeDelayedConstraintInitialPropagateCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingModel_CheckLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr AssignmentSequenceContainer_Element__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool IntBoolPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, LocalSearchFilter.SwigDelegateLocalSearchFilter_0 delegate0, LocalSearchFilter.SwigDelegateLocalSearchFilter_1 delegate1, LocalSearchFilter.SwigDelegateLocalSearchFilter_2 delegate2, LocalSearchFilter.SwigDelegateLocalSearchFilter_3 delegate3, LocalSearchFilter.SwigDelegateLocalSearchFilter_4 delegate4, LocalSearchFilter.SwigDelegateLocalSearchFilter_5 delegate5, LocalSearchFilter.SwigDelegateLocalSearchFilter_6 delegate6, LocalSearchFilter.SwigDelegateLocalSearchFilter_7 delegate7, LocalSearchFilter.SwigDelegateLocalSearchFilter_8 delegate8, LocalSearchFilter.SwigDelegateLocalSearchFilter_9 delegate9)
static global::System.IntPtr new_ChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeWeightedOptimize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int length4, int[] jarg4, long jarg5)
static global::System.IntPtr Solver_MakeLastSolutionCollector__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SymmetryBreaker_AddIntegerVariableLessOrEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void PropagationMonitor_EndConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool AssignmentIntervalContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool SymmetryBreakerVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_UpdateTimeLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int AssignmentIntContainer_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLess__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, bool jarg5, string jarg6)
static global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_AddObjectives(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr SearchLimit_MakeClone(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Pack_IsUndecided(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr RoutingDimension_CumulVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeIsDifferentCstCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr SequenceVar_Interval(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SymmetryBreakerVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long Solver_AcceptedNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool PathsMetadata_IsStart(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Pack_OneDomain(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeConvexPiecewiseExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5, long jarg6)
static int ObjectiveMonitor_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static int DecisionBuilderVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntExpr_IsDifferent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Demon_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Demon.SwigDelegateDemon_0 delegate0, Demon.SwigDelegateDemon_1 delegate1, Demon.SwigDelegateDemon_2 delegate2)
static void SearchMonitorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool Assignment_Activated__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_SetVehicleUsedWhenEmpty(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, int jarg3)
static global::System.IntPtr Solver_MakeDelayedPathCumul(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void SymmetryBreakerVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_Try__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeSolveOnce__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_Add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool Solver_HasName(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVar_SetEndRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr SequenceVarElement_Unperformed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeRankFirstInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void IntVectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingDimension_TransitVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DecisionVisitor_VisitRankFirstInterval(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static bool SearchMonitor_LocalOptimumSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Demon_Inhibit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Assignment_SetPerformedValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr new_LocalSearchFilterManager__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchFilter_CommitSwigExplicitLocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long SolutionCollector_Branches(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingIndexManager_GetNumberOfVehicles(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Constraint_IsCastConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntervalVar_EndsAt(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr SearchLog_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Assignment_FastAdd__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SolutionCollector_Add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_GetSameVehicleClassArcs(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static int LocalSearchOperatorVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntervalVar_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_RegisterIntVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void BoundCost_bound_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DecisionBuilderVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Assignment_AddObjective(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool BaseLns_NextFragment(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLessOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool ChangeValue_MakeOneNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeMoveTowardTargetOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr IntVar_SWIGUpcast(global::System.IntPtr jarg1)
static int Solver_State(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_ResourceGroup_GetResourceIndicesPerClass(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ImprovementSearchLimit_AtSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilterVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool RoutingDimension_HasQuadraticCostSoftSpanUpperBounds(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Solver_SolveAndCommit__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void delete_RoutingModel_NodeNeighborsParameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RegularLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_EnterSearchSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DecisionBuilder_NextWrapper(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SequenceVarVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingDimension_SetSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static bool ChangeValue_MakeOneNeighborSwigExplicitChangeValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool LocalSearchOperatorVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void RoutingModel_SetFirstSolutionHint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_RankLast(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8)
static void RoutingModel_ResourceGroup_NotifyVehicleRequiresAResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_PreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_SetValues(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3)
static global::System.IntPtr RoutingModel_Solve__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool BaseObjectiveMonitor_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_IntVectorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool AssignmentSequenceContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SearchMonitor.SwigDelegateSearchMonitor_0 delegate0, SearchMonitor.SwigDelegateSearchMonitor_1 delegate1, SearchMonitor.SwigDelegateSearchMonitor_2 delegate2, SearchMonitor.SwigDelegateSearchMonitor_3 delegate3, SearchMonitor.SwigDelegateSearchMonitor_4 delegate4, SearchMonitor.SwigDelegateSearchMonitor_5 delegate5, SearchMonitor.SwigDelegateSearchMonitor_6 delegate6, SearchMonitor.SwigDelegateSearchMonitor_7 delegate7, SearchMonitor.SwigDelegateSearchMonitor_8 delegate8, SearchMonitor.SwigDelegateSearchMonitor_9 delegate9, SearchMonitor.SwigDelegateSearchMonitor_10 delegate10, SearchMonitor.SwigDelegateSearchMonitor_11 delegate11, SearchMonitor.SwigDelegateSearchMonitor_12 delegate12, SearchMonitor.SwigDelegateSearchMonitor_13 delegate13, SearchMonitor.SwigDelegateSearchMonitor_14 delegate14, SearchMonitor.SwigDelegateSearchMonitor_15 delegate15, SearchMonitor.SwigDelegateSearchMonitor_16 delegate16, SearchMonitor.SwigDelegateSearchMonitor_17 delegate17, SearchMonitor.SwigDelegateSearchMonitor_18 delegate18, SearchMonitor.SwigDelegateSearchMonitor_19 delegate19, SearchMonitor.SwigDelegateSearchMonitor_20 delegate20, SearchMonitor.SwigDelegateSearchMonitor_21 delegate21, SearchMonitor.SwigDelegateSearchMonitor_22 delegate22, SearchMonitor.SwigDelegateSearchMonitor_23 delegate23, SearchMonitor.SwigDelegateSearchMonitor_24 delegate24)
static void ModelVisitor_VisitSequenceVariable(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_ResourceGroup_GetResources(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntervalVar_CannotBePerformed(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_RevPartialSequence__SWIG_0(int length1, int[] jarg1)
static global::System.IntPtr Solver_MakeIsLessCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static int RoutingModel_GetVehicleClassesCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr DisjunctiveConstraint_SequenceVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Demon_Desinhibit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingDimension_HasSoftSpanUpperBounds(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_GetUnaryDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DefaultPhaseParameters_value_selection_schema_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr ModelCache_FindVarArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static string PropagationMonitor_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_DecisionBuilderVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntVarLocalSearchOperator_OldValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVar_WhenEndBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_ForwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchMonitor_ApplyDecisionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeTransitionConstraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int length5, int[] jarg5)
static void SearchMonitor_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_RegisterIntExpr(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool LocalSearchOperator_HoldsDelta(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeNBestValueSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)
static global::System.IntPtr Solver_MakeNestedOptimize__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, long jarg5, global::System.Runtime.InteropServices.HandleRef jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, global::System.Runtime.InteropServices.HandleRef jarg8, global::System.Runtime.InteropServices.HandleRef jarg9)
static void IntervalVarVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr RoutingModel_VehicleVar(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_IntegerCastInfo_maintainer_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool IntVarLocalSearchOperator_HoldsDeltaSwigExplicitIntVarLocalSearchOperator(global::System.Runtime.InteropServices.HandleRef jarg1)
static int Demon_PrioritySwigExplicitDemon(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_Install(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string Decision_ToStringSwigExplicitDecision(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_LocalSearchFilterVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static int PathsMetadata_NumPaths(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Assignment_Contains__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeSumEquality__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeDiv__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void SolutionCollector_EnterSearch(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Decision_AcceptSwigExplicitDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_AddDimensionWithVehicleCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3, int length4, long[] jarg4, bool jarg5, string jarg6)
static void PropagationMonitor_PopContext(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr TypeIncompatibilityChecker_SWIGUpcast(global::System.IntPtr jarg1)
static void RoutingModel_AddPickupAndDelivery(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void IntervalVarVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVarLocalSearchOperator_Activate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_BoundCost(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4)
static void PropagationBaseObject_FreezeQueue(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVarElement_EndMax(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint IntVarVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingDimension_FixedTransits(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SequenceVarVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_NodeNeighborsByCostClass_ComputeNeighbors(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static int RoutingModel_RegisterTransitMatrix(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2)
static global::System.IntPtr IntExpr_Member__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2)
static global::System.IntPtr IntervalVar_EndExpr(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_SolutionCollector(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVar_IsLessOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr DecisionBuilderVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int Solver_SearchLeftDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntBoolPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntVarVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr RoutingModel_MutablePreAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr BooleanVar_IsGreaterOrEqual(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool SearchLimit_Check(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GetSlackCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int RoutingDimension_GetPostTravelEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelCache_InsertVarArrayConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5)
static global::System.IntPtr Solver_MakeOperator__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static global::System.IntPtr Solver_MakeAbs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_SetMin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static int Solver_SearchDepth(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_SetStartMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void IntervalVar_WhenPerformedBound__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_Max(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_MutableSequenceVarContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DefaultPhaseParameters_use_last_conflict_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr RoutingModel_GetOrCreateNodeNeighborsByCostClass__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, bool jarg5)
static long IntVarElement_Value(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingModel_VehicleTypeContainer_NumTypes(global::System.Runtime.InteropServices.HandleRef jarg1)
static int RoutingDimension_GetPreTravelEvaluatorOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_Pack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr new_TypeRequirementChecker(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool SearchMonitor_AcceptSolutionSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SolutionCollector_Add__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_Int64VectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntervalVar_WasPerformedBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModelVisitor_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static string RoutingDimension_Name(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchMonitor_EndNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingModel_AddMatrixDimension(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2, long jarg3, bool jarg4, string jarg5)
static void SequenceVarVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr SolutionCollector_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr RoutingModel_CostVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_AssignAllRemainingItems(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Decision_SWIGUpcast(global::System.IntPtr jarg1)
static void BooleanVar_WhenRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RoutingModel_GetResourceGroups(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_HasVehicleWithCostClassIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelVisitor_EndVisitModel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void delete_DecisionBuilderVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntTupleSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void AssignmentSequenceContainer_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_IntVarLocalSearchOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void SequenceVarElement_Restore(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_RoutingModel_VehicleTypeContainer(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetObjectiveRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void SearchMonitor_BeginInitialPropagationSwigExplicitSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OptimizeVar_BeginNextDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeNoCycle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, LongToBoolean jarg4, bool jarg5)
static global::System.IntPtr RoutingModel_GetFirstSolutionHint(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool RoutingModel_AddDimensionWithCumulDependentVehicleTransitAndCapacity(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, int[] jarg2, int length3, int[] jarg3, long jarg4, int length5, long[] jarg5, bool jarg6, string jarg7)
static void IntervalVarElement_Reset(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_Min(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Assignment_Add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeScalProdEquality__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, long jarg4)
static global::System.IntPtr Solver_MakeSplitVariableDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, bool jarg4)
static global::System.IntPtr Int64VectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SearchMonitorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_VehicleTypeContainer_VehicleClassEntry_fixed_cost_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static int RoutingModel_GetVehicleClassIndexOfVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Assignment_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr RegularLimit_SWIGUpcast(global::System.IntPtr jarg1)
static global::System.IntPtr Solver_MakeGreaterOrEqual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool BaseLns_HasFragments(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_BaseLns(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_IndexOf__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static void Assignment_SetObjectiveValueFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static global::System.IntPtr Solver_MakeTimeLimit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntervalVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PickupDeliveryPair_pickup_alternatives_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void SearchMonitorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void AssignmentIntContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingModel_NodeNeighborsParameters_add_vehicle_starts_to_neighbors_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr PathsMetadata_Ends(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntExpr_Accept(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_LocalSearchFilter(global::System.Runtime.InteropServices.HandleRef jarg1)
static void RoutingDimension_SetSlackCostCoefficientForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, int jarg3)
static global::System.IntPtr Solver_MakeIndexOfFirstMaxValueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_IntVectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarLocalSearchOperator_RevertChanges(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static global::System.IntPtr IntervalVar_StartsAtEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr ModelCache_FindExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void delete_SequenceVarVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelVisitor_EndVisitConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr IntervalVar_CrossesDate(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr RoutingModel_VehicleTypeContainer_type_index_of_vehicle_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SearchLimit_BeginNextDecisionSwigExplicitSearchLimit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string Demon_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static int AlternativeNodeIterator_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ModelCache_FindExprExprConstantExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, int jarg5)
static void RoutingModel_CloseModelWithParameters(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2)
static global::System.IntPtr OptimizeVar_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeElement__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, LongLongToLong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static void IntervalVarElement_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Solver_MakeFixedDurationIntervalVar__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5)
static int RoutingIndexManager_GetNumberOfIndices(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVar_SetValues(global::System.Runtime.InteropServices.HandleRef jarg1, int length2, long[] jarg2)
static global::System.IntPtr Solver_MakeSubCircuit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakePhase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, LongToLong jarg3, int jarg4)
static void RoutingModel_AddRouteConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr Solver_MakeModulo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr RoutingDimension_Slacks(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr AssignmentSequenceContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool RoutingDimension_HasBreakConstraints(global::System.Runtime.InteropServices.HandleRef jarg1)
static long IntervalVarElement_StartValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeInversePermutationConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool SolveModelWithSat(global::System.Runtime.InteropServices.HandleRef jarg1, int search_parameters_size, byte[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)
static global::System.IntPtr Solver_MakeBetweenCt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)
static void delete_RoutingModel_ResourceGroup_Attributes(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntExpr_Var(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeDistribute__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5)
static global::System.IntPtr Solver_MakeNonEquality__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static global::System.IntPtr LocalSearchFilter_SWIGUpcast(global::System.IntPtr jarg1)
static long RoutingIndexManager_GetStartIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr SequenceVarElement_BackwardSequence(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLastSolutionCollector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingModel_GetHomogeneousCost(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void SearchLimit_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SearchLimit.SwigDelegateSearchLimit_0 delegate0, SearchLimit.SwigDelegateSearchLimit_1 delegate1, SearchLimit.SwigDelegateSearchLimit_2 delegate2, SearchLimit.SwigDelegateSearchLimit_3 delegate3, SearchLimit.SwigDelegateSearchLimit_4 delegate4, SearchLimit.SwigDelegateSearchLimit_5 delegate5, SearchLimit.SwigDelegateSearchLimit_6 delegate6, SearchLimit.SwigDelegateSearchLimit_7 delegate7, SearchLimit.SwigDelegateSearchLimit_8 delegate8, SearchLimit.SwigDelegateSearchLimit_9 delegate9, SearchLimit.SwigDelegateSearchLimit_10 delegate10, SearchLimit.SwigDelegateSearchLimit_11 delegate11, SearchLimit.SwigDelegateSearchLimit_12 delegate12, SearchLimit.SwigDelegateSearchLimit_13 delegate13, SearchLimit.SwigDelegateSearchLimit_14 delegate14, SearchLimit.SwigDelegateSearchLimit_15 delegate15, SearchLimit.SwigDelegateSearchLimit_16 delegate16, SearchLimit.SwigDelegateSearchLimit_17 delegate17, SearchLimit.SwigDelegateSearchLimit_18 delegate18, SearchLimit.SwigDelegateSearchLimit_19 delegate19, SearchLimit.SwigDelegateSearchLimit_20 delegate20, SearchLimit.SwigDelegateSearchLimit_21 delegate21, SearchLimit.SwigDelegateSearchLimit_22 delegate22, SearchLimit.SwigDelegateSearchLimit_23 delegate23, SearchLimit.SwigDelegateSearchLimit_24 delegate24, SearchLimit.SwigDelegateSearchLimit_25 delegate25, SearchLimit.SwigDelegateSearchLimit_26 delegate26, SearchLimit.SwigDelegateSearchLimit_27 delegate27, SearchLimit.SwigDelegateSearchLimit_28 delegate28)
static void Int64VectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static string SearchLog_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Pack_SetImpossible(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static bool AreAllBoundTo(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_IntVarVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ImprovementSearchLimit_Init(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DecisionBuilder_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool AssignmentIntContainer_AreAllElementsBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static long LocalSearchFilterManager_GetAcceptedObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_PathsMetadata(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLimit__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeFixedInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4)
static void RoutingModel_AddSearchMonitor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr ModelCache_FindVarArrayConstantArrayExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, long[] jarg3, int jarg4)
static global::System.IntPtr Solver_MakeIndexOfFirstMinValueConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr new_SequenceVarVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Solver_Solve__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Int64VectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void RoutingModel_AddWeightedVariableMaximizedByFinalizer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void OptimizeVar_RefuteDecision(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long IntervalVarElement_EndValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeDefaultSolutionPool(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakePack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static void IntVar_WhenDomain__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeIntConst__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void delete_IntVarElement(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeSearchLog__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, VoidToString jarg4)
static void delete_RevBool(global::System.Runtime.InteropServices.HandleRef jarg1)
static string LocalSearchFilterManager_ToStringSwigExplicitLocalSearchFilterManager(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Solver_MakeLimit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4, long jarg5)
static global::System.IntPtr new_RoutingModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static long RoutingDimension_GetGlobalOptimizerOffset(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationBaseObject_EnqueueVar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void LocalSearchFilterVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Solver_MakeLocalSearchPhaseParameters__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6)
static bool SearchLimit_IsCrossed(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_EndNestedConstraintInitialPropagation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int RoutingModel_ResourceGroup_Index(global::System.Runtime.InteropServices.HandleRef jarg1)
static void PropagationMonitor_RankSequence(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, int length4, int[] jarg4, int length5, int[] jarg5)
static global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchMonitor_BeginFiltering(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint IntVectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreakerVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void LocalSearchFilter_Relax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Solver_MakeMaximize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingDimension_GetQuadraticCostSoftSpanUpperBoundForVehicle(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_LocalSearchPhaseParameters(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Solver_MakeLess__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)
static long Solver_GetGuidedLocalSearchPenalty(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)
static bool Solver_SolveAndCommit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static long Solver_DemonRuns(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string Solver_LocalSearchProfile(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetDurationMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void Assignment_ActivateObjectiveFromIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void RoutingModel_VehicleTypeContainer_sorted_vehicle_classes_per_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVar_RemoveInterval(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void LocalSearchMonitor_EndFilterNeighbor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr BaseObjectiveMonitor_ObjectiveVar(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Solver_Neighbors(global::System.Runtime.InteropServices.HandleRef jarg1)
static string OptimizeVar_ToString(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Assignment_SetValue(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static global::System.IntPtr RoutingModel_GetResourceGroup(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int SequenceVarVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long RoutingModel_VariableValuePair_value_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntervalVarElement_SetPerformedRange(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr Solver_MakeOperator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void RoutingDimension_InitializeBreaks(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ModelCache_FindExprExprExpression(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4)
static void LocalSearchOperatorState_SetCandidateActive(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, bool jarg3)
static void SequenceVarVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Solver_MakeCumulative__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int length3, int[] jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, string jarg5)
static global::System.IntPtr SequenceVarElement_Clone(global::System.Runtime.InteropServices.HandleRef jarg1)
static int LocalSearchFilterManager_FilterEvent_priority_get(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SymmetryBreaker_AddIntegerVariableEqualValueClause(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static void Assignment_Activate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void PropagationMonitor_SetStartMax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)
static bool RoutingModel_RoutesToAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, int len2_1, int[] len2_2, long[] jarg2, bool jarg3, bool jarg4, global::System.Runtime.InteropServices.HandleRef jarg5)
static void LocalSearchOperatorState_SetCandidateValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)
static global::System.IntPtr BaseIntExpr_CastToVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVarElement_Copy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool IntVar_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void DefaultPhaseParameters_persistent_impact_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static bool IntVarLocalSearchOperator_ApplyChanges(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool RoutingModel_CheckIfAssignmentIsFeasible(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)
static global::System.IntPtr IntExpr_VarWithName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr IntervalVar_StartsAfterEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static long Assignment_PerformedMin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
delegate long LongLongToLong(long t, long u)
Used to wrap IndexEvaluator2 (std::function<int64_t(int64_t, int64_t)>)
delegate long LongLongLongToLong(long t, long u, long v)
Used to wrap IndexEvaluator3 (std::function<int64_t(int64_t, int64_t, int64_t)>)
delegate bool VoidToBoolean()
Used to wrap std::function<bool()>
delegate void LongToVoid(long t)
Used to wrap ObjectiveWatcher (std::function<void(int64_t)>)
delegate void SolverToVoid(Solver s)
Used to wrap std::function<void(Solver*)>
delegate int LongToInt(long t)
Used to wrap std::function<int(int64_t)>
delegate long IntIntToLong(int t, int u)
Used to wrap std::function<int64_t(int, int)>
delegate string VoidToString()
Used to wrap DisplayCallback (std::function<std::string()>)
delegate long LongToLong(long t)
Used to wrap IndexEvaluator1 (std::function<int64_t(int64_t)>)
delegate void VoidToVoid()
Used to wrap Closure (std::function<void()>)
delegate bool LongLongLongToBoolean(long t, long u, long v)
Used to wrap std::function<bool(int64_t, int64_t, int64_t)>
delegate bool LongToBoolean(long t)
Used to wrap IndexFilter1 (std::function<bool(int64_t)>)