15 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
18 internal Int64Matrix(global::System.IntPtr cPtr,
bool cMemoryOwn) {
20 swigCPtr =
new global::System.Runtime.InteropServices.HandleRef(
this, cPtr);
23 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(
Int64Matrix obj) {
24 return (obj ==
null) ?
new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero) : obj.swigCPtr;
27 internal static global::System.Runtime.InteropServices.HandleRef swigRelease(
Int64Matrix obj) {
30 throw new global::System.ApplicationException(
"Cannot release ownership as memory is not owned");
31 global::System.Runtime.InteropServices.HandleRef ptr = obj.swigCPtr;
32 obj.swigCMemOwn =
false;
36 return new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero);
46 global::System.GC.SuppressFinalize(
this);
49 protected virtual void Dispose(
bool disposing) {
51 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
56 swigCPtr =
new global::System.Runtime.InteropServices.HandleRef(
null, global::System.IntPtr.Zero);
61 public Int64Matrix(global::System.Collections.IEnumerable c) : this() {
63 throw new global::System.ArgumentNullException(
"c");
69 public Int64Matrix(global::System.Collections.Generic.IEnumerable<Int64Vector> c) : this() {
71 throw new global::System.ArgumentNullException(
"c");
89 public Int64Vector
this[
int index] {
91 return getitem(index);
94 setitem(index, value);
100 return (
int)capacity();
103 if (value < 0 || (uint)value < size())
104 throw new global::System.ArgumentOutOfRangeException(
"Capacity");
105 reserve((uint)value);
127 public void CopyTo(Int64Vector[] array)
140 throw new global::System.ArgumentNullException(
"array");
142 throw new global::System.ArgumentOutOfRangeException(
"index",
"Value is less than zero");
144 throw new global::System.ArgumentOutOfRangeException(
"arrayIndex",
"Value is less than zero");
146 throw new global::System.ArgumentOutOfRangeException(
"count",
"Value is less than zero");
148 throw new global::System.ArgumentException(
"Multi dimensional array.",
"array");
149 if (index+count > this.
Count || arrayIndex+count > array.Length)
150 throw new global::System.ArgumentException(
"Number of elements to copy is too large.");
151 for (
int i=0; i<count; i++)
152 array.SetValue(getitemcopy(index+i), arrayIndex+i);
161 global::System.Collections.Generic.IEnumerator<
Int64Vector> global::System.Collections.Generic.IEnumerable<
Int64Vector>.GetEnumerator() {
162 return new Int64MatrixEnumerator(
this);
165 global::System.Collections.IEnumerator global::System.Collections.IEnumerable.GetEnumerator() {
166 return new Int64MatrixEnumerator(
this);
169 public Int64MatrixEnumerator GetEnumerator() {
170 return new Int64MatrixEnumerator(
this);
178 public sealed class Int64MatrixEnumerator : global::System.Collections.IEnumerator
179 , global::System.Collections.Generic.IEnumerator<Int64Vector>
182 private int currentIndex;
183 private object currentObject;
184 private int currentSize;
187 collectionRef = collection;
189 currentObject =
null;
190 currentSize = collectionRef.
Count;
196 if (currentIndex == -1)
197 throw new global::System.InvalidOperationException(
"Enumeration not started.");
198 if (currentIndex > currentSize - 1)
199 throw new global::System.InvalidOperationException(
"Enumeration finished.");
200 if (currentObject ==
null)
201 throw new global::System.InvalidOperationException(
"Collection modified.");
207 object global::System.Collections.IEnumerator.Current {
214 int size = collectionRef.
Count;
215 bool moveOkay = (currentIndex+1 < size) && (size == currentSize);
218 currentObject = collectionRef[currentIndex];
220 currentObject =
null;
225 public void Reset() {
227 currentObject =
null;
228 if (collectionRef.
Count != currentSize) {
229 throw new global::System.InvalidOperationException(
"Collection modified.");
235 currentObject =
null;
246 public void Clear() {
255 private uint size() {
260 private bool empty() {
261 bool ret = operations_research_algorithmsPINVOKE.Int64Matrix_empty(swigCPtr);
265 private uint capacity() {
266 uint ret = operations_research_algorithmsPINVOKE.Int64Matrix_capacity(swigCPtr);
270 private void reserve(uint n) {
271 operations_research_algorithmsPINVOKE.Int64Matrix_reserve(swigCPtr, n);
274 public Int64Matrix(
int capacity) : this(operations_research_algorithmsPINVOKE.new_Int64Matrix__SWIG_2(capacity), true) {
275 if (operations_research_algorithmsPINVOKE.SWIGPendingException.Pending)
throw operations_research_algorithmsPINVOKE.SWIGPendingException.Retrieve();
284 private Int64Vector getitem(
int index) {
285 Int64Vector ret =
new Int64Vector(operations_research_algorithmsPINVOKE.Int64Matrix_getitem(swigCPtr, index),
false);
286 if (operations_research_algorithmsPINVOKE.SWIGPendingException.Pending)
throw operations_research_algorithmsPINVOKE.SWIGPendingException.Retrieve();
290 private void setitem(
int index, Int64Vector val) {
291 operations_research_algorithmsPINVOKE.Int64Matrix_setitem(swigCPtr, index, Int64Vector.getCPtr(val));
292 if (operations_research_algorithmsPINVOKE.SWIGPendingException.Pending)
throw operations_research_algorithmsPINVOKE.SWIGPendingException.Retrieve();
296 operations_research_algorithmsPINVOKE.Int64Matrix_AddRange(swigCPtr,
Int64Matrix.getCPtr(values));
338 public void Reverse(
int index,
int count) {