summaryrefslogtreecommitdiff
path: root/examples/math/MathSwz.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-10-31 17:13:20 +0000
committeraarne <aarne@cs.chalmers.se>2007-10-31 17:13:20 +0000
commit59e432812829a106d6719f2490e3f64ef77abbff (patch)
tree9a465fe52a377494a706cb289d2012ce65727818 /examples/math/MathSwz.gf
parent3f4d3e69cf8755b31cbc92e779e29cc2ac5dc71b (diff)
mock up math extended with Agda
Diffstat (limited to 'examples/math/MathSwz.gf')
-rw-r--r--examples/math/MathSwz.gf23
1 files changed, 10 insertions, 13 deletions
diff --git a/examples/math/MathSwz.gf b/examples/math/MathSwz.gf
index 72e81ae06..0d12a29e0 100644
--- a/examples/math/MathSwz.gf
+++ b/examples/math/MathSwz.gf
@@ -4,28 +4,25 @@ concrete MathSwz of Mathw = open Prelude in {
flags lexer = textlit ; unlexer = textlit ;
--- lincat Section ; Label ; Context ; Typ ; Obj ; Prop ; Proof ; Var ;
+-- lincat Section ; Context ; Typ ; Obj ; Prop ; Proof ; Var ;
lin
- SDefObj lab cont obj typ df =
- ss ("Definition" ++ lab.s ++ "." ++ cont.s ++
+ SDefObj cont obj typ df =
+ ss ("Definition" ++ "." ++ cont.s ++
obj.s ++ "är" ++ "ett" ++ typ.s ++ "," ++ "definierat" ++ "som" ++ df.s ++ ".") ;
- SDefProp lab cont prop df =
- ss ("Definition" ++ lab.s ++ "." ++ cont.s ++ "vi" ++ "säger" ++
- "att" ++ prop.s ++ "vilket" ++ "menar" ++ "att" ++ df.s ++ ".") ;
- SAxiom lab cont prop =
- ss ("Axiom" ++ lab.s ++ "." ++ cont.s ++ prop.s ++ ".") ;
- STheorem lab cont prop proof =
- ss ("Theorem" ++ lab.s ++ "." ++ cont.s ++ prop.s ++ "." ++ proof.s ++ ".") ;
+ SDefProp cont prop df =
+ ss ("Definition" ++ "." ++ cont.s ++ "vi" ++ "säger" ++
+ "att" ++ prop.s ++ "om" ++ df.s ++ ".") ;
+ SAxiom cont prop =
+ ss ("Axiom" ++ "." ++ cont.s ++ prop.s ++ ".") ;
+ STheorem cont prop proof =
+ ss ("Theorem" ++ "." ++ cont.s ++ prop.s ++ "." ++ proof.s ++ ".") ;
CEmpty = ss [] ;
CObj vr typ co = ss ("låt" ++ vr.s ++ "vara" ++ "ett" ++ typ.s ++ "." ++ co.s) ;
CProp prop co = ss ("anta" ++ "att" ++ prop.s ++ "." ++ co.s) ;
OVar v = v ;
- LNone = ss [] ;
- LString s = s ;
- VString s = s ;
V_x = ss "x" ;
V_y = ss "y" ;