Skip to content

Commit

Permalink
changes to please CRAN checks
Browse files Browse the repository at this point in the history
  • Loading branch information
lschneiderbauer committed Jan 7, 2024
1 parent 0925b57 commit e2951d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Title: Heuristic Capacitated Vehicle Routing Problem Solver
Version: 0.0.0.9000
Authors@R:
person("Lukas", "Schneiderbauer", email = "[email protected]", role = c("aut", "cre", "cph"))
Description: Implements the Clark-Wright algorithm to find a quasi-optimal solution to the Capacitated Vehicle Routing Problem. See Clarke, G. and Wright, J.R. (1964) <http://dx.doi.org/10.1287/opre.12.4.568> for details. The implementation is accompanied by helper functions to inspect its solution.
Description: Implements the Clark-Wright algorithm to find a quasi-optimal solution to the Capacitated Vehicle Routing Problem. See Clarke, G. and Wright, J.R. (1964) <doi:10.1287/opre.12.4.568> for details. The implementation is accompanied by helper functions to inspect its solution.
License: GPL (>= 3)
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
Expand Down
6 changes: 3 additions & 3 deletions R/clarke_wright.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#'
#' @details
#' See the original paper,
#' [Clarke, G. and Wright, J.R. (1964)](http://dx.doi.org/10.1287/opre.12.4.568),
#' Clarke, G. and Wright, J.R. (1964) \doi{10.1287/opre.12.4.568},
#' for a detailed explanation of the Clarke-Wright algorithm.
#'
#' @param demand
Expand Down Expand Up @@ -51,8 +51,8 @@
#' * `vehicle` - The vehicle type index.
#' * `site` - The site index (i.e. the index of the `demand` vector)
#'
#' Each row defines a restriction: <vehicle type> can not approach <site>.
#' Defaults to `NULL`, i.e. no restrictions are enforced.
#' Each row defines a restriction: vehicle type `vehicle` can not approach site
#' `site`. Defaults to `NULL`, i.e. no restrictions are enforced.
#'
#' @return
#' Returns a "`heumilkr_solution`" object, a [data.frame()] with one row per
Expand Down
6 changes: 3 additions & 3 deletions man/clarke_wright.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e2951d8

Please sign in to comment.