Releases: devonhollowood/search-algorithms
Releases · devonhollowood/search-algorithms
v0.3.4
What's Changed
- Add
dijkstraAssocCostanddijstraAssocCostM, which make it easier to handle path-dependent costs. - Fix bug in
dijkstraAssocM, where the prior cost was not propagated to new states.
Full Changelog: v0.3.3...v0.3.4
v0.3.3
What's Changed
- Added monadic versions of dijkstraAssoc and aStarAssoc by @nagydani in #15
- Modernize some config parameters by @devonhollowood in #19
Full Changelog: v0.3.2...v0.3.3
v0.3.2
Add two new functions, dijkstraAssoc and aStarAssoc, which are useful when neighboring states and costs can be simultaneously computed.
v0.3.1
- Dependency version bump
v0.3.0
Added
- Monadic versions of search algorithms and helper functions
v0.2.0
This release marks a major overhaul to the library's interface.
Changed
- BREAKING CHANGE: Simplified return type of
dijkstraandaStar.- This should make these functions more ergonomic.
- Introduced new
incrementalCostsfunction to compensate.
- BREAKING CHANGE: Replaced searches'
prunesarguments withpruningcombinator. - BREAKING CHANGE: Split searches'
nextarguments into multiple arguments fordijkstraandaStar.- This should make these functions more ergonomic.
nextarguments now only require a way of generatingFoldables, instead of lists specifically.
v0.1.0
This is the initial release.