CS's system S

This commit is contained in:
aarne
2005-12-20 14:20:42 +00:00
parent 774abf612d
commit 25b3168437
15 changed files with 562 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
-- 20 Dec 2005, 9.45
abstract Formula = {
cat
Formula ;
Term ;
fun
And, Or, If : (_,_ : Formula) -> Formula ;
Not : Formula -> Formula ;
Abs : Formula ;
---- All, Exist : (Term -> Formula) -> Formula ;
-- to test
A, B, C : Formula ;
}