Changelog
Source:NEWS.md
rlemon 0.2.1
CRAN release: 2023-02-06
rlemon 0.2.0
CRAN release: 2022-04-15
Major changes
-
MinCostFlow()
now returns feasibility status (#25) - Functions which returned 0/1 booleans now return logical instead. (#36)
-
algorithm=
argument to various functions has received fixes and cleanups- Ensure all
algorithm=
arguments have a default (#29) - Informative error if
algorithm=
argument isn’t string (#32) -
MaxFlow()
andNetworkCirculation()
properly error on invalidalgorithm
argument.
- Ensure all
-
MaxMatching()
crashed if givenNULL
weights; fix such thatNULL
weights now yields unweighted Max Matching. (#35) - Exported functions now interface with the LEMON library through runners. These runners aren’t exported, but may be useful for users who want access to LEMON with no pre- or post-processing. See
help(lemon_runners)
for details. (#30)