Removed a piece of dead code from ArrayUsageCheck

This commit is contained in:
Neil Brown 2008-01-16 11:51:54 +00:00
parent 4b0d29d987
commit 0e57c7af55

View File

@ -180,13 +180,6 @@ type VarMap = Map.Map FlattenedExp Int
makeEquations :: [A.Expression] -> A.Expression -> Either String [(VarMap, (EqualityProblem, InequalityProblem))]
makeEquations es high = makeEquations' >>* (\(s,v,lh) -> [(s,squareEquations eqIneq) | eqIneq <- pairEqsAndBounds v lh])
where
{-
makeProblem :: Map.Map String Int
-> [(EqualityConstraintEquation,EqualityProblem, InequalityProblem)]
-> (EqualityConstraintEquation,EqualityConstraintEquation)
-> [(Map.Map String Int, (EqualityProblem, InequalityProblem))]
makeProblem varMap problems lowHigh = [(varMap, (eq,ineq)) | (eq,ineq) <- pairEqsAndBounds problems lowHigh]
-}
-- | The body of makeEquations; returns the variable mapping, the list of (nx,ex) pairs and a pair
-- representing the upper and lower bounds of the array (inclusive).