Java Reference

Java Reference

RoutingIndexManager.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.1
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 
11 public class RoutingIndexManager {
12  private transient long swigCPtr;
13  protected transient boolean swigCMemOwn;
14 
15  protected RoutingIndexManager(long cPtr, boolean cMemoryOwn) {
16  swigCMemOwn = cMemoryOwn;
17  swigCPtr = cPtr;
18  }
19 
20  protected static long getCPtr(RoutingIndexManager 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_RoutingIndexManager(swigCPtr);
34  }
35  swigCPtr = 0;
36  }
37  }
38 
39  public RoutingIndexManager(int num_nodes, int num_vehicles, int depot) {
40  this(mainJNI.new_RoutingIndexManager__SWIG_0(num_nodes, num_vehicles, depot), true);
41  }
42 
43  public RoutingIndexManager(int num_nodes, int num_vehicles, int[] starts, int[] ends) {
44  this(mainJNI.new_RoutingIndexManager__SWIG_1(num_nodes, num_vehicles, starts, ends), true);
45  }
46 
47  public int getNumberOfNodes() {
48  return mainJNI.RoutingIndexManager_getNumberOfNodes(swigCPtr, this);
49  }
50 
51  public int getNumberOfVehicles() {
52  return mainJNI.RoutingIndexManager_getNumberOfVehicles(swigCPtr, this);
53  }
54 
55  public int getNumberOfIndices() {
56  return mainJNI.RoutingIndexManager_getNumberOfIndices(swigCPtr, this);
57  }
58 
59  public long nodeToIndex(int node) {
60  return mainJNI.RoutingIndexManager_nodeToIndex(swigCPtr, this, node);
61  }
62 
63  public long[] nodesToIndices(int[] nodes) {
64  return mainJNI.RoutingIndexManager_nodesToIndices(swigCPtr, this, nodes);
65 }
66 
67  public int indexToNode(long index) {
68  return mainJNI.RoutingIndexManager_indexToNode(swigCPtr, this, index);
69 }
70 
71 }
int getNumberOfNodes()
RoutingIndexManager(int num_nodes, int num_vehicles, int depot)
RoutingIndexManager(long cPtr, boolean cMemoryOwn)
int getNumberOfIndices()
int getNumberOfVehicles()
int indexToNode(long index)
RoutingIndexManager(int num_nodes, int num_vehicles, int[] starts, int[] ends)
long nodeToIndex(int node)
long[] nodesToIndices(int[] nodes)