DotNet Reference

DotNet Reference

operations_research_utilPINVOKE.cs
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // <auto-generated />
3 //
4 // This file was automatically generated by SWIG (http://www.swig.org).
5 // Version 4.0.1
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 
11 namespace Google.OrTools.Util {
12 
14 
15  protected class SWIGExceptionHelper {
16 
17  public delegate void ExceptionDelegate(string message);
18  public delegate void ExceptionArgumentDelegate(string message, string paramName);
19 
20  static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
21  static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
22  static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
23  static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
24  static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
25  static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
26  static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
27  static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
28  static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
29  static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
30  static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
31 
32  static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
33  static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
34  static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
35 
36  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterExceptionCallbacks_operations_research_util")]
38  ExceptionDelegate applicationDelegate,
39  ExceptionDelegate arithmeticDelegate,
40  ExceptionDelegate divideByZeroDelegate,
41  ExceptionDelegate indexOutOfRangeDelegate,
42  ExceptionDelegate invalidCastDelegate,
43  ExceptionDelegate invalidOperationDelegate,
44  ExceptionDelegate ioDelegate,
45  ExceptionDelegate nullReferenceDelegate,
46  ExceptionDelegate outOfMemoryDelegate,
47  ExceptionDelegate overflowDelegate,
48  ExceptionDelegate systemExceptionDelegate);
49 
50  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_operations_research_util")]
52  ExceptionArgumentDelegate argumentDelegate,
53  ExceptionArgumentDelegate argumentNullDelegate,
54  ExceptionArgumentDelegate argumentOutOfRangeDelegate);
55 
56  static void SetPendingApplicationException(string message) {
57  SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
58  }
59  static void SetPendingArithmeticException(string message) {
60  SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
61  }
62  static void SetPendingDivideByZeroException(string message) {
63  SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
64  }
65  static void SetPendingIndexOutOfRangeException(string message) {
66  SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
67  }
68  static void SetPendingInvalidCastException(string message) {
69  SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
70  }
71  static void SetPendingInvalidOperationException(string message) {
72  SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
73  }
74  static void SetPendingIOException(string message) {
75  SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
76  }
77  static void SetPendingNullReferenceException(string message) {
78  SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
79  }
80  static void SetPendingOutOfMemoryException(string message) {
81  SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
82  }
83  static void SetPendingOverflowException(string message) {
84  SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
85  }
86  static void SetPendingSystemException(string message) {
87  SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
88  }
89 
90  static void SetPendingArgumentException(string message, string paramName) {
91  SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
92  }
93  static void SetPendingArgumentNullException(string message, string paramName) {
94  global::System.Exception e = SWIGPendingException.Retrieve();
95  if (e != null) message = message + " Inner Exception: " + e.Message;
96  SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
97  }
98  static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
99  global::System.Exception e = SWIGPendingException.Retrieve();
100  if (e != null) message = message + " Inner Exception: " + e.Message;
101  SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
102  }
103 
104  static SWIGExceptionHelper() {
106  applicationDelegate,
107  arithmeticDelegate,
108  divideByZeroDelegate,
109  indexOutOfRangeDelegate,
110  invalidCastDelegate,
111  invalidOperationDelegate,
112  ioDelegate,
113  nullReferenceDelegate,
114  outOfMemoryDelegate,
115  overflowDelegate,
116  systemDelegate);
117 
119  argumentDelegate,
120  argumentNullDelegate,
121  argumentOutOfRangeDelegate);
122  }
123  }
124 
126 
127  public class SWIGPendingException {
128  [global::System.ThreadStatic]
129  private static global::System.Exception pendingException = null;
130  private static int numExceptionsPending = 0;
131  private static global::System.Object exceptionsLock = null;
132 
133  public static bool Pending {
134  get {
135  bool pending = false;
136  if (numExceptionsPending > 0)
137  if (pendingException != null)
138  pending = true;
139  return pending;
140  }
141  }
142 
143  public static void Set(global::System.Exception e) {
144  if (pendingException != null)
145  throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
146  pendingException = e;
147  lock(exceptionsLock) {
148  numExceptionsPending++;
149  }
150  }
151 
152  public static global::System.Exception Retrieve() {
153  global::System.Exception e = null;
154  if (numExceptionsPending > 0) {
155  if (pendingException != null) {
156  e = pendingException;
157  pendingException = null;
158  lock(exceptionsLock) {
159  numExceptionsPending--;
160  }
161  }
162  }
163  return e;
164  }
165 
166  static SWIGPendingException() {
167  exceptionsLock = new global::System.Object();
168  }
169  }
170 
171 
172  protected class SWIGStringHelper {
173 
174  public delegate string SWIGStringDelegate(string message);
175  static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
176 
177  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterStringCallback_operations_research_util")]
179 
180  static string CreateString(string cString) {
181  return cString;
182  }
183 
184  static SWIGStringHelper() {
186  }
187  }
188 
190 
191 
193  }
194 
195 
196  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Clear___")]
197  public static extern void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
198 
199  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Add___")]
200  public static extern void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
201 
202  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_size___")]
203  public static extern uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
204 
205  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_capacity___")]
206  public static extern uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
207 
208  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_reserve___")]
209  public static extern void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
210 
211  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVector__SWIG_0___")]
212  public static extern global::System.IntPtr new_IntVector__SWIG_0();
213 
214  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVector__SWIG_1___")]
215  public static extern global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
216 
217  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVector__SWIG_2___")]
218  public static extern global::System.IntPtr new_IntVector__SWIG_2(int jarg1);
219 
220  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_getitemcopy___")]
221  public static extern int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
222 
223  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_getitem___")]
224  public static extern int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
225 
226  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_setitem___")]
227  public static extern void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
228 
229  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_AddRange___")]
230  public static extern void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
231 
232  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_GetRange___")]
233  public static extern global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
234 
235  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Insert___")]
236  public static extern void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
237 
238  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_InsertRange___")]
239  public static extern void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
240 
241  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_RemoveAt___")]
242  public static extern void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
243 
244  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_RemoveRange___")]
245  public static extern void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
246 
247  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Repeat___")]
248  public static extern global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2);
249 
250  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Reverse__SWIG_0___")]
251  public static extern void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
252 
253  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Reverse__SWIG_1___")]
254  public static extern void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
255 
256  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_SetRange___")]
257  public static extern void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
258 
259  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Contains___")]
260  public static extern bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
261 
262  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_IndexOf___")]
263  public static extern int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
264 
265  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_LastIndexOf___")]
266  public static extern int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
267 
268  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVector_Remove___")]
269  public static extern bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
270 
271  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_delete_IntVector___")]
272  public static extern void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1);
273 
274  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Clear___")]
275  public static extern void IntVectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
276 
277  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Add___")]
278  public static extern void IntVectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
279 
280  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_size___")]
281  public static extern uint IntVectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
282 
283  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_capacity___")]
284  public static extern uint IntVectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
285 
286  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_reserve___")]
287  public static extern void IntVectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
288 
289  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVectorVector__SWIG_0___")]
290  public static extern global::System.IntPtr new_IntVectorVector__SWIG_0();
291 
292  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVectorVector__SWIG_1___")]
293  public static extern global::System.IntPtr new_IntVectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
294 
295  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_IntVectorVector__SWIG_2___")]
296  public static extern global::System.IntPtr new_IntVectorVector__SWIG_2(int jarg1);
297 
298  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_getitemcopy___")]
299  public static extern global::System.IntPtr IntVectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
300 
301  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_getitem___")]
302  public static extern global::System.IntPtr IntVectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
303 
304  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_setitem___")]
305  public static extern void IntVectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
306 
307  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_AddRange___")]
308  public static extern void IntVectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
309 
310  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_GetRange___")]
311  public static extern global::System.IntPtr IntVectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
312 
313  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Insert___")]
314  public static extern void IntVectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
315 
316  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_InsertRange___")]
317  public static extern void IntVectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
318 
319  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_RemoveAt___")]
320  public static extern void IntVectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
321 
322  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_RemoveRange___")]
323  public static extern void IntVectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
324 
325  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Repeat___")]
326  public static extern global::System.IntPtr IntVectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
327 
328  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Reverse__SWIG_0___")]
329  public static extern void IntVectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
330 
331  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_Reverse__SWIG_1___")]
332  public static extern void IntVectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
333 
334  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_IntVectorVector_SetRange___")]
335  public static extern void IntVectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
336 
337  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_delete_IntVectorVector___")]
338  public static extern void delete_IntVectorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
339 
340  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Clear___")]
341  public static extern void Int64Vector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
342 
343  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Add___")]
344  public static extern void Int64Vector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
345 
346  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_size___")]
347  public static extern uint Int64Vector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
348 
349  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_capacity___")]
350  public static extern uint Int64Vector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
351 
352  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_reserve___")]
353  public static extern void Int64Vector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
354 
355  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64Vector__SWIG_0___")]
356  public static extern global::System.IntPtr new_Int64Vector__SWIG_0();
357 
358  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64Vector__SWIG_1___")]
359  public static extern global::System.IntPtr new_Int64Vector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
360 
361  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64Vector__SWIG_2___")]
362  public static extern global::System.IntPtr new_Int64Vector__SWIG_2(int jarg1);
363 
364  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_getitemcopy___")]
365  public static extern long Int64Vector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
366 
367  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_getitem___")]
368  public static extern long Int64Vector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
369 
370  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_setitem___")]
371  public static extern void Int64Vector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
372 
373  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_AddRange___")]
374  public static extern void Int64Vector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
375 
376  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_GetRange___")]
377  public static extern global::System.IntPtr Int64Vector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
378 
379  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Insert___")]
380  public static extern void Int64Vector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
381 
382  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_InsertRange___")]
383  public static extern void Int64Vector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
384 
385  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_RemoveAt___")]
386  public static extern void Int64Vector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
387 
388  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_RemoveRange___")]
389  public static extern void Int64Vector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
390 
391  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Repeat___")]
392  public static extern global::System.IntPtr Int64Vector_Repeat(long jarg1, int jarg2);
393 
394  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Reverse__SWIG_0___")]
395  public static extern void Int64Vector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
396 
397  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Reverse__SWIG_1___")]
398  public static extern void Int64Vector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
399 
400  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_SetRange___")]
401  public static extern void Int64Vector_SetRange(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_GooglefOrToolsfUtil_Int64Vector_Contains___")]
404  public static extern bool Int64Vector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
405 
406  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_IndexOf___")]
407  public static extern int Int64Vector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
408 
409  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_LastIndexOf___")]
410  public static extern int Int64Vector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
411 
412  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64Vector_Remove___")]
413  public static extern bool Int64Vector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
414 
415  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_delete_Int64Vector___")]
416  public static extern void delete_Int64Vector(global::System.Runtime.InteropServices.HandleRef jarg1);
417 
418  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Clear___")]
419  public static extern void Int64VectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
420 
421  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Add___")]
422  public static extern void Int64VectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
423 
424  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_size___")]
425  public static extern uint Int64VectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
426 
427  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_capacity___")]
428  public static extern uint Int64VectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
429 
430  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_reserve___")]
431  public static extern void Int64VectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
432 
433  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64VectorVector__SWIG_0___")]
434  public static extern global::System.IntPtr new_Int64VectorVector__SWIG_0();
435 
436  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64VectorVector__SWIG_1___")]
437  public static extern global::System.IntPtr new_Int64VectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
438 
439  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Int64VectorVector__SWIG_2___")]
440  public static extern global::System.IntPtr new_Int64VectorVector__SWIG_2(int jarg1);
441 
442  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_getitemcopy___")]
443  public static extern global::System.IntPtr Int64VectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
444 
445  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_getitem___")]
446  public static extern global::System.IntPtr Int64VectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
447 
448  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_setitem___")]
449  public static extern void Int64VectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
450 
451  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_AddRange___")]
452  public static extern void Int64VectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
453 
454  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_GetRange___")]
455  public static extern global::System.IntPtr Int64VectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
456 
457  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Insert___")]
458  public static extern void Int64VectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
459 
460  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_InsertRange___")]
461  public static extern void Int64VectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
462 
463  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_RemoveAt___")]
464  public static extern void Int64VectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
465 
466  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_RemoveRange___")]
467  public static extern void Int64VectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
468 
469  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Repeat___")]
470  public static extern global::System.IntPtr Int64VectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
471 
472  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Reverse__SWIG_0___")]
473  public static extern void Int64VectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
474 
475  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_Reverse__SWIG_1___")]
476  public static extern void Int64VectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
477 
478  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Int64VectorVector_SetRange___")]
479  public static extern void Int64VectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
480 
481  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_delete_Int64VectorVector___")]
482  public static extern void delete_Int64VectorVector(global::System.Runtime.InteropServices.HandleRef jarg1);
483 
484  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Domain__SWIG_0___")]
485  public static extern global::System.IntPtr new_Domain__SWIG_0();
486 
487  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Domain__SWIG_1___")]
488  public static extern global::System.IntPtr new_Domain__SWIG_1(long jarg1);
489 
490  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_new_Domain__SWIG_2___")]
491  public static extern global::System.IntPtr new_Domain__SWIG_2(long jarg1, long jarg2);
492 
493  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_AllValues___")]
494  public static extern global::System.IntPtr Domain_AllValues();
495 
496  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_FromValues___")]
497  public static extern global::System.IntPtr Domain_FromValues( int length1, long[] jarg1);
498 
499  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_FromIntervals___")]
500  public static extern global::System.IntPtr Domain_FromIntervals(
501  int len1_1, int[] len1_2, long[]
502  jarg1);
503 
504  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_FromFlatIntervals___")]
505  public static extern global::System.IntPtr Domain_FromFlatIntervals( int length1, long[] jarg1);
506 
507  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_FlattenedIntervals___")]
508  public static extern global::System.IntPtr Domain_FlattenedIntervals(global::System.Runtime.InteropServices.HandleRef jarg1);
509 
510  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_IsEmpty___")]
511  public static extern bool Domain_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
512 
513  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Size___")]
514  public static extern long Domain_Size(global::System.Runtime.InteropServices.HandleRef jarg1);
515 
516  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Min___")]
517  public static extern long Domain_Min(global::System.Runtime.InteropServices.HandleRef jarg1);
518 
519  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Max___")]
520  public static extern long Domain_Max(global::System.Runtime.InteropServices.HandleRef jarg1);
521 
522  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Contains___")]
523  public static extern bool Domain_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
524 
525  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Complement___")]
526  public static extern global::System.IntPtr Domain_Complement(global::System.Runtime.InteropServices.HandleRef jarg1);
527 
528  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_Negation___")]
529  public static extern global::System.IntPtr Domain_Negation(global::System.Runtime.InteropServices.HandleRef jarg1);
530 
531  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_IntersectionWith___")]
532  public static extern global::System.IntPtr Domain_IntersectionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
533 
534  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_UnionWith___")]
535  public static extern global::System.IntPtr Domain_UnionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
536 
537  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_AdditionWith___")]
538  public static extern global::System.IntPtr Domain_AdditionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
539 
540  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_Domain_ToString___")]
541  public static extern string Domain_ToString(global::System.Runtime.InteropServices.HandleRef jarg1);
542 
543  [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfUtil_delete_Domain___")]
544  public static extern void delete_Domain(global::System.Runtime.InteropServices.HandleRef jarg1);
545 }
546 
547 }
static global::System.IntPtr IntVectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_Domain__SWIG_2(long jarg1, long jarg2)
delegate void ExceptionDelegate(string message)
static uint Int64VectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntVector__SWIG_0()
static global::System.IntPtr Domain_FromValues(int length1, long[] jarg1)
static void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Int64VectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void Int64Vector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr new_IntVectorVector__SWIG_0()
static global::System.IntPtr new_Int64Vector__SWIG_0()
static bool Domain_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64Vector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint IntVectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static long Domain_Min(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int Int64Vector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static void Int64Vector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVectorVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Int64VectorVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void delete_Domain(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_Int64VectorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Domain_Complement(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Int64Vector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Int64Vector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Int64Vector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr IntVectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void Int64Vector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)
static bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_IntVectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static uint Int64Vector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
delegate void ExceptionArgumentDelegate(string message, string paramName)
static bool Int64Vector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static SWIGStringHelper swigStringHelper
static global::System.IntPtr Domain_IntersectionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static SWIGExceptionHelper swigExceptionHelper
static void Int64Vector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static long Domain_Max(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_IntVectorVector__SWIG_2(int jarg1)
static global::System.IntPtr new_Int64VectorVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string Domain_ToString(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 bool Pending
static void Int64Vector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr IntVectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Int64VectorVector_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Int64Vector_Repeat(long jarg1, int jarg2)
static uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVectorVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr Domain_Negation(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Domain_AllValues()
static void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVectorVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void SWIGRegisterExceptionCallbacks_operations_research_util(ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)
static void Int64Vector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr IntVectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.Exception Retrieve()
static global::System.IntPtr Domain_FromIntervals(int len1_1, int[] len1_2, long[] jarg1)
static global::System.IntPtr new_Int64VectorVector__SWIG_2(int jarg1)
static void Int64Vector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Int64Vector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
static global::System.IntPtr Domain_FromFlatIntervals(int length1, long[] jarg1)
static long Domain_Size(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_Domain__SWIG_1(long jarg1)
static void Int64Vector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Set(global::System.Exception e)
static void IntVectorVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static global::System.IntPtr new_IntVector__SWIG_2(int jarg1)
static void SWIGRegisterExceptionCallbacksArgument_operations_research_util(ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)
static uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static uint IntVectorVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool Domain_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Int64Vector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_Int64Vector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr Int64VectorVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void Int64VectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVectorVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static int Int64Vector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)
delegate string SWIGStringDelegate(string message)
static global::System.IntPtr Int64VectorVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void Int64VectorVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static uint Int64VectorVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_Int64Vector(global::System.Runtime.InteropServices.HandleRef jarg1)
Definition: Domain.cs:11
static void Int64VectorVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVectorVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr Domain_AdditionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void Int64Vector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2)
static global::System.IntPtr new_Int64Vector__SWIG_2(int jarg1)
static global::System.IntPtr new_Int64VectorVector__SWIG_0()
static global::System.IntPtr new_Domain__SWIG_0()
static long Int64Vector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVectorVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static global::System.IntPtr Domain_FlattenedIntervals(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Int64VectorVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void delete_IntVectorVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static void Int64VectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static uint Int64Vector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr Domain_UnionWith(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void IntVectorVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static void SWIGRegisterStringCallback_operations_research_util(SWIGStringDelegate stringDelegate)