Java Reference

Java Reference

SequenceVarLocalSearchHandler.java
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 4.0.2
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
9package 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 @SuppressWarnings("deprecation")
25 protected void finalize() {
26 delete();
27 }
28
29 public synchronized void delete() {
30 if (swigCPtr != 0) {
31 if (swigCMemOwn) {
32 swigCMemOwn = false;
33 mainJNI.delete_SequenceVarLocalSearchHandler(swigCPtr);
34 }
35 swigCPtr = 0;
36 }
37 }
38
40 this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_0(), true);
41 }
42
44 this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_1(SequenceVarLocalSearchHandler.getCPtr(other), other), true);
45 }
46
48 this(mainJNI.new_SequenceVarLocalSearchHandler__SWIG_2(SequenceVarLocalSearchOperator.getCPtr(op), op), true);
49 }
50
51 public void addToAssignment(SequenceVar var, int[] value, boolean active, SWIGTYPE_p_std__vectorT_int_t assignment_indices, long index, Assignment assignment) {
52 mainJNI.SequenceVarLocalSearchHandler_addToAssignment(swigCPtr, this, SequenceVar.getCPtr(var), var, value, active, SWIGTYPE_p_std__vectorT_int_t.getCPtr(assignment_indices), index, Assignment.getCPtr(assignment), assignment);
53 }
54
55 public boolean ValueFromAssignment(Assignment assignment, SequenceVar var, long index, SWIGTYPE_p_std__vectorT_int_t value) {
56 return mainJNI.SequenceVarLocalSearchHandler_ValueFromAssignment(swigCPtr, this, Assignment.getCPtr(assignment), assignment, SequenceVar.getCPtr(var), var, index, SWIGTYPE_p_std__vectorT_int_t.getCPtr(value));
57 }
58
59 public void onRevertChanges(long index, int[] value) {
60 mainJNI.SequenceVarLocalSearchHandler_onRevertChanges(swigCPtr, this, index, value);
61 }
62
63 public void onAddVars() {
64 mainJNI.SequenceVarLocalSearchHandler_onAddVars(swigCPtr, this);
65 }
66
67}
An Assignment is a variable -> domains mapping, used to report solutions to the user.
Definition: Assignment.java:15
void addToAssignment(SequenceVar var, int[] value, boolean active, SWIGTYPE_p_std__vectorT_int_t assignment_indices, long index, Assignment assignment)
boolean ValueFromAssignment(Assignment assignment, SequenceVar var, long index, SWIGTYPE_p_std__vectorT_int_t value)
A sequence variable is a variable whose domain is a set of possible orderings of the interval variab...