Description Usage Arguments Value
EMOA designed to tackle a challenging multi-objective vehicle routing problem, where the goal is to minimize tour length(s) of one or multiple vehicles. Simultaneously, the number of unvisited customers which request for service as time passes by is to be minimized.
1 2 3 4 5 6 7 8 9 | dynamicVRPEMOA(fitness.fun, instance, time.resolution = 100L,
n.timeslots = NULL, n.vehicles = 1L,
decision.fun = dynvrp::decideRandom, decision.params = list(),
do.pause = FALSE, p.swap = 1, init.keep = TRUE,
local.search.method = NULL, local.search.gens = 100L,
init.distribution = "uniform",
stop.conds = list(ecr::stopOnIters(100L)), mu = 50L,
local.search.args = list(on.ls.failure), lambda = mu, seed = NULL,
aposteriori = FALSE, ...)
|
fitness.fun |
[ |
instance |
[ |
time.resolution |
[ |
n.vehicles |
[ |
decision.fun |
[ |
decision.params |
[ |
do.pause |
[ |
p.swap |
[ |
init.keep |
[ |
local.search.method |
[ |
local.search.gens |
[ |
init.distribution |
[ |
stop.conds |
[ |
mu |
[ |
local.search.args |
[ |
lambda |
[ |
seed |
[ |
aposteriori |
[ |
... |
[any] |
[list
] List with the following components:
Fine grained results. Use str
to get insights.
Data frame with columns
numeric
]Tour length.
integer
]Normalized number of unvisited customers.
integer
]Unnormalized number of unvisited customers.
,
integer
]Corresponding era.
logical
]Indicates whether the solution was selected by the decision maker.
Data frame with objective vectors of all populations over all generations. Contains components
numeric
]tour length
integer
](normalized tour length)
integer
]unnormalized number of unvisited customers.
,
integer
]Corresponding era.
integer
]Generation.
Data frame with additional meta information per era, namely
integer
]Corresponding era.
numeric
]Time passed so far.
integer
]Number of mandatory customers.
integer
]Total number of dynamic customers.
integer
]Number of available dynamic customers, i.e., those who already requested for service.
integer
]Upper bound for the number of unserved dynamic customers (note, that a partial tour is already traveled.) in normalized space, i.e., the space used in the last era.
integer
]Lower bound for the number of unserved dynamic customers (depends on the time and the number of already arrived dynamic requests.
integer
]Number of dynamic customers already visited.
numeric
]Time passed during the start of the optimization process.
character
]Comma-separated partial, already traveled tour.
character
]Comma-separated sequence of customers in tour selected by decision maker in the corresponding era.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.