Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
operations_research_model_builderPINVOKE.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
14
15 protected class SWIGExceptionHelper {
16
17 public delegate void ExceptionDelegate(string message);
18 public delegate void ExceptionArgumentDelegate(string message, string paramName);
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_model_builder")]
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_model_builder")]
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);
177 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="SWIGRegisterStringCallback_operations_research_model_builder")]
179
180 static string CreateString(string cString) {
181 return cString;
182 }
183
184 static SWIGStringHelper() {
186 }
187 }
188
189 static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
190
192 public class SWIGStringWithLengthHelper {
193
194 [global::System.Runtime.InteropServices.DllImport("operations_research_model_builder", EntryPoint="SWIG_csharp_string_to_c")]
195 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);
196
197 [global::System.Runtime.InteropServices.DllImport("operations_research_model_builder", EntryPoint="SWIG_csharp_string_size")]
198 private static extern int SWIG_csharp_string_size(global::System.IntPtr str);
199
200 [global::System.Runtime.InteropServices.DllImport("operations_research_model_builder", EntryPoint="SWIG_csharp_string_str")]
201 private static extern global::System.IntPtr SWIG_csharp_string_str(global::System.IntPtr str);
202
203 public static global::System.IntPtr SWIG_csharp_string_to_c(string str) {
204 if (str == null)
205 return global::System.IntPtr.Zero;
206 global::System.Text.Encoding utf8 = global::System.Text.Encoding.UTF8;
207 return SWIG_csharp_string_to_c0(utf8.GetByteCount(str), str.Length, str);
208 }
209
210 public static string SWIG_c_to_csharp_string(global::System.IntPtr str) {
211 int size = SWIG_csharp_string_size(str);
212 if (size > 0) {
213 global::System.IntPtr s = SWIG_csharp_string_str(str);
214 byte[] b = new byte[size];
215 global::System.Runtime.InteropServices.Marshal.Copy(s, b, 0, size);
216 global::System.Text.Encoding utf8 = global::System.Text.Encoding.UTF8;
217 return utf8.GetString(b);
218 }
219 return null;
220 }
221 }
222
223
224 static operations_research_model_builderPINVOKE() {
225 }
226
227
228 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_IntVector__SWIG_0___")]
229 public static extern global::System.IntPtr new_IntVector__SWIG_0();
230
231 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_IntVector__SWIG_1___")]
232 public static extern global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
233
234 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Clear___")]
235 public static extern void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
236
237 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Add___")]
238 public static extern void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
239
240 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_size___")]
241 public static extern uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
242
243 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_empty___")]
244 public static extern bool IntVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
245
246 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_capacity___")]
247 public static extern uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
248
249 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_reserve___")]
250 public static extern void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
251
252 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_IntVector__SWIG_2___")]
253 public static extern global::System.IntPtr new_IntVector__SWIG_2(int jarg1);
254
255 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_getitemcopy___")]
256 public static extern int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
257
258 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_getitem___")]
259 public static extern int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
260
261 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_setitem___")]
262 public static extern void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
263
264 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_AddRange___")]
265 public static extern void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
266
267 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_GetRange___")]
268 public static extern global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
269
270 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Insert___")]
271 public static extern void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
272
273 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_InsertRange___")]
274 public static extern void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
275
276 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_RemoveAt___")]
277 public static extern void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
278
279 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_RemoveRange___")]
280 public static extern void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
281
282 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Repeat___")]
283 public static extern global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2);
284
285 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Reverse__SWIG_0___")]
286 public static extern void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
287
288 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Reverse__SWIG_1___")]
289 public static extern void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
290
291 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_SetRange___")]
292 public static extern void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
293
294 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Contains___")]
295 public static extern bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
296
297 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_IndexOf___")]
298 public static extern int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
299
300 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_LastIndexOf___")]
301 public static extern int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
302
303 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_IntVector_Remove___")]
304 public static extern bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
305
306 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_delete_IntVector___")]
307 public static extern void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1);
308
309 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_DoubleVector__SWIG_0___")]
310 public static extern global::System.IntPtr new_DoubleVector__SWIG_0();
311
312 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_DoubleVector__SWIG_1___")]
313 public static extern global::System.IntPtr new_DoubleVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
314
315 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Clear___")]
316 public static extern void DoubleVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1);
317
318 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Add___")]
319 public static extern void DoubleVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
320
321 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_size___")]
322 public static extern uint DoubleVector_size(global::System.Runtime.InteropServices.HandleRef jarg1);
323
324 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_empty___")]
325 public static extern bool DoubleVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
326
327 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_capacity___")]
328 public static extern uint DoubleVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1);
329
330 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_reserve___")]
331 public static extern void DoubleVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
332
333 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_DoubleVector__SWIG_2___")]
334 public static extern global::System.IntPtr new_DoubleVector__SWIG_2(int jarg1);
335
336 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_getitemcopy___")]
337 public static extern double DoubleVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
338
339 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_getitem___")]
340 public static extern double DoubleVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
341
342 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_setitem___")]
343 public static extern void DoubleVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
344
345 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_AddRange___")]
346 public static extern void DoubleVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
347
348 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_GetRange___")]
349 public static extern global::System.IntPtr DoubleVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
350
351 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Insert___")]
352 public static extern void DoubleVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
353
354 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_InsertRange___")]
355 public static extern void DoubleVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
356
357 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_RemoveAt___")]
358 public static extern void DoubleVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
359
360 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_RemoveRange___")]
361 public static extern void DoubleVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
362
363 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Repeat___")]
364 public static extern global::System.IntPtr DoubleVector_Repeat(double jarg1, int jarg2);
365
366 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Reverse__SWIG_0___")]
367 public static extern void DoubleVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
368
369 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Reverse__SWIG_1___")]
370 public static extern void DoubleVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
371
372 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_SetRange___")]
373 public static extern void DoubleVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
374
375 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Contains___")]
376 public static extern bool DoubleVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
377
378 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_IndexOf___")]
379 public static extern int DoubleVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
380
381 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_LastIndexOf___")]
382 public static extern int DoubleVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
383
384 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_DoubleVector_Remove___")]
385 public static extern bool DoubleVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
386
387 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_delete_DoubleVector___")]
388 public static extern void delete_DoubleVector(global::System.Runtime.InteropServices.HandleRef jarg1);
389
390 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_OverwriteModel___")]
391 public static extern void ModelBuilderHelper_OverwriteModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
392
393 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ReadModelFromProtoFile___")]
394 public static extern bool ModelBuilderHelper_ReadModelFromProtoFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
395
396 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_WriteModelToProtoFile___")]
397 public static extern bool ModelBuilderHelper_WriteModelToProtoFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
398
399 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ImportFromMpsString___")]
400 public static extern bool ModelBuilderHelper_ImportFromMpsString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
401
402 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ImportFromMpsFile___")]
403 public static extern bool ModelBuilderHelper_ImportFromMpsFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
404
405 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ImportFromLpString___")]
406 public static extern bool ModelBuilderHelper_ImportFromLpString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
407
408 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ImportFromLpFile___")]
409 public static extern bool ModelBuilderHelper_ImportFromLpFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
410
411 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddVar___")]
412 public static extern int ModelBuilderHelper_AddVar(global::System.Runtime.InteropServices.HandleRef jarg1);
413
414 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetVarLowerBound___")]
415 public static extern void ModelBuilderHelper_SetVarLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
416
417 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetVarUpperBound___")]
418 public static extern void ModelBuilderHelper_SetVarUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
419
420 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetVarIntegrality___")]
421 public static extern void ModelBuilderHelper_SetVarIntegrality(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
422
423 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetVarObjectiveCoefficient___")]
424 public static extern void ModelBuilderHelper_SetVarObjectiveCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
425
426 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetVarName___")]
427 public static extern void ModelBuilderHelper_SetVarName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
428
429 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VarLowerBound___")]
430 public static extern double ModelBuilderHelper_VarLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
431
432 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VarUpperBound___")]
433 public static extern double ModelBuilderHelper_VarUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
434
435 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VarIsIntegral___")]
436 public static extern bool ModelBuilderHelper_VarIsIntegral(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
437
438 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VarObjectiveCoefficient___")]
439 public static extern double ModelBuilderHelper_VarObjectiveCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
440
441 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VarName___")]
442 public static extern string ModelBuilderHelper_VarName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
443
444 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintLowerBound___")]
445 public static extern double ModelBuilderHelper_ConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
446
447 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintUpperBound___")]
448 public static extern double ModelBuilderHelper_ConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
449
450 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddLinearConstraint___")]
451 public static extern int ModelBuilderHelper_AddLinearConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
452
453 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintName___")]
454 public static extern string ModelBuilderHelper_ConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
455
456 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintCoefficients___")]
457 public static extern global::System.IntPtr ModelBuilderHelper_ConstraintCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
458
459 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintVarIndices___")]
460 public static extern global::System.IntPtr ModelBuilderHelper_ConstraintVarIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
461
462 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddConstraintTerm___")]
463 public static extern void ModelBuilderHelper_AddConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
464
465 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ClearConstraintTerms___")]
466 public static extern void ModelBuilderHelper_ClearConstraintTerms(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
467
468 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SafeAddConstraintTerm___")]
469 public static extern void ModelBuilderHelper_SafeAddConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
470
471 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetConstraintCoefficient___")]
472 public static extern void ModelBuilderHelper_SetConstraintCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
473
474 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetConstraintLowerBound___")]
475 public static extern void ModelBuilderHelper_SetConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
476
477 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetConstraintName___")]
478 public static extern void ModelBuilderHelper_SetConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
479
480 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetConstraintUpperBound___")]
481 public static extern void ModelBuilderHelper_SetConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
482
483 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedIndicatorValue___")]
484 public static extern bool ModelBuilderHelper_EnforcedIndicatorValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
485
486 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_IsEnforcedConstraint___")]
487 public static extern bool ModelBuilderHelper_IsEnforcedConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
488
489 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedConstraintLowerBound___")]
490 public static extern double ModelBuilderHelper_EnforcedConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
491
492 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedConstraintUpperBound___")]
493 public static extern double ModelBuilderHelper_EnforcedConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
494
495 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddEnforcedLinearConstraint___")]
496 public static extern int ModelBuilderHelper_AddEnforcedLinearConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
497
498 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedIndicatorVariableIndex___")]
499 public static extern int ModelBuilderHelper_EnforcedIndicatorVariableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
500
501 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedConstraintName___")]
502 public static extern string ModelBuilderHelper_EnforcedConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
503
504 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedConstraintCoefficients___")]
505 public static extern global::System.IntPtr ModelBuilderHelper_EnforcedConstraintCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
506
507 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_EnforcedConstraintVarIndices___")]
508 public static extern global::System.IntPtr ModelBuilderHelper_EnforcedConstraintVarIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
509
510 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddEnforcedConstraintTerm___")]
511 public static extern void ModelBuilderHelper_AddEnforcedConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
512
513 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ClearEnforcedConstraintTerms___")]
514 public static extern void ModelBuilderHelper_ClearEnforcedConstraintTerms(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
515
516 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SafeAddEnforcedConstraintTerm___")]
517 public static extern void ModelBuilderHelper_SafeAddEnforcedConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
518
519 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedConstraintCoefficient___")]
520 public static extern void ModelBuilderHelper_SetEnforcedConstraintCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4);
521
522 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedConstraintLowerBound___")]
523 public static extern void ModelBuilderHelper_SetEnforcedConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
524
525 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedConstraintName___")]
526 public static extern void ModelBuilderHelper_SetEnforcedConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
527
528 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedConstraintUpperBound___")]
529 public static extern void ModelBuilderHelper_SetEnforcedConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
530
531 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedIndicatorValue___")]
532 public static extern void ModelBuilderHelper_SetEnforcedIndicatorValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
533
534 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetEnforcedIndicatorVariableIndex___")]
535 public static extern void ModelBuilderHelper_SetEnforcedIndicatorVariableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
536
537 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ConstraintsCount___")]
538 public static extern int ModelBuilderHelper_ConstraintsCount(global::System.Runtime.InteropServices.HandleRef jarg1);
539
540 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_VariablesCount___")]
541 public static extern int ModelBuilderHelper_VariablesCount(global::System.Runtime.InteropServices.HandleRef jarg1);
542
543 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_Name___")]
544 public static extern string ModelBuilderHelper_Name(global::System.Runtime.InteropServices.HandleRef jarg1);
545
546 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetName___")]
547 public static extern void ModelBuilderHelper_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
548
549 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ClearObjective___")]
550 public static extern void ModelBuilderHelper_ClearObjective(global::System.Runtime.InteropServices.HandleRef jarg1);
551
552 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_Maximize___")]
553 public static extern bool ModelBuilderHelper_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1);
554
555 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetMaximize___")]
556 public static extern void ModelBuilderHelper_SetMaximize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
557
558 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ObjectiveOffset___")]
559 public static extern double ModelBuilderHelper_ObjectiveOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
560
561 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_SetObjectiveOffset___")]
562 public static extern void ModelBuilderHelper_SetObjectiveOffset(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
563
564 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ClearHints___")]
565 public static extern void ModelBuilderHelper_ClearHints(global::System.Runtime.InteropServices.HandleRef jarg1);
566
567 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_AddHint___")]
568 public static extern void ModelBuilderHelper_AddHint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3);
569
570 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ExportToMpsString___")]
571 public static extern string ModelBuilderHelper_ExportToMpsString(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
572
573 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_ExportToLpString___")]
574 public static extern string ModelBuilderHelper_ExportToLpString(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
575
576 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelBuilderHelper_WriteToMpsFile___")]
577 public static extern bool ModelBuilderHelper_WriteToMpsFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
578
579 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_ModelBuilderHelper___")]
580 public static extern global::System.IntPtr new_ModelBuilderHelper();
581
582 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_delete_ModelBuilderHelper___")]
583 public static extern void delete_ModelBuilderHelper(global::System.Runtime.InteropServices.HandleRef jarg1);
584
585 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_delete_MbLogCallback___")]
586 public static extern void delete_MbLogCallback(global::System.Runtime.InteropServices.HandleRef jarg1);
587
588 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_MbLogCallback_NewMessage___")]
589 public static extern void MbLogCallback_NewMessage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
590
591 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_MbLogCallback___")]
592 public static extern global::System.IntPtr new_MbLogCallback();
593
594 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_MbLogCallback_director_connect___")]
595 public static extern void MbLogCallback_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, MbLogCallback.SwigDelegateMbLogCallback_0 delegate0);
596
597 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_new_ModelSolverHelper___")]
598 public static extern global::System.IntPtr new_ModelSolverHelper(string jarg1);
599
600 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_SolverIsSupported___")]
601 public static extern bool ModelSolverHelper_SolverIsSupported(global::System.Runtime.InteropServices.HandleRef jarg1);
602
603 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_Solve___")]
604 public static extern void ModelSolverHelper_Solve(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
605
606 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_InterruptSolve___")]
607 public static extern bool ModelSolverHelper_InterruptSolve(global::System.Runtime.InteropServices.HandleRef jarg1);
608
609 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_SetLogCallbackFromDirectorClass___")]
610 public static extern void ModelSolverHelper_SetLogCallbackFromDirectorClass(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
611
612 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_ClearLogCallback___")]
613 public static extern void ModelSolverHelper_ClearLogCallback(global::System.Runtime.InteropServices.HandleRef jarg1);
614
615 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_HasResponse___")]
616 public static extern bool ModelSolverHelper_HasResponse(global::System.Runtime.InteropServices.HandleRef jarg1);
617
618 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_HasSolution___")]
619 public static extern bool ModelSolverHelper_HasSolution(global::System.Runtime.InteropServices.HandleRef jarg1);
620
621 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_Status___")]
622 public static extern int ModelSolverHelper_Status(global::System.Runtime.InteropServices.HandleRef jarg1);
623
624 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_ObjectiveValue___")]
625 public static extern double ModelSolverHelper_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1);
626
627 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_BestObjectiveBound___")]
628 public static extern double ModelSolverHelper_BestObjectiveBound(global::System.Runtime.InteropServices.HandleRef jarg1);
629
630 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_VariableValue___")]
631 public static extern double ModelSolverHelper_VariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
632
633 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_ReducedCost___")]
634 public static extern double ModelSolverHelper_ReducedCost(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
635
636 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_DualValue___")]
637 public static extern double ModelSolverHelper_DualValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
638
639 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_Activity___")]
640 public static extern double ModelSolverHelper_Activity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
641
642 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_StatusString___")]
643 public static extern string ModelSolverHelper_StatusString(global::System.Runtime.InteropServices.HandleRef jarg1);
644
645 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_WallTime___")]
646 public static extern double ModelSolverHelper_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1);
647
648 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_UserTime___")]
649 public static extern double ModelSolverHelper_UserTime(global::System.Runtime.InteropServices.HandleRef jarg1);
650
651 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_SetTimeLimitInSeconds___")]
652 public static extern void ModelSolverHelper_SetTimeLimitInSeconds(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
653
654 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_SetSolverSpecificParameters___")]
655 public static extern void ModelSolverHelper_SetSolverSpecificParameters(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
656
657 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_ModelSolverHelper_EnableOutput___")]
658 public static extern void ModelSolverHelper_EnableOutput(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
659
660 [global::System.Runtime.InteropServices.DllImport("google-ortools-native", EntryPoint="CSharp_GooglefOrToolsfModelBuilder_delete_ModelSolverHelper___")]
661 public static extern void delete_ModelSolverHelper(global::System.Runtime.InteropServices.HandleRef jarg1);
662}
664}
delegate void SwigDelegateMbLogCallback_0(string message)
static void SWIGRegisterExceptionCallbacks_operations_research_model_builder(ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)
static void SWIGRegisterExceptionCallbacksArgument_operations_research_model_builder(ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)
static void SWIGRegisterStringCallback_operations_research_model_builder(SWIGStringDelegate stringDelegate)
static global::System.IntPtr new_IntVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelBuilderHelper_SetEnforcedConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void ModelSolverHelper_SetLogCallbackFromDirectorClass(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr new_IntVector__SWIG_2(int jarg1)
static global::System.IntPtr IntVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static global::System.IntPtr DoubleVector_Repeat(double jarg1, int jarg2)
static void DoubleVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static double ModelBuilderHelper_VarUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelBuilderHelper_VarObjectiveCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetEnforcedIndicatorVariableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void IntVector_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void DoubleVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static double ModelSolverHelper_UserTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr ModelBuilderHelper_ConstraintCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_OverwriteModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static global::System.IntPtr ModelBuilderHelper_ConstraintVarIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ModelBuilderHelper_IsEnforcedConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelBuilderHelper_EnforcedConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr DoubleVector_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void ModelBuilderHelper_SetEnforcedConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void delete_ModelBuilderHelper(global::System.Runtime.InteropServices.HandleRef jarg1)
static double DoubleVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelBuilderHelper_ConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetConstraintCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static bool DoubleVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void ModelSolverHelper_SetTimeLimitInSeconds(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static int DoubleVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static uint IntVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelBuilderHelper_SetVarObjectiveCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void IntVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void IntVector_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void ModelBuilderHelper_SetObjectiveOffset(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void ModelBuilderHelper_SetEnforcedConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void ModelBuilderHelper_SafeAddConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static int ModelBuilderHelper_ConstraintsCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void DoubleVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void delete_ModelSolverHelper(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static double DoubleVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SafeAddEnforcedConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static bool ModelBuilderHelper_Maximize(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DoubleVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void DoubleVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static bool ModelSolverHelper_SolverIsSupported(global::System.Runtime.InteropServices.HandleRef jarg1)
static string ModelBuilderHelper_ExportToLpString(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static void ModelBuilderHelper_AddHint(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void ModelSolverHelper_SetSolverSpecificParameters(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static global::System.IntPtr ModelBuilderHelper_EnforcedConstraintVarIndices(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetVarUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static bool ModelSolverHelper_HasResponse(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool IntVector_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string ModelBuilderHelper_VarName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static uint IntVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DoubleVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int ModelSolverHelper_Status(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelSolverHelper_EnableOutput(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double ModelSolverHelper_VariableValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelSolverHelper_ReducedCost(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static double ModelBuilderHelper_ObjectiveOffset(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelSolverHelper_Solve(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void delete_DoubleVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static string ModelBuilderHelper_ExportToMpsString(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static int ModelBuilderHelper_EnforcedIndicatorVariableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ModelBuilderHelper_WriteModelToProtoFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void IntVector_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void DoubleVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static void ModelBuilderHelper_ClearConstraintTerms(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ModelSolverHelper_InterruptSolve(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelBuilderHelper_AddConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static int IntVector_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetMaximize(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)
static double ModelSolverHelper_BestObjectiveBound(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ModelBuilderHelper_AddEnforcedLinearConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_MbLogCallback(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void DoubleVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint DoubleVector_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static string ModelBuilderHelper_ConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetConstraintLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static bool DoubleVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static double ModelBuilderHelper_EnforcedConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ModelSolverHelper_HasSolution(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelBuilderHelper_SetVarName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static int IntVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr IntVector_Repeat(int jarg1, int jarg2)
static void delete_IntVector(global::System.Runtime.InteropServices.HandleRef jarg1)
static double ModelSolverHelper_WallTime(global::System.Runtime.InteropServices.HandleRef jarg1)
static double ModelSolverHelper_DualValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetEnforcedIndicatorValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)
static int ModelBuilderHelper_VariablesCount(global::System.Runtime.InteropServices.HandleRef jarg1)
static void ModelBuilderHelper_ClearObjective(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ModelBuilderHelper_ImportFromLpFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int ModelBuilderHelper_AddLinearConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)
static string ModelBuilderHelper_Name(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_Add(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void IntVector_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static global::System.IntPtr new_DoubleVector__SWIG_2(int jarg1)
static double ModelSolverHelper_ObjectiveValue(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DoubleVector_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static double ModelSolverHelper_Activity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelSolverHelper_ClearLogCallback(global::System.Runtime.InteropServices.HandleRef jarg1)
static int ModelBuilderHelper_AddVar(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ModelBuilderHelper_VarIsIntegral(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void MbLogCallback_NewMessage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static void IntVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static bool ModelBuilderHelper_ImportFromMpsFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static int DoubleVector_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static global::System.IntPtr ModelBuilderHelper_EnforcedConstraintCoefficients(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_ModelSolverHelper(string jarg1)
static bool IntVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool ModelBuilderHelper_WriteToMpsFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)
static void ModelBuilderHelper_ClearEnforcedConstraintTerms(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void DoubleVector_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static bool ModelBuilderHelper_ImportFromLpString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool DoubleVector_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)
static bool ModelBuilderHelper_ReadModelFromProtoFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool IntVector_empty(global::System.Runtime.InteropServices.HandleRef jarg1)
static void DoubleVector_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int IntVector_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void ModelBuilderHelper_SetEnforcedConstraintCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static void ModelBuilderHelper_AddEnforcedConstraintTerm(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, double jarg4)
static void ModelBuilderHelper_SetVarLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, double jarg3)
static void DoubleVector_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void ModelBuilderHelper_SetConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)
static void ModelBuilderHelper_ClearHints(global::System.Runtime.InteropServices.HandleRef jarg1)
static string ModelSolverHelper_StatusString(global::System.Runtime.InteropServices.HandleRef jarg1)
static uint DoubleVector_capacity(global::System.Runtime.InteropServices.HandleRef jarg1)
static void IntVector_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static string ModelBuilderHelper_EnforcedConstraintName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static global::System.IntPtr new_DoubleVector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)
static bool ModelBuilderHelper_ImportFromMpsString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)
static bool ModelBuilderHelper_EnforcedIndicatorValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelBuilderHelper_ConstraintUpperBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static double ModelBuilderHelper_VarLowerBound(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static void MbLogCallback_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, MbLogCallback.SwigDelegateMbLogCallback_0 delegate0)
static void IntVector_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void ModelBuilderHelper_SetVarIntegrality(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)
static int IntVector_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)