XUnion.hascasl.output revision cc355beebee3478e70435e57539597a67404b5b9
vars S, N, E : Type
type Set S := S ->? Unit
type Graph N E := Set N * (E ->? N) * (E ->? N)
ops __union__ : Graph N E * Graph N E -> Graph N E;
__union__, __intersection__, __\\__ : Set S * Set S -> Set S
forall g, g' : Graph N E . g union g' = g;
types
Graph : Type -> Type -> Type;
Set : Type -> Type
types
Graph := \ N : Type . \ E : Type . Set N * (E ->? N) * (E ->? N);
Set := \ S : Type . S ->? Unit
vars
E : Type %(var_3)%;
N : Type %(var_2)%;
S : Type %(var_1)%
op __\\__ : forall S : Type . Set S * Set S -> Set S %(op)%
op __intersection__ : forall S : Type . Set S * Set S -> Set S
%(op)%
op __union__ : forall S : Type . Set S * Set S -> Set S %(op)%
op __union__ : forall N : Type; E : Type
. Graph N E * Graph N E -> Graph N E
%(op)%
forall E : Type; N : Type; g : Graph N E; g' : Graph N E
. g union g' = g
### Hint 1.7, is type variable 'S'
### Hint 1.9, is type variable 'N'
### Hint 1.11, is type variable 'E'
### Hint 8.11, not a kind 'Graph N E'
### Hint 8.15, not a kind 'Graph N E'
### Hint 9.6-9.14, in type of '((var g : Graph N E), (var g' : Graph N E))'
type 'Graph N' (8.23)
is not unifiable with type 'Set' (6.47)
### Hint 9.6-9.14, untypable term (with type: Set _v15_S * Set _v15_S)
'(g, g')'