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 
14 public class RoutingIndexManager {
15  private transient long swigCPtr;
16  protected transient boolean swigCMemOwn;
17 
18  protected RoutingIndexManager(long cPtr, boolean cMemoryOwn) {
19  swigCMemOwn = cMemoryOwn;
20  swigCPtr = cPtr;
21  }
22 
23  protected static long getCPtr(RoutingIndexManager obj) {
24  return (obj == null) ? 0 : obj.swigCPtr;
25  }
26 
27  @SuppressWarnings("deprecation")
28  protected void finalize() {
29  delete();
30  }
31 
32  public synchronized void delete() {
33  if (swigCPtr != 0) {
34  if (swigCMemOwn) {
35  swigCMemOwn = false;
36  mainJNI.delete_RoutingIndexManager(swigCPtr);
37  }
38  swigCPtr = 0;
39  }
40  }
41 
45  public RoutingIndexManager(int num_nodes, int num_vehicles, int depot) {
46  this(mainJNI.new_RoutingIndexManager__SWIG_0(num_nodes, num_vehicles, depot), true);
47  }
48 
49  public RoutingIndexManager(int num_nodes, int num_vehicles, int[] starts, int[] ends) {
50  this(mainJNI.new_RoutingIndexManager__SWIG_1(num_nodes, num_vehicles, starts, ends), true);
51  }
52 
53  public int getNumberOfNodes() {
54  return mainJNI.RoutingIndexManager_getNumberOfNodes(swigCPtr, this);
55  }
56 
57  public int getNumberOfVehicles() {
58  return mainJNI.RoutingIndexManager_getNumberOfVehicles(swigCPtr, this);
59  }
60 
61  public int getNumberOfIndices() {
62  return mainJNI.RoutingIndexManager_getNumberOfIndices(swigCPtr, this);
63  }
64 
65  public long getStartIndex(int vehicle) {
66  return mainJNI.RoutingIndexManager_getStartIndex(swigCPtr, this, vehicle);
67  }
68 
69  public long getEndIndex(int vehicle) {
70  return mainJNI.RoutingIndexManager_getEndIndex(swigCPtr, this, vehicle);
71  }
72 
73  public long nodeToIndex(int node) {
74  return mainJNI.RoutingIndexManager_nodeToIndex(swigCPtr, this, node);
75  }
76 
77  public long[] nodesToIndices(int[] nodes) {
78  return mainJNI.RoutingIndexManager_nodesToIndices(swigCPtr, this, nodes);
79 }
80 
81  public int indexToNode(long index) {
82  return mainJNI.RoutingIndexManager_indexToNode(swigCPtr, this, index);
83 }
84 
85 }
long getEndIndex(int vehicle)
Manager for any NodeIndex <-> variable index conversion.
int getNumberOfNodes()
RoutingIndexManager(int num_nodes, int num_vehicles, int depot)
Creates a NodeIndex to variable index mapping for a problem containing 'num_nodes',...
RoutingIndexManager(long cPtr, boolean cMemoryOwn)
int getNumberOfIndices()
int getNumberOfVehicles()
int indexToNode(long index)
long getStartIndex(int vehicle)
RoutingIndexManager(int num_nodes, int num_vehicles, int[] starts, int[] ends)
long nodeToIndex(int node)
long[] nodesToIndices(int[] nodes)