Difference between revisions of "FP Laboratory 9"
Jump to navigation
Jump to search
Line 28: | Line 28: | ||
eval (Div l r) = (eval l) `div` (eval r) | eval (Div l r) = (eval l) `div` (eval r) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[File:Tryit.png|center|60px|Try it!|link=https://rextester.com/BHV96059]] | ||
</div> | </div> | ||
<div style="clear:both"></div> | <div style="clear:both"></div> | ||
Line 67: | Line 68: | ||
else x | else x | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[File:Tryit.png|center|60px|Try it!|link=https://rextester.com/BHV96059]] | ||
</div> | </div> | ||
<div style="clear:both"></div> | <div style="clear:both"></div> | ||
Line 77: | Line 79: | ||
show = showExpr | show = showExpr | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[File:Tryit.png|center|60px|Try it!|link=https://rextester.com/BHV96059]] | ||
</div> | </div> | ||
<div style="clear:both"></div> | <div style="clear:both"></div> | ||
Line 99: | Line 102: | ||
(Mul r r) | (Mul r r) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[File:Tryit.png|center|60px|Try it!|link=https://rextester.com/BHV96059]] | ||
</div> | </div> | ||
<div style="clear:both"></div> | <div style="clear:both"></div> |
Revision as of 07:32, 23 September 2021
User defined data types and type classes
Consider following representation of expressions
data Expr = Num Int
| Add Expr Expr
| Sub Expr Expr
| Mul Expr Expr
| Div Expr Expr
| Var Char
deriving (Eq)
- Create function eval that evaluates expresions.
eval :: Expr -> Int
eval :: Expr -> Int
eval (Num x) = x
eval (Add l r) = (eval l) + (eval r)
eval (Sub l r) = (eval l) - (eval r)
eval (Mul l r) = (eval l) * (eval r)
eval (Div l r) = (eval l) `div` (eval r)
- Create function showExpr that shows expression as a String.
showExpr :: Expr -> String
showExpr :: Expr -> String
showExpr expr = showExpr' expr NoOp
data Operation = Hi | HiDiv | Lo | LoSub | NoOp deriving (Eq)
showExpr' :: Expr -> Operation -> String
showExpr' (Num x) _ = show x
showExpr' (Var x) _ = [x]
showExpr' (Add l r) op = let
x = showExpr' l Lo ++"+"++showExpr' r Lo
in if op == Hi || op == HiDiv || op==LoSub
then "(" ++ x ++")"
else x
showExpr' (Sub l r) op = let
x = showExpr' l Lo ++"-"++showExpr' r LoSub
in if op == Hi || op == HiDiv || op==LoSub
then "(" ++ x ++")"
else x
showExpr' (Mul l r) op = let
x = showExpr' l Hi ++"*"++showExpr' r Hi
in if op == HiDiv
then "(" ++ x ++")"
else x
showExpr' (Div l r) op = let
x = showExpr' l Hi ++"/"++showExpr' r Hi
in if op == HiDiv
then "(" ++ x ++")"
else x
- Extend class Show to be usable with our expressions.
- Create function derivation representing symbolic derivation of a given expression.
deriv :: Expr-> Char -> Expr
deriv :: Expr-> Char -> Expr
deriv (Num _) _ = (Num 0)
deriv (Var x) y | x==y = (Num 1)
| otherwise = (Num 0)
deriv (Add l r) x = Add (deriv l x) (deriv r x)
deriv (Sub l r) x = Sub (deriv l x) (deriv r x)
deriv (Mul l r) x = Add (Mul (deriv l x) r) (Mul l (deriv r x))
deriv (Div l r) x =
Div
(Sub (Mul (deriv l x) r) (Mul l (deriv r x)))
(Mul r r)