File: test10.4.ott

package info (click to toggle)
ott 0.34%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,440 kB
  • sloc: ml: 25,103; makefile: 1,375; awk: 736; lisp: 183; sh: 14; sed: 4
file content (38 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% minimal                    + binding + subst + coq/hol/isa
metavar termvar, x ::=  
{{ isa string}} {{ coq nat}} {{ hol string}} {{ coq-equality }}

grammar
t :: 't_' ::=                               
  | x            ::  :: Var                  
  | \ x . t      ::  :: Lam     (+ bind x in t +)
  | t t'         ::  :: App                  
  | ( t )        :: S:: Paren   {{ icho [[t]]  }} 
  | { t / x } t' :: M:: Tsub    {{ icho (tsubst_t [[t]] [[x]] [[t']])}}

v :: 'v_' ::=                              
  | \ x . t      ::  :: Lam                

subrules
  v <:: t

substitutions
  single t x :: tsubst 

defns
Jop :: '' ::=

 defn
 t1 --> t2 :: ::reduce::''  by


    --------------------------  :: ax_app
    (\x.t12) v2 -->  {v2/x}t12

    t1 --> t1'
    -------------- :: ctx_app_fun
    t1 t --> t1' t

    t1 --> t1'
    -------------- :: ctx_app_arg
    v t1 --> v t1'