Files
ortools-clone/examples/contrib/SimpleRoutingTest.java
Corentin Le Molgat b027e57e95 dotnet: Remove reference to dotnet release command
- Currently not implemented...

Add abseil patch

- Add patches/absl-config.cmake

Makefile: Add abseil-cpp on unix

- Force abseil-cpp SHA1 to 45221cc
  note: Just before the PR #136 which break all CMake

Makefile: Add abseil-cpp on windows

- Force abseil-cpp SHA1 to 45221cc
  note: Just before the PR #136 which break all CMake

CMake: Add abseil-cpp

- Force abseil-cpp SHA1 to 45221cc
  note: Just before the PR #136 which break all CMake

port to absl: C++ Part

- Fix warning with the use of ABSL_MUST_USE_RESULT
  > The macro must appear as the very first part of a function
    declaration or definition:
    ...
    Note: past advice was to place the macro after the argument list.
  src: dependencies/sources/abseil-cpp-master/absl/base/attributes.h:418
- Rename enum after windows clash
- Remove non compact table constraints
- Change index type from int64 to int in routing library
- Fix file_nonport compilation on windows
- Fix another naming conflict with windows (NO_ERROR is a macro)
- Cleanup hash containers; work on sat internals
- Add optional_boolean sub-proto

Sync cpp examples with internal code
- reenable issue173 after reducing number of loops

port to absl: Python Part

- Add back cp_model.INT32_MIN|MAX for examples

Update Python examples

- Add random_tsp.py
- Run words_square example
- Run magic_square in python tests

port to absl: Java Part

- Fix compilation of the new routing parameters in java
- Protect some code from SWIG parsing

Update Java Examples

port to absl: .Net Part

Update .Net examples

work on sat internals; Add C++ CP-SAT CpModelBuilder API; update sample code and recipes to use the new API; sync with internal code

Remove VS 2015 in Appveyor-CI

- abseil-cpp does not support VS 2015...

improve tables

upgrade C++ sat examples to use the new API; work on sat internals

update license dates

rewrite jobshop_ft06_distance.py to use the CP-SAT solver

rename last example

revert last commit

more work on SAT internals

fix
2018-11-30 14:48:55 +01:00

116 lines
3.3 KiB
Java

import com.google.ortools.constraintsolver.Assignment;
import com.google.ortools.constraintsolver.FirstSolutionStrategy;
import com.google.ortools.constraintsolver.IntIntToLong;
import com.google.ortools.constraintsolver.RoutingIndexManager;
import com.google.ortools.constraintsolver.RoutingModel;
import com.google.ortools.constraintsolver.RoutingSearchParameters;
import com.google.ortools.constraintsolver.main;
import java.util.ArrayList;
public class SimpleRoutingTest {
// Static Add Library
static {
System.loadLibrary("jniortools");
}
private ArrayList<Integer> globalRes;
private long globalResCost;
private int[][] costMatrix;
public ArrayList<Integer> getGlobalRes() {
return globalRes;
}
public void setGlobalRes(ArrayList<Integer> globalRes) {
this.globalRes = globalRes;
}
public long getGlobalResCost() {
return globalResCost;
}
public void setGlobalResCost(int globalResCost) {
this.globalResCost = globalResCost;
}
public int[][] getCostMatrix() {
return costMatrix;
}
public void setCostMatrix(int[][] costMatrix) {
this.costMatrix = costMatrix;
}
public SimpleRoutingTest(int[][] costMatrix) {
super();
this.costMatrix = costMatrix;
globalRes = new ArrayList();
}
// Node Distance Evaluation
public static class NodeDistance extends IntIntToLong {
private int[][] costMatrix;
private RoutingIndexManager indexManager;
public NodeDistance(RoutingIndexManager manager, int[][] costMatrix) {
this.costMatrix = costMatrix;
this.indexManager = manager;
}
@Override
public long run(int firstIndex, int secondIndex) {
final int firstNode = indexManager.indexToNode(firstIndex);
final int secondNode = indexManager.indexToNode(secondIndex);
return costMatrix[firstNode][secondNode];
}
}
// Solve Method
public void solve() {
RoutingIndexManager manager = new RoutingIndexManager(costMatrix.length, 1, 0);
RoutingModel routing = new RoutingModel(manager);
RoutingSearchParameters parameters =
RoutingSearchParameters.newBuilder()
.mergeFrom(main.defaultRoutingSearchParameters())
.setFirstSolutionStrategy(FirstSolutionStrategy.Value.PATH_CHEAPEST_ARC)
.build();
NodeDistance distances = new NodeDistance(manager, costMatrix);
routing.setArcCostEvaluatorOfAllVehicles(routing.registerTransitCallback(distances));
Assignment solution = routing.solve();
if (solution != null) {
int route_number = 0;
for (long node = routing.start(route_number);
!routing.isEnd(node);
node = solution.value(routing.nextVar(node))) {
globalRes.add((int) node);
}
}
globalResCost = solution.objectiveValue();
System.out.println("cost = " + globalResCost);
}
public static void main(String[] args) throws Exception {
int[][] values = new int[4][4];
values[0][0] = 0;
values[0][1] = 5;
values[0][2] = 3;
values[0][3] = 6;
values[1][0] = 5;
values[1][1] = 0;
values[1][2] = 8;
values[1][3] = 1;
values[2][0] = 3;
values[2][1] = 8;
values[2][2] = 0;
values[2][3] = 4;
values[3][0] = 6;
values[3][1] = 1;
values[3][2] = 4;
values[3][3] = 0;
SimpleRoutingTest model = new SimpleRoutingTest(values);
model.solve();
}
}