Skip to content

Commit dfdd92c

Browse files
committed
moved package from core/src/test/java/com/graphhopper/routing/profiles to ev graphhopper#2016
1 parent ba24d9d commit dfdd92c

File tree

196 files changed

+375
-386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+375
-386
lines changed

core/files/changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
1.0
2+
moved package from core/src/test/java/com/graphhopper/routing/profiles to ev
23
removed HintsMap
34
removed /change endpoint
45
removed vehicle,weighting and edge_based from GraphHopper class, replaced with new profile parameter, #1958

core/src/main/java/com/graphhopper/GraphHopper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
import com.graphhopper.routing.ch.CHRoutingAlgorithmFactory;
3232
import com.graphhopper.routing.lm.LMConfig;
3333
import com.graphhopper.routing.lm.LMPreparationHandler;
34-
import com.graphhopper.routing.profiles.DefaultEncodedValueFactory;
35-
import com.graphhopper.routing.profiles.EncodedValueFactory;
36-
import com.graphhopper.routing.profiles.EnumEncodedValue;
37-
import com.graphhopper.routing.profiles.RoadEnvironment;
34+
import com.graphhopper.routing.ev.DefaultEncodedValueFactory;
35+
import com.graphhopper.routing.ev.EncodedValueFactory;
36+
import com.graphhopper.routing.ev.EnumEncodedValue;
37+
import com.graphhopper.routing.ev.RoadEnvironment;
3838
import com.graphhopper.routing.querygraph.QueryGraph;
3939
import com.graphhopper.routing.subnetwork.PrepareRoutingSubnetworks;
4040
import com.graphhopper.routing.template.AlternativeRoutingTemplate;

core/src/main/java/com/graphhopper/reader/dem/EdgeElevationInterpolator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
import com.graphhopper.coll.GHBitSetImpl;
2323
import com.graphhopper.coll.GHIntHashSet;
2424
import com.graphhopper.coll.GHTBitSet;
25-
import com.graphhopper.routing.profiles.EnumEncodedValue;
26-
import com.graphhopper.routing.profiles.RoadEnvironment;
25+
import com.graphhopper.routing.ev.EnumEncodedValue;
26+
import com.graphhopper.routing.ev.RoadEnvironment;
2727
import com.graphhopper.routing.util.AllEdgesIterator;
2828
import com.graphhopper.storage.GraphHopperStorage;
2929
import com.graphhopper.storage.NodeAccess;

core/src/main/java/com/graphhopper/routing/DirectionResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
package com.graphhopper.routing;
1919

20-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
20+
import com.graphhopper.routing.ev.BooleanEncodedValue;
2121
import com.graphhopper.storage.Graph;
2222
import com.graphhopper.storage.NodeAccess;
2323
import com.graphhopper.util.*;

core/src/main/java/com/graphhopper/routing/InstructionsFromEdges.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
*/
1818
package com.graphhopper.routing;
1919

20-
import com.graphhopper.routing.profiles.*;
21-
import com.graphhopper.routing.util.BikeCommonFlagEncoder;
20+
import com.graphhopper.routing.ev.*;
2221
import com.graphhopper.routing.util.DefaultEdgeFilter;
2322
import com.graphhopper.routing.util.FlagEncoder;
2423
import com.graphhopper.routing.util.spatialrules.TransportationMode;

core/src/main/java/com/graphhopper/routing/InstructionsOutgoingEdges.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
*/
1818
package com.graphhopper.routing;
1919

20-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
21-
import com.graphhopper.routing.profiles.DecimalEncodedValue;
22-
import com.graphhopper.routing.profiles.EnumEncodedValue;
23-
import com.graphhopper.routing.profiles.RoadClass;
20+
import com.graphhopper.routing.ev.BooleanEncodedValue;
21+
import com.graphhopper.routing.ev.DecimalEncodedValue;
22+
import com.graphhopper.routing.ev.EnumEncodedValue;
23+
import com.graphhopper.routing.ev.RoadClass;
2424
import com.graphhopper.routing.util.FlagEncoder;
2525
import com.graphhopper.storage.NodeAccess;
2626
import com.graphhopper.util.EdgeExplorer;

core/src/main/java/com/graphhopper/routing/ch/PrepareCHEdgeIteratorImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
package com.graphhopper.routing.ch;
2020

21-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
21+
import com.graphhopper.routing.ev.BooleanEncodedValue;
2222
import com.graphhopper.routing.weighting.Weighting;
2323
import com.graphhopper.util.CHEdgeIterator;
2424
import com.graphhopper.util.EdgeExplorer;

core/src/main/java/com/graphhopper/routing/profiles/BooleanEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/BooleanEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
import com.graphhopper.storage.IntsRef;
44

core/src/main/java/com/graphhopper/routing/profiles/Country.java renamed to core/src/main/java/com/graphhopper/routing/ev/Country.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* This enum defines a country value that can be stored per edge.

core/src/main/java/com/graphhopper/routing/profiles/DecimalEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/DecimalEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
import com.graphhopper.storage.IntsRef;
44

core/src/main/java/com/graphhopper/routing/profiles/DefaultEncodedValueFactory.java renamed to core/src/main/java/com/graphhopper/routing/ev/DefaultEncodedValueFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/EncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/EncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* This interface defines how to store and read values from a list of integers

core/src/main/java/com/graphhopper/routing/profiles/EncodedValueFactory.java renamed to core/src/main/java/com/graphhopper/routing/ev/EncodedValueFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
public interface EncodedValueFactory {
2121
/**

core/src/main/java/com/graphhopper/routing/profiles/EncodedValueLookup.java renamed to core/src/main/java/com/graphhopper/routing/ev/EncodedValueLookup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import java.util.List;
2121

core/src/main/java/com/graphhopper/routing/profiles/EnumEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/EnumEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.storage.IntsRef;
2121

core/src/main/java/com/graphhopper/routing/profiles/GetOffBike.java renamed to core/src/main/java/com/graphhopper/routing/ev/GetOffBike.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
public class GetOffBike {
44
public static final String KEY = "get_off_bike";

core/src/main/java/com/graphhopper/routing/profiles/Hazmat.java renamed to core/src/main/java/com/graphhopper/routing/ev/Hazmat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
/**
44
* Defines general restrictions for the transport of hazardous materials.<br>

core/src/main/java/com/graphhopper/routing/profiles/HazmatTunnel.java renamed to core/src/main/java/com/graphhopper/routing/ev/HazmatTunnel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
/**
44
* Defines the degree of restriction for the transport of hazardous goods through tunnels.<br>

core/src/main/java/com/graphhopper/routing/profiles/HazmatWater.java renamed to core/src/main/java/com/graphhopper/routing/ev/HazmatWater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
/**
44
* Defines general restrictions for the transport of goods through water protection areas.<br>

core/src/main/java/com/graphhopper/routing/profiles/IntEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/IntEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
import com.graphhopper.storage.IntsRef;
44

core/src/main/java/com/graphhopper/routing/profiles/MaxAxleLoad.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxAxleLoad.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* Defines the maximum weight per axle for an edge.

core/src/main/java/com/graphhopper/routing/profiles/MaxHeight.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxHeight.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* One of the four logistic attributes that can be stored per edge.

core/src/main/java/com/graphhopper/routing/profiles/MaxLength.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxLength.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* One of the four logistic attributes that can be stored per edge.

core/src/main/java/com/graphhopper/routing/profiles/MaxSpeed.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxSpeed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* This EncodedValue stores maximum speed values for car. If not initialized it returns UNSET_SPEED.

core/src/main/java/com/graphhopper/routing/profiles/MaxWeight.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxWeight.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* One of the four logistic attributes that can be stored per edge.

core/src/main/java/com/graphhopper/routing/profiles/MaxWidth.java renamed to core/src/main/java/com/graphhopper/routing/ev/MaxWidth.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* One of the four logistic attributes that can be stored per edge.

core/src/main/java/com/graphhopper/routing/profiles/RoadAccess.java renamed to core/src/main/java/com/graphhopper/routing/ev/RoadAccess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/RoadClass.java renamed to core/src/main/java/com/graphhopper/routing/ev/RoadClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
/**
2121
* This enum defines the road class of an edge. It is heavily influenced from the highway tag in OSM that can be

core/src/main/java/com/graphhopper/routing/profiles/RoadClassLink.java renamed to core/src/main/java/com/graphhopper/routing/ev/RoadClassLink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
public class RoadClassLink {
2121
public static final String KEY = "road_class_link";

core/src/main/java/com/graphhopper/routing/profiles/RoadEnvironment.java renamed to core/src/main/java/com/graphhopper/routing/ev/RoadEnvironment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/Roundabout.java renamed to core/src/main/java/com/graphhopper/routing/ev/Roundabout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
public class Roundabout {
2121
public static final String KEY = "roundabout";

core/src/main/java/com/graphhopper/routing/profiles/RouteNetwork.java renamed to core/src/main/java/com/graphhopper/routing/ev/RouteNetwork.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/SimpleBooleanEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/SimpleBooleanEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.storage.IntsRef;
2121

core/src/main/java/com/graphhopper/routing/profiles/Surface.java renamed to core/src/main/java/com/graphhopper/routing/ev/Surface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/Toll.java renamed to core/src/main/java/com/graphhopper/routing/ev/Toll.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/TrackType.java renamed to core/src/main/java/com/graphhopper/routing/ev/TrackType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.util.Helper;
2121

core/src/main/java/com/graphhopper/routing/profiles/TurnCost.java renamed to core/src/main/java/com/graphhopper/routing/ev/TurnCost.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.graphhopper.routing.profiles;
1+
package com.graphhopper.routing.ev;
22

33
import com.graphhopper.storage.IntsRef;
44
import com.graphhopper.util.Helper;

core/src/main/java/com/graphhopper/routing/profiles/UnsignedDecimalEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/UnsignedDecimalEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.storage.IntsRef;
2121

core/src/main/java/com/graphhopper/routing/profiles/UnsignedIntEncodedValue.java renamed to core/src/main/java/com/graphhopper/routing/ev/UnsignedIntEncodedValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
package com.graphhopper.routing.profiles;
18+
package com.graphhopper.routing.ev;
1919

2020
import com.graphhopper.storage.IntsRef;
2121

core/src/main/java/com/graphhopper/routing/lm/LandmarkStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import com.carrotsearch.hppc.procedures.IntObjectProcedure;
2525
import com.graphhopper.coll.MapEntry;
2626
import com.graphhopper.routing.DijkstraBidirectionRef;
27-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
27+
import com.graphhopper.routing.ev.BooleanEncodedValue;
2828
import com.graphhopper.routing.subnetwork.SubnetworkStorage;
2929
import com.graphhopper.routing.subnetwork.TarjansSCCAlgorithm;
3030
import com.graphhopper.routing.util.*;

core/src/main/java/com/graphhopper/routing/querygraph/VirtualEdgeIterator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
*/
1818
package com.graphhopper.routing.querygraph;
1919

20-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
21-
import com.graphhopper.routing.profiles.DecimalEncodedValue;
22-
import com.graphhopper.routing.profiles.EnumEncodedValue;
23-
import com.graphhopper.routing.profiles.IntEncodedValue;
20+
import com.graphhopper.routing.ev.BooleanEncodedValue;
21+
import com.graphhopper.routing.ev.DecimalEncodedValue;
22+
import com.graphhopper.routing.ev.EnumEncodedValue;
23+
import com.graphhopper.routing.ev.IntEncodedValue;
2424
import com.graphhopper.routing.util.EdgeFilter;
2525
import com.graphhopper.storage.IntsRef;
2626
import com.graphhopper.util.*;

core/src/main/java/com/graphhopper/routing/querygraph/VirtualEdgeIteratorState.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
*/
1818
package com.graphhopper.routing.querygraph;
1919

20-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
21-
import com.graphhopper.routing.profiles.DecimalEncodedValue;
22-
import com.graphhopper.routing.profiles.EnumEncodedValue;
23-
import com.graphhopper.routing.profiles.IntEncodedValue;
20+
import com.graphhopper.routing.ev.BooleanEncodedValue;
21+
import com.graphhopper.routing.ev.DecimalEncodedValue;
22+
import com.graphhopper.routing.ev.EnumEncodedValue;
23+
import com.graphhopper.routing.ev.IntEncodedValue;
2424
import com.graphhopper.storage.IntsRef;
2525
import com.graphhopper.util.*;
2626

core/src/main/java/com/graphhopper/routing/subnetwork/PrepareRoutingSubnetworks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import com.carrotsearch.hppc.IntIndexedContainer;
2222
import com.graphhopper.coll.GHBitSet;
2323
import com.graphhopper.coll.GHBitSetImpl;
24-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
24+
import com.graphhopper.routing.ev.BooleanEncodedValue;
2525
import com.graphhopper.routing.util.DefaultEdgeFilter;
2626
import com.graphhopper.routing.util.EdgeFilter;
2727
import com.graphhopper.routing.util.FlagEncoder;

core/src/main/java/com/graphhopper/routing/template/AbstractRoutingTemplate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.graphhopper.routing.template;
22

3-
import com.graphhopper.routing.profiles.BooleanEncodedValue;
4-
import com.graphhopper.routing.profiles.EncodedValueLookup;
3+
import com.graphhopper.routing.ev.BooleanEncodedValue;
4+
import com.graphhopper.routing.ev.EncodedValueLookup;
55
import com.graphhopper.routing.util.EdgeFilter;
66
import com.graphhopper.routing.weighting.Weighting;
77
import com.graphhopper.storage.index.LocationIndex;

0 commit comments

Comments
 (0)