OR-Tools  7.1
SequenceVarLocalSearchHandler.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  protected transient boolean swigCMemOwn;
14 
15  protected SequenceVarLocalSearchHandler(long cPtr, boolean cMemoryOwn) {
16  swigCMemOwn = cMemoryOwn;
17  swigCPtr = cPtr;
18  }
19 
20  protected static long getCPtr(SequenceVarLocalSearchHandler obj) {
21  return (obj == null) ? 0 : obj.swigCPtr;
22  }
23 
24  protected void finalize() {
25  delete();
26  }
27 
28  public synchronized void delete() {
29  if (swigCPtr != 0) {
30  if (swigCMemOwn) {
31  swigCMemOwn = false;
32  mainJNI.delete_SequenceVarLocalSearchHandler(swigCPtr);
33  }
34  swigCPtr = 0;
35  }
36  }
37 
39  this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_0(), true);
40  }
41 
43  this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_1(SequenceVarLocalSearchHandler.getCPtr(other), other), true);
44  }
45 
47  this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_2(SequenceVarLocalSearchOperator.getCPtr(op), op), true);
48  }
49 
50  public void addToAssignment(SequenceVar var, int[] value, long index, Assignment assignment) {
51  mainJNI.SequenceVarLocalSearchHandler_addToAssignment(swigCPtr, this, SequenceVar.getCPtr(var), var, value, index, Assignment.getCPtr(assignment), assignment);
52  }
53 
54  public boolean valueFromAssignent(Assignment assignment, SequenceVar var, long index, SWIGTYPE_p_std__vectorT_int_t value) {
55  return mainJNI.SequenceVarLocalSearchHandler_valueFromAssignent(swigCPtr, this, Assignment.getCPtr(assignment), assignment, SequenceVar.getCPtr(var), var, index, SWIGTYPE_p_std__vectorT_int_t.getCPtr(value));
56  }
57 
58  public void onRevertChanges(long index) {
59  mainJNI.SequenceVarLocalSearchHandler_onRevertChanges(swigCPtr, this, index);
60  }
61 
62  public void onAddVars() {
63  mainJNI.SequenceVarLocalSearchHandler_onAddVars(swigCPtr, this);
64  }
65 
66 }
void addToAssignment(SequenceVar var, int[] value, long index, Assignment assignment)
boolean valueFromAssignent(Assignment assignment, SequenceVar var, long index, SWIGTYPE_p_std__vectorT_int_t value)