Changelog of @hackage/search-algorithms 0.3.2

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.2 - 2021-12-27

  • Add two new functions, dijkstraAssoc and aStarAssoc. 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 and aStar.
    • This should make these functions more ergonomic.
    • Introduced new incrementalCosts function to compensate.
  • BREAKING CHANGE: Replaced searches' prunes arguments with pruning combinator.
  • BREAKING CHANGE: Split searches' next arguments into multiple arguments for dijkstra and aStar.
    • This should make these functions more ergonomic.
  • next arguments now only require a way of generating Foldables, instead of lists specifically.

0.1.0 - 2017-03-07

  • Initial release