From 63a6be219e6306cde9bb90075b19fc04a97aa46f Mon Sep 17 00:00:00 2001 From: oblonski Date: Wed, 11 Mar 2015 18:57:47 +0100 Subject: [PATCH] prepare release - update whats_new --- WHATS_NEW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index 7a4cd88d..622044c2 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -54,7 +54,7 @@ This way, you can even change it back to the schrimpf-configuration. The second major improvement is that we changed the way locations are defined. Instead of separately assigning location-id and coordinates, we encapsulated these attributes in an object called Location. It is not only clearer, but it allows you to assign a location index. Thus, you can save the transport times and distances -between locations in (fast) arrays rather than maps (see FastVehicleRoutingTransportCostMatrix). +between locations in (fast) arrays rather than maps (see [FastVehicleRoutingTransportCostMatrix](https://github.com/jsprit/jsprit/blob/master/jsprit-core/src/main/java/jsprit/core/util/FastVehicleRoutingTransportCostsMatrix.java)). Thus from now on define locations like this:
Location location = Location.newInstance(Coordinate.newInstance(0,0));