IntVarLocalSearchOperatorTemplate.java
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 3.0.12
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8 
9 package com.google.ortools.constraintsolver;
10 
12  private transient long swigCPtr;
13 
14  protected IntVarLocalSearchOperatorTemplate(long cPtr, boolean cMemoryOwn) {
15  super(mainJNI.IntVarLocalSearchOperatorTemplate_SWIGUpcast(cPtr), cMemoryOwn);
16  swigCPtr = cPtr;
17  }
18 
19  protected static long getCPtr(IntVarLocalSearchOperatorTemplate obj) {
20  return (obj == null) ? 0 : obj.swigCPtr;
21  }
22 
23  protected void finalize() {
24  delete();
25  }
26 
27  public synchronized void delete() {
28  if (swigCPtr != 0) {
29  if (swigCMemOwn) {
30  swigCMemOwn = false;
31  mainJNI.delete_IntVarLocalSearchOperatorTemplate(swigCPtr);
32  }
33  swigCPtr = 0;
34  }
35  super.delete();
36  }
37 
38  public boolean HoldsDelta() {
39  return mainJNI.IntVarLocalSearchOperatorTemplate_HoldsDelta(swigCPtr, this);
40  }
41 
42  public boolean isIncremental() {
43  return mainJNI.IntVarLocalSearchOperatorTemplate_isIncremental(swigCPtr, this);
44  }
45 
46  public int size() {
47  return mainJNI.IntVarLocalSearchOperatorTemplate_size(swigCPtr, this);
48  }
49 
50  public long value(long index) {
51  return mainJNI.IntVarLocalSearchOperatorTemplate_value(swigCPtr, this, index);
52  }
53 
54  public IntVar var(long index) {
55  long cPtr = mainJNI.IntVarLocalSearchOperatorTemplate_var(swigCPtr, this, index);
56  return (cPtr == 0) ? null : new IntVar(cPtr, false);
57  }
58 
59  public long oldValue(long index) {
60  return mainJNI.IntVarLocalSearchOperatorTemplate_oldValue(swigCPtr, this, index);
61  }
62 
63  public void setValue(long index, long value) {
64  mainJNI.IntVarLocalSearchOperatorTemplate_setValue(swigCPtr, this, index, value);
65  }
66 
67  public boolean activated(long index) {
68  return mainJNI.IntVarLocalSearchOperatorTemplate_activated(swigCPtr, this, index);
69  }
70 
71  public void activate(long index) {
72  mainJNI.IntVarLocalSearchOperatorTemplate_activate(swigCPtr, this, index);
73  }
74 
75  public void deactivate(long index) {
76  mainJNI.IntVarLocalSearchOperatorTemplate_deactivate(swigCPtr, this, index);
77  }
78 
79  public void addVars(IntVar[] vars) {
80  mainJNI.IntVarLocalSearchOperatorTemplate_addVars(swigCPtr, this, vars);
81  }
82 
83  public void onStart() {
84  mainJNI.IntVarLocalSearchOperatorTemplate_onStart(swigCPtr, this);
85  }
86 
87 }