1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
opal-examples/Blatt07/SafeNat.impl
2013-10-19 01:17:37 +02:00

47 lines
1.6 KiB
Plaintext

IMPLEMENTATION SafeNat
IMPORT Nat COMPLETELY
IMPORT NatConv COMPLETELY
IMPORT Denotation ONLY ++
IMPORT Seq COMPLETELY
IMPORT SeqMap COMPLETELY
DATA safeNat == ok (value : nat)
error (message : denotation)
DEF `(ok(val)) == "ok(" ++ `(val) ++ ")"
DEF `(error(msg)) == "error(\"" ++ msg ++ "\")"
DEF safePred(error(_)) == error("keine Zahl!")
DEF safePred(ok(n)) == IF n=0 THEN error("null hat keinen...")
ELSE ok(pred(n))
FI
-- DEF safePred(ok(0)) == error("blabla")
-- DEF safePred(succ(n)) == ok(n)
-- oder aber DEF safePred == safeLift(pred,succ?,"Fehler!")
DEF safeSucc(error(_)) == error("blabla")
DEF safeSucc(ok(n)) == ok(succ(n))
-- DEF safeSucc == safeLift(succ, \\n. true, "")
DEF safeLift(_,_,_)(error(msg)) == error(msg)
DEF safeLift(f,p,d)(ok(n)) == IF p(n) THEN ok(f(n)) ELSE error(d) FI
DEF safeLift2(_,_,_)(error(msg),_) == error(msg)
DEF safeLift2(_,_,_)(_,error(msg)) == error(msg)
DEF safeLift2(_,_,_)(error(msg1),error(msg2)) == error(msg1 ++ msg2)
DEF safeLift2(f,p,d)(ok(n1),ok(n2)) == IF p(n1,n2) THEN ok(f(n1,n2)) ELSE error(d) FI
DEF safeAdd == \\x,y. safeLift2(+,\\a,b. true,"")(x,y)
DEF safeSub == \\x,y. safeLift2(-,\\a,b. a>=b,"Geht nicht!")(x,y)
DEF safeMult == \\x,y. safeLift2(*,\\a,b. true,"")(x,y)
DEF safeDiv == \\x,y. safeLift2(/,\\a,b. b>0,"Div durch 0 nicht erklaert!")(x,y)
DEF safeMap(_,_,_)(<>) == <>
DEF safeMap(a,b,c)(error(msg)::s) == error(msg)::safeMap(a,b,c)(s)
DEF safeMap(f,p,m)(ok(a)::s) == IF p(a) THEN ok(f(a))::safeMap(f,p,m)(s) ELSE error(m)::safeMap(f,p,m)(s) FI