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
dijkstraAssocCost
anddijstraAssocCostM
, 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
pruningAssoc
andpruningAssocM
, which allow for easy pruning of states based on cost. - Add monadic versions of
dijkstraAssoc
andastarAssoc
0.3.2 - 2021-12-27
- Add two new functions,
dijkstraAssoc
andaStarAssoc
. 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
dijkstra
andaStar
.- This should make these functions more ergonomic.
- Introduced new
incrementalCosts
function to compensate.
- BREAKING CHANGE: Replaced searches'
prunes
arguments withpruning
combinator. - BREAKING CHANGE: Split searches'
next
arguments into multiple arguments fordijkstra
andaStar
.- This should make these functions more ergonomic.
next
arguments now only require a way of generatingFoldable
s, instead of lists specifically.
0.1.0 - 2017-03-07
- Initial release