search-algorithms v0.2.0 Release Notes

Release Date: 2017-05-13 // almost 7 years ago
  • ๐Ÿš€ This release marks a major overhaul to the library's interface.

    ๐Ÿ”„ 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.