-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
26 lines (26 loc) · 1.03 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Package: RcppHungarian
Type: Package
Title: Solves Minimum Cost Bipartite Matching Problems
Version: 0.3
Date: 2023-09-05
Authors@R: c(person("Justin", "Silverman", role=c("aut", "cre"),
email = "[email protected]"),
person("Cong", "Ma", role=c("ctb", "cph")),
person("Markus", "Buehren", role=c("ctb", "cph")))
Maintainer: Justin Silverman <[email protected]>
Copyright: See file COPYRIGHT for details
Description: Header library and R functions to solve minimum cost bipartite matching problem
using Huhn-Munkres algorithm (Hungarian algorithm; <https://en.wikipedia.org/wiki/Hungarian_algorithm>;
Kuhn (1955) <doi:10.1002/nav.3800020109>).
This is a repackaging of code written by Cong Ma in the GitHub repo <https://github.com/mcximing/hungarian-algorithm-cpp>.
License: GPL (>= 2)
Imports: Rcpp (>= 1.0.1)
LinkingTo: Rcpp
Suggests:
testthat (>= 2.1.0),
knitr,
rmarkdown,
ggplot2
RoxygenNote: 7.2.3
VignetteBuilder: knitr
URL: https://github.com/jsilve24/RcppHungarian