packages feed

astar 0.2 → 0.2.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Data.Graph.AStar: aStarM :: (Monad m, Ord a, Ord c, Num c) => (a -> m (Set a)) -> (a -> a -> m c) -> (a -> m c) -> (a -> m Bool) -> m a -> m (Maybe [a])

Files

Data/Graph/AStar.hs view
@@ -1,4 +1,4 @@-module Data.Graph.AStar (aStar) where+module Data.Graph.AStar (aStar,aStarM) where  import qualified Data.Set as Set import Data.Set (Set, (\\))
astar.cabal view
@@ -1,5 +1,5 @@ name:                astar-version:             0.2+version:             0.2.1 synopsis:            General A* search algorithm. description:         This is a data-structure independent implementation of A* search. category:            Data