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));