Changelog for search-algorithms-0.3.4
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
0.3.4 - 2025-06-28
- 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.
0.3.3 - 2024-11-08
- Add
pruningAssocandpruningAssocM, which allow for easy pruning of states based on cost. - Add monadic versions of
dijkstraAssocandastarAssoc
0.3.2 - 2021-12-27
- Add two new functions,
dijkstraAssocandaStarAssoc. These allow for the simultaneous computation of neighboring states and their costs. (Thank you to nagydani)
0.3.1 - 2010-08-19
- Dependencies version bump
0.3.0 - 2017-11-29
Added
- Monadic versions of search algorithms and helper functions
0.2.0 - 2017-05-13
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.
0.1.0 - 2017-03-07
- Initial release