author | huffman |
Sun, 01 Oct 2006 03:07:12 +0200 | |
changeset 20805 | 35574b9b59aa |
parent 20660 | 8606ddd42554 |
permissions | -rw-r--r-- |
20647
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
1 |
%ID: $Id$ |
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
2 |
%Author: Jia Meng, NICTA |
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
3 |
%untyped combinator reduction for B', C' |
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
4 |
|
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
5 |
%B' c f g x --> c (f (g x)) |
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
6 |
input_clause(a6,axiom, |
20660
8606ddd42554
corrected for the translation from _ to __ in c_COMBx_e
paulson
parents:
20647
diff
changeset
|
7 |
[++equal(hAPP(hAPP(hAPP(hAPP(c_COMBB__e,C),F),G),X),hAPP(C,hAPP(F,hAPP(G,X))))]). |
20647
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
8 |
|
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
9 |
%C' c f g x --> c (f x) g |
680b58597f65
Added in combinator reduction axioms for B' C' and S'. Also split the original reduction axioms into separate files: I+K, B+C, S, B'+C', S'.
mengj
parents:
diff
changeset
|
10 |
input_clause(a7,axiom, |
20660
8606ddd42554
corrected for the translation from _ to __ in c_COMBx_e
paulson
parents:
20647
diff
changeset
|
11 |
[++equal(hAPP(hAPP(hAPP(hAPP(c_COMBC__e,C),F),G),X),hAPP(hAPP(C,hAPP(F,X)),G))]). |