Google OR-Tools v9.9
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
LocalSearchOperatorState.java
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (https://www.swig.org).
3 * Version 4.2.0
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 LocalSearchOperatorState(long cPtr, boolean cMemoryOwn) {
16 swigCMemOwn = cMemoryOwn;
17 swigCPtr = cPtr;
18 }
19
20 protected static long getCPtr(LocalSearchOperatorState obj) {
21 return (obj == null) ? 0 : obj.swigCPtr;
22 }
23
24 protected static long swigRelease(LocalSearchOperatorState obj) {
25 long ptr = 0;
26 if (obj != null) {
27 if (!obj.swigCMemOwn)
28 throw new RuntimeException("Cannot release ownership as memory is not owned");
29 ptr = obj.swigCPtr;
30 obj.swigCMemOwn = false;
31 obj.delete();
32 }
33 return ptr;
34 }
35
36 @SuppressWarnings({"deprecation", "removal"})
37 protected void finalize() {
38 delete();
39 }
40
41 public synchronized void delete() {
42 if (swigCPtr != 0) {
43 if (swigCMemOwn) {
44 swigCMemOwn = false;
45 mainJNI.delete_LocalSearchOperatorState(swigCPtr);
46 }
47 swigCPtr = 0;
48 }
49 }
50
52 this(mainJNI.new_LocalSearchOperatorState(), true);
53 }
54
56 mainJNI.LocalSearchOperatorState_SetCurrentDomainInjectiveAndKeepInverseValues(swigCPtr, this, max_value);
57 }
58
63 public long CandidateValue(long index) {
64 return mainJNI.LocalSearchOperatorState_CandidateValue(swigCPtr, this, index);
65 }
66
67 public long CommittedValue(long index) {
68 return mainJNI.LocalSearchOperatorState_CommittedValue(swigCPtr, this, index);
69 }
70
71 public long CheckPointValue(long index) {
72 return mainJNI.LocalSearchOperatorState_CheckPointValue(swigCPtr, this, index);
73 }
74
75 public void SetCandidateValue(long index, long value) {
76 mainJNI.LocalSearchOperatorState_SetCandidateValue(swigCPtr, this, index, value);
77 }
78
79 public boolean CandidateIsActive(long index) {
80 return mainJNI.LocalSearchOperatorState_CandidateIsActive(swigCPtr, this, index);
81 }
82
83 public void SetCandidateActive(long index, boolean active) {
84 mainJNI.LocalSearchOperatorState_SetCandidateActive(swigCPtr, this, index, active);
85 }
86
87 public void Commit() {
88 mainJNI.LocalSearchOperatorState_Commit(swigCPtr, this);
89 }
90
91 public void CheckPoint() {
92 mainJNI.LocalSearchOperatorState_CheckPoint(swigCPtr, this);
93 }
94
95 public void Revert(boolean only_incremental) {
96 mainJNI.LocalSearchOperatorState_Revert(swigCPtr, this, only_incremental);
97 }
98
99 public long[] CandidateIndicesChanged() {
100 return mainJNI.LocalSearchOperatorState_CandidateIndicesChanged(swigCPtr, this);
101}
102
104 return mainJNI.LocalSearchOperatorState_IncrementalIndicesChanged(swigCPtr, this);
105}
106
107 public void Resize(int size) {
108 mainJNI.LocalSearchOperatorState_Resize(swigCPtr, this, size);
109 }
110
111 public long CandidateInverseValue(long value) {
112 return mainJNI.LocalSearchOperatorState_CandidateInverseValue(swigCPtr, this, value);
113 }
114
115 public long CommittedInverseValue(long value) {
116 return mainJNI.LocalSearchOperatorState_CommittedInverseValue(swigCPtr, this, value);
117 }
118
119}