Skip to content

Commit

Permalink
LAPJV alternatives
Browse files Browse the repository at this point in the history
Resolves #105
  • Loading branch information
ms609 committed Jun 28, 2023
1 parent 2d4f816 commit 8bb0fd5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions R/lap.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@
#' 3, 6, 2, 2, 9), 4, 5, byrow = TRUE)
#'
#' LAPJV(problem)
#' @seealso
#' Implementations of the Hungarian algorithm exist in \pkg{adagio},
#' \pkg{RcppHungarian}, and \pkg{clue} and \pkg{lpSolve}; for larger matrices,
#' these are substantially slower. (See discussion at [Stack Overflow](
#' https://stackoverflow.com/questions/72806265/).)
#'
#' The JV algorithm is implemented for square matrices in the Bioconductor
#' package [`GraphAlignment::LinearAssignment()`](
#' https://www.bioconductor.org/packages/release/bioc/html/GraphAlignment.html).
#'
#' @export
LAPJV <- function(x) {
dims <- dim(x)
Expand Down
8 changes: 8 additions & 0 deletions man/LAPJV.Rd

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

0 comments on commit 8bb0fd5

Please sign in to comment.