Prelude.hascasl.output revision 678e45c045799ce271c4719123ecd9cf4f456d4b
%% predefined universe containing all types,
%% superclass of all other classes
class Type
vars s, t : Type
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% invisible type "Unit" for formulae
type Unit
%% flat cpo with bottom
%% type aliases
preds true, false : Unit
preds __/\__, __\/__, __=>__, __if__, __<=>__ : Unit * Unit
pred not : Unit
pred __=__ : s * s
%% =e=
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% (builtin) type (constructors)
type __->?__ : -Type -> +Type -> Type
%% nested pairs are different from n-tupels (n > 2)
type __*__ : +Type -> +Type -> Type
%% ...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% "pred p args = e" abbreviates "op p args :? unit = e"
%% CASL requires "<=>" for pred-defn and disallows "()" as result
ops def, tt : Pred s
var x : s
program
def = \ x : s . ();
%% def is also total (identical to tt)
program
tt = \ x : s . ();
%% tt is total "op tt(x: s): unit = ()"
%% total function type
type __->__ : -Type -> +Type -> Type
type __->__ < __->?__
%% total functions
op __res__(x : s; y : t) : s = x;
op fst(x : s; y : t) : s = x;
program snd (x : s, y : t) : t = y;
%% trivial because its the strict function property
. fst = __res__;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Internal Logic
pred eq : s * s
. (\ x : s . eq (x, x)) = tt
. (\ (x, y : s) . x res eq (x, y))
= \ (x, y : s) . y res eq (x, y);
%% then %def
%% notation "\ ." abbreviates "\bla:unit."
%% where "bla" is never used, but only "()" instead
%% for type inference
%% an implicit cast from s to ?s of a term "e" yields the term "\ . e"
type s < ? s
%% the cast from ?s to s is still done manually here (for the strict "und")
%% use "And" instead of "und" to avoid cast from "?unit" to "unit"
%% the type instance for the first "eq" should be "?t"
%% this is explicitely enforced by "\ .f(x)"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Recursion (requires "free type nat ::= 0 | Suc(nat)" and "+"
type nat
class Cpo
{var c : Cpo
pred __<<=__ : c * c
pred isChain : forall c : Cpo . nat -> c
pred isBound : forall c : Cpo . c * (nat -> c)
op sup : (nat -> c) ->? c
}
class Pcpo < Cpo
{var p : Pcpo
op bottom : p
}
class instance
Flatcpo < Cpo
{var f : Flatcpo
program __ <<=[f] __ = eq;
}
vars c, d : Cpo
type instance __*__ : +Cpo -> +Cpo -> Cpo
vars x1, x2 : c; y1, y2 : d
type instance __*__ : +Pcpo -> +Pcpo -> Pcpo
type Unit : Pcpo
%% Pcont
type instance __-->?__ : -Cpo -> +Cpo -> Pcpo
type __-->?__ < __->?__
%% Tcont
type instance __-->__ : -Cpo -> +Cpo -> Cpo
type __-->__ < __-->?__
vars f, g : c --> d
program f <<= g = f <<=[c -->? d] g;
type instance __-->__ : -Cpo -> +Pcpo -> Pcpo
fun Y : (p --> p) --> p
vars f : p --> p; x : p
. f (Y f) = Y f
. f x = x => Y f <<= x;
op undefined : c --> p =
Y ((\ x' : c --> p . x') as (c --> p) --> c --> p);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% user stuff
free type bool ::= true | false
type bool : Flatcpo
type nat : Flatcpo
classes
Flatcpo < Type;
Pcpo < Type
classes
Flatcpo < Cpo;
Pcpo < Cpo
types
Unit : Pcpo;
__*__ : +Pcpo -> +Pcpo -> Pcpo;
__-->__ : -Cpo -> +Pcpo -> Pcpo;
__-->?__ : -Cpo -> +Cpo -> Pcpo;
bool : Flatcpo;
nat : Flatcpo;
s : Type
vars
c : Cpo %(var_245)%;
d : Cpo %(var_246)%;
f : Flatcpo %(var_243)%;
p : Pcpo %(var_242)%;
t : Type %(var_2)%
op Y : forall p : Pcpo . (p --> p) --> p
op def : forall s : Type . Pred s
op fst : forall s : Type; t : Type . s * t -> s
%[ = \ ((var x : s), (var y : t)) .! (var x : s) ]%
op snd : s * t ->? t
op sup : forall c : Cpo . (nat -> c) ->? c
op tt : forall s : Type . Pred s
op undefined : forall p : Pcpo; c : Cpo . c --> p
%[ =
(fun Y : forall p : Pcpo . (p --> p) --> p)
((\ x' : c --> p . (var x' : c --> p)) as
(c --> p) --> c --> p) ]%
pred __<<=__ : forall c : Cpo . c * c
pred eq : forall s : Type . s * s
pred isBound : forall c : Cpo . c * (nat -> c)
pred isChain : forall c : Cpo . nat -> c
pred not : Unit
vars
f : p --> p;
g : c --> d;
x : p;
x1 : c;
x2 : c;
y1 : d;
y2 : d
program def = \ x : s . () %(pe_def)%
program tt = \ x : s . () %(pe_tt)%
forall s : Type; t : Type; x : s; y : t . x res y = x
forall s : Type; t : Type; x : s; y : t . fst (x, y) = x
program (var snd : s * t ->? t) (x, y) : t = y %(pe_snd)%
. fst = __res__
forall s : Type . (\ x : s . eq (x, x)) = tt
forall s : Type
. (\ (x : s, y : s) . x res eq (x, y))
= \ (x : s, y : s) . y res eq (x, y)
program __ <<=[f] __ = eq %(pe___<<=__)%
program f <<= g = f <<= g %(pe___<<=__)%
forall p : Pcpo; f : p --> p . f (Y f) = Y f
forall p : Pcpo; f : p --> p; x : p . f x = x => Y f <<= x
forall c : Cpo; p : Pcpo
. undefined = Y ((\ x' : c --> p . x') as (c --> p) --> c --> p)
free type bool ::= false | true %(ga_bool)%
### Warning 4.7-4.10, void universe class declaration 'Type'
### Hint 6.5, is type variable 's'
### Hint 6.7, is type variable 't'
### Hint 11.6-11.9, redeclared type 'Unit'
*** Error 14.11, illegal type pattern argument '__'
*** Error 15.8, illegal type pattern argument '__'
### Warning 17.6-17.9,
ignoring declaration for builtin identifier 'true'
### Warning 17.12-17.16,
ignoring declaration for builtin identifier 'false'
### Warning 19.7-19.12,
ignoring declaration for builtin identifier '__/\__'
### Warning 19.15-19.20,
ignoring declaration for builtin identifier '__\/__'
### Warning 19.23-19.28,
ignoring declaration for builtin identifier '__=>__'
### Warning 19.31-19.36,
ignoring declaration for builtin identifier '__if__'
### Warning 19.38-19.44,
ignoring declaration for builtin identifier '__<=>__'
### Hint 22.14,
no kind found for 's'
expected: {Cpo}
found: {Type}
### Hint 22.14,
no kind found for 's'
expected: {Cppo}
found: {Type}
### Warning 22.6-22.10,
ignoring declaration for builtin identifier '__=__'
### Hint 27.6-27.12, redeclared type '__->?__'
### Hint 30.6-30.10, redeclared type '__*__'
*** Error 31.6-31.12, illegal type pattern '__ * __ * __'
### Hint 40.7, not a class 's'
### Hint 42.16, rebound variable 'x'
### Hint 39.14-39.19,
repeated declaration of 'def' with type 'Pred s'
### Hint 44.15, rebound variable 'x'
### Hint 39.14-39.19,
repeated declaration of 'tt' with type 'Pred s'
*** Error 46.11, unexpected mixfix token: und
### Hint 50.6-50.11, redeclared type '__->__'
### Hint 52.6-52.11, redeclared type '__->__'
### Hint 52.18-52.20, repeated supertype '__->?__'
*** Error 54.42-54.49,
ambiguous mixfix term
def (f x)
(def f) x
*** Error 54.6, unexpected mixfix token: :
### Hint 58.13, rebound variable 'x'
### Warning 58.4-58.10,
ignoring declaration for builtin identifier '__res__'
### Hint 59.9, rebound variable 'x'
### Hint 60.14, rebound variable 'x'
### Hint 60.14, rebound variable 'x'
### Warning 60.9-60.26,
illegal lhs pattern
'(var snd : s * t ->? t) ((var x : s), (var y : t)) : t'
*** Error 65.18-65.30,
ambiguous mixfix term
def (x res y)
def (x res y)
*** Error 65.51-65.69,
ambiguous mixfix term
(def y) und
(def y) und
### Hint 65.7, rebound variable 'x'
*** Error 65.18-65.30, unexpected term 'def (x res y)'
### Hint 65.40, rebound variable 'x'
*** Error 65.51-65.69, unexpected term '(def y) und (def x)'
### Hint 65.7, rebound variable 'x'
*** Error 65.18-65.30, unexpected term 'def (x res y)'
### Hint 65.40, rebound variable 'x'
*** Error 65.51-65.69, unexpected term '(def y) und (def x)'
*** Error 65.33,
ambiguous typings
1. (\ ((var x : s), (var y : t)) . def (x res y))
= \ ((var x : s), (var y : t)) . (def y) und (def x)
2. (\ ((var x : s), (var y : t)) . def (x res y))
= \ ((var x : s), (var y : t)) . (def y) und (def x)
*** Error 66.7,
in term '(op fst : forall s : Type; t : Type . s * t -> s) = __res__'
are uninstantiated type variables
'[_v46_v38_t, _v47_v37_s]'
### Hint 72.11,
no kind found for 's'
expected: {Cpo}
found: {Type}
### Hint 72.11,
no kind found for 's'
expected: {Cppo}
found: {Type}
### Hint 74.5, rebound variable 'x'
### Hint 74.5, rebound variable 'x'
### Hint 75.6, rebound variable 'x'
### Hint 75.35, rebound variable 'x'
### Hint 75.35, rebound variable 'x'
### Hint 75.6, rebound variable 'x'
### Hint 75.35, rebound variable 'x'
### Hint 75.35, rebound variable 'x'
### Warning 85.6, new type shadows type variable 's'
*** Error 85.11, illegal type variable as supertype 's'
### Hint 87.40-87.46,
in type of '(pred eq : forall s : Type . s * s)
((var p : Pred s), (op tt : forall s : Type . Pred s))'
typename 'Unit' (72.9)
is not unifiable with type 'Unit ->? Unit' (87.33)
*** Error 87.38,
no typing for 'program all (p : Pred s) : Pred Unit = eq (p, tt)'
### Hint 90.14, rebound variable 'x'
### Hint 90.45-90.46, no type found for 't1'
### Hint 90.45, untypeable term 't1'
### Hint 90.45, untypeable term 't1 ()'
### Hint 90.45-90.50, untypeable term 't1 () und'
### Hint 90.45-90.54, untypeable term 't1 () und t2'
*** Error 90.43,
no typing for
'program And (x, y : Pred Unit) : Pred Unit = t1 () und t2 ()'
*** Error 93.11, unexpected mixfix token: impl
*** Error 95.11, unexpected mixfix token: or
### Hint 98.39-98.41, no type found for 'all'
### Hint 98.39, untypeable term 'all'
*** Error 98.37,
no typing for
'program ex (p : Pred s) : Pred Unit
= all \ r : Pred Unit . (all \ x : s . p x impl r) impl r'
### Hint 101.29-101.31, no type found for 'all'
### Hint 101.29, untypeable term 'all'
*** Error 101.27,
no typing for
'program ff () : Pred Unit = all \ r : Pred Unit . r ()'
### Hint 103.44-103.47, no type found for 'impl'
### Hint 103.44, untypeable term (with type: Unit) 'impl'
### Hint 103.42-103.44, untypeable term 'r impl'
*** Error 103.40,
no typing for 'program neg (r : Pred Unit) : Pred Unit = r impl ff'
### Hint 108.3-108.5, no type found for 'all'
### Hint 108.3, untypeable term 'all'
*** Error 108.3-108.62,
no typing for
'all
\ (f, g) : s ->? t
. all \ x : s . eq (\ . f x, g x) impl eq (f, g)'
### Warning 115.7-115.9, unchanged class 'Cpo'
### Hint 117.5, is type variable 'c'
### Hint 119.16,
no kind found for 'c'
expected: {Cppo}
found: {Cpo}
### Hint 121.3-121.5, no type found for 'all'
### Hint 121.3, untypeable term 'all'
*** Error 121.3-121.16, no typing for 'all \ x : c . x <<= x'
### Hint 122.3-122.5, no type found for 'all'
### Hint 122.3, untypeable term 'all'
*** Error 122.3-122.53,
no typing for
'all \ (x, y, z : c) . (x <<= y) und (y <<= z) impl x <<= z'
### Hint 123.3-123.5, no type found for 'all'
### Hint 123.3, untypeable term 'all'
*** Error 123.3-123.56,
no typing for
'all \ (x, y, z : c) . (x <<= y) und (y <<= x) impl eq (x, y)'
### Hint 125.32-125.34, no type found for 'all'
### Hint 125.32, untypeable term 'all'
*** Error 125.14-125.49,
no typing for '(all \ n : nat . s n <<= s (Suc n)) as Unit'
### Hint 126.15, rebound variable 'x'
### Hint 126.38-126.40, no type found for 'all'
### Hint 126.38, untypeable term 'all'
*** Error 126.14-126.55,
no typing for '(all \ n : nat . s n <<= x) as Unit'
*** Error 130.21-131.74,
ambiguous mixfix term
def (((sup s) impl)
((((isBound (sup s, s)) und) all)
(\ x : c . ((((isBound (x, s)) impl) sup) s) <<= x)))
((def (sup s)) impl)
((((isBound (sup s, s)) und) all)
(\ x : c . ((((isBound (x, s)) impl) sup) s) <<= x))
### Hint 130.3-130.5, no type found for 'all'
### Hint 130.3, untypeable term 'all'
*** Error 130.3-131.74,
no typing for
'all
\ s : nat -> c
. def (sup s) impl
(isBound (sup s, s) und all
(\ x : c . isBound (x, s) impl sup (s) <<= x))'
### Hint 134.3-134.5, no type found for 'all'
### Hint 134.3, untypeable term 'all'
*** Error 134.3-134.44,
no typing for 'all \ s : nat -> c . isChain s impl def (sup s)'
### Hint 139.5, is type variable 'p'
### Warning 141.4-141.9,
ignoring declaration for builtin identifier 'bottom'
### Hint 143.3-143.5, no type found for 'all'
### Hint 143.3, untypeable term 'all'
*** Error 143.3-143.22, no typing for 'all \ x : p . bottom <<= x'
### Hint 148.6, is type variable 'f'
### Hint 150.15-150.17, is type list '[f]'
### Hint 119.14-119.18,
repeated declaration of '__<<=__' with type 'c * c ->? Unit'
### Hint 153.5, is type variable 'c'
### Hint 153.5, rebound type variable 'c'
### Hint 153.8, is type variable 'd'
### Hint 155.15-155.19, redeclared type '__*__'
### Hint 157.7, not a class 'c'
### Hint 157.11, not a class 'c'
### Hint 157.18, not a class 'd'
### Hint 157.23, not a class 'd'
### Hint 159.10-159.11, rebound variable 'x1'
### Hint 159.14-159.15, rebound variable 'y1'
### Hint 159.23-159.24, rebound variable 'x2'
### Hint 159.27-159.28, rebound variable 'y2'
### Hint 159.37-159.45, untypeable term '(x1 <<= x2) und'
*** Error 159.31,
no typing for
'program (x1, y1) <<= (x2, y2) = (x1 <<= x2) und (y1 <<= y2)'
### Hint 169.7-169.14, redeclared type '__-->?__'
### Hint 169.20-169.22, repeated supertype '__->?__'
*** Error 171.24-171.61,
ambiguous mixfix term
(def (((f x) und) x)) <<= y
(((def (f x)) und) x) <<= y
*** Error 174.45, unexpected mixfix token: +
*** Error 173.28-174.61,
ambiguous mixfix term
def ((((f (s m)) und) eq)
(sup (\ n : nat .! f (s (n + m))), f (sup s)))
((((def f) (s m)) und) eq)
(sup (\ n : nat .! f (s (n + m))), f (sup s))
*** Error 170.7, unexpected mixfix token: :
### Hint 176.16-176.25, is type list '[c -->? d]'
*** Error 176.41-176.68,
ambiguous mixfix term
(def ((((f x) impl) f) x)) <<= (g x)
((((def (f x)) impl) f) x) <<= (g x)
### Warning 176.11, variable also known as type variable 'f'
### Hint 176.31-176.33, no type found for 'all'
### Hint 176.31, untypeable term 'all'
*** Error 176.29,
no typing for
'program f <<=[c -->? d] g
= all \ x : c . def (f x) impl f (x) <<= g (x)'
### Hint 179.15-179.21, redeclared type '__-->__'
### Warning 181.17-181.23, non-unique kind for '__ -->? __'
### Hint 181.7-181.13, redeclared type '__-->__'
### Hint 181.19-181.22, repeated supertype '__-->?__'
### Hint 182.16,
no kind found for 'd'
expected: {Cppo}
found: {Cpo}
*** Error 182.46-182.53,
ambiguous mixfix term
def (f x)
(def f) x
*** Error 182.7, unexpected mixfix token: :
### Hint 184.7, not a kind 'c --> d'
### Hint 184.19,
no kind found for 'd'
expected: {Cppo}
found: {Cpo}
### Warning 184.6, variable also known as type variable 'f'
### Hint 184.11, not a kind 'c --> d'
### Hint 184.19,
no kind found for 'd'
expected: {Cppo}
found: {Cpo}
### Hint 186.25-186.34, is type list '[c -->? d]'
### Hint 186.10, rebound variable 'f'
### Warning 186.10, variable also known as type variable 'f'
### Hint 186.16, rebound variable 'g'
### Hint 186.10, rebound variable 'f'
### Warning 186.10, variable also known as type variable 'f'
### Hint 186.16, rebound variable 'g'
### Hint 119.14-119.18,
repeated declaration of '__<<=__' with type 'c * c ->? Unit'
### Hint 190.16,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 190.23,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 192.3-192.5, no type found for 'all'
### Hint 192.3, untypeable term 'all'
*** Error 192.3-193.42,
no typing for
'all
\ f : p -->? p
. eq (f (Y f), Y f) und all \ x : p . eq (f x, x) impl Y f <<= x'
### Hint 195.7, not a kind 'p --> p'
### Hint 195.15,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 195.5, rebound variable 'f'
### Warning 195.5, variable also known as type variable 'f'
### Hint 195.20, not a class 'p'
### Hint 195.18, rebound variable 'x'
### Hint 199.22,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 199.40,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 199.58,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 199.71,
no kind found for 'p'
expected: {Cppo}
found: {Pcpo}
### Hint 199.65-199.71,
no kind found for 'c --> p'
expected: {Cppo}
found: {Pcpo}
### Warning 204.20-204.23,
ignoring declaration for builtin identifier 'true'
### Warning 204.27-204.31,
ignoring declaration for builtin identifier 'false'