-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkernel.mli
29 lines (15 loc) · 811 Bytes
/
kernel.mli
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
open Syntax;;
val sel_left: theorem -> int -> formula -> theorem option
val sel_right: theorem -> int -> formula -> theorem option
val init_left : theorem -> formula -> int -> theorem option
val init_right : theorem -> formula -> int -> theorem option
val and_left : theorem -> (formula*theorem) option
val and_right : theorem->theorem -> (formula*theorem) option
val imp_left : theorem->theorem -> (formula*theorem) option
val imp_right : theorem -> (formula*theorem) option
val or_left : theorem->theorem -> (formula*theorem) option
val or_right : theorem -> (formula*theorem) option
val true_left : theorem -> (formula*theorem) option
val false_left : theorem -> (formula*theorem) option
val true_right : theorem -> (formula*theorem) option
val false_right : theorem -> (formula*theorem) option