Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
rubendg committed Jul 8, 2011
1 parent 3cf0402 commit feb4338
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/APA2/AG.ag
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import Debug.Trace
import Data.Map (Map)
import qualified Data.Map as DM
import qualified Data.Map as Map
import qualified Data.Map
import Data.MultiSet (MultiSet)
import qualified Data.MultiSet as DMS
import qualified Data.Set as DS
Expand Down
1 change: 1 addition & 0 deletions src/APA2/AG/Infer.ag
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
imports
{

}

ATTR MH
Expand Down
2 changes: 1 addition & 1 deletion src/Components.hs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ analysisResult tm =

solutionSubst :: Constraints -> SimpleSubstitution
solutionSubst cs =
DM.foldWithKey (\var result next -> Dot (AnnSub var result) next) Identity (worklist cs)
DM.foldrWithKey (\var result next -> Dot (AnnSub var result) next) Identity (worklist cs)

printExpressions' :: (Show a1, Show a) => [(a1, a)] -> String
printExpressions' =
Expand Down

0 comments on commit feb4338

Please sign in to comment.