Remove an unneeded forall.
authorMatt McCutchen <matt@mattmccutchen.net>
Fri, 11 Jul 2008 03:47:56 +0000 (23:47 -0400)
committerMatt McCutchen <matt@mattmccutchen.net>
Fri, 11 Jul 2008 03:47:56 +0000 (23:47 -0400)
program/BellmanFord.hs

index da0fdf8..34e2a63 100644 (file)
@@ -81,7 +81,7 @@ endPass state = do
                                        aqEnqueue (bfsChanged state) (bfsPassEnder state)
                                        search state -- Continue with the next pass.
 
-search :: forall s gr a b w. (Graph gr, Real w) => BFState s gr a b w -> ST s ()
+search :: (Graph gr, Real w) => BFState s gr a b w -> ST s ()
 search state = do
        Just node <- aqDequeue (bfsChanged state)
        if node == bfsPassEnder state