public static final class MatchGraphRequest.SolveMethod extends Object
MARKOV_CHAIN
: Matches samplePoints
to the graph using the
Hidden Markov Model (HMM)-based method, which conducts a range-tree
closest-edge search to find the best combinations of possible road
segments (num_segments
) for each sample point to create the best
route. The route is secured one point at a time while looking ahead
chain_width
number of points, so the prediction is corrected
after each point. This solution type is the most accurate but also the
most computationally intensive. Related options: num_segments
and chain_width
.
MATCH_OD_PAIRS
: Matches samplePoints
to find the most probable
path between origin and destination pairs with cost constraints.
MATCH_SUPPLY_DEMAND
: Matches samplePoints
to optimize
scheduling multiple supplies (trucks) with varying sizes to varying
demand sites with varying capacities per depot. Related options: partial_loading
and max_combinations
.
MATCH_BATCH_SOLVES
: Matches samplePoints
source and destination
pairs for the shortest path solves in batch mode.
MARKOV_CHAIN
.
A set of string constants for the parameter solveMethod
.Modifier and Type | Field and Description |
---|---|
static String |
MARKOV_CHAIN
Matches
samplePoints to the graph using the Hidden Markov
Model (HMM)-based method, which conducts a range-tree closest-edge
search to find the best combinations of possible road segments
(num_segments ) for each sample point to create the best
route. |
static String |
MATCH_BATCH_SOLVES
Matches
samplePoints source and destination pairs for the
shortest path solves in batch mode. |
static String |
MATCH_OD_PAIRS
Matches
samplePoints to find the most probable path between
origin and destination pairs with cost constraints. |
static String |
MATCH_SUPPLY_DEMAND
Matches
samplePoints to optimize scheduling multiple
supplies (trucks) with varying sizes to varying demand sites with
varying capacities per depot. |
public static final String MARKOV_CHAIN
samplePoints
to the graph using the Hidden Markov
Model (HMM)-based method, which conducts a range-tree closest-edge
search to find the best combinations of possible road segments
(num_segments
) for each sample point to create the best
route. The route is secured one point at a time while looking ahead
chain_width
number of points, so the prediction is corrected
after each point. This solution type is the most accurate but also
the most computationally intensive. Related options: num_segments
and chain_width
.public static final String MATCH_OD_PAIRS
samplePoints
to find the most probable path between
origin and destination pairs with cost constraints.public static final String MATCH_SUPPLY_DEMAND
samplePoints
to optimize scheduling multiple
supplies (trucks) with varying sizes to varying demand sites with
varying capacities per depot. Related options: partial_loading
and max_combinations
.public static final String MATCH_BATCH_SOLVES
samplePoints
source and destination pairs for the
shortest path solves in batch mode.Copyright © 2020. All rights reserved.