src/HOL/Trancl.thy
author clasohm
Mon, 05 Feb 1996 21:27:16 +0100
changeset 1475 7f5a4cd08209
parent 1301 42782316d510
child 1558 9c6ebfab4e05
permissions -rw-r--r--
expanded tabs; renamed subtype to typedef; incorporated Konrad's changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
     1
(*  Title:      HOL/Trancl.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1992  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 972
diff changeset
     6
Relfexive and Transitive closure of a relation
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
     8
rtrancl is refl&transitive closure;
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
     9
trancl is transitive closure
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    10
reflcl is reflexive closure
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 972
diff changeset
    13
Trancl = Lfp + Relation + 
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
consts
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
    15
    rtrancl :: "('a * 'a)set => ('a * 'a)set"   ("(_^*)" [100] 100)
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
    16
    trancl  :: "('a * 'a)set => ('a * 'a)set"   ("(_^+)" [100] 100)  
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    17
syntax
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    18
    reflcl  :: "('a*'a)set => ('a*'a)set"       ("(_^=)" [100] 100)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
defs   
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
    20
  rtrancl_def   "r^*  ==  lfp(%s. id Un (r O s))"
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1301
diff changeset
    21
  trancl_def    "r^+  ==  r O rtrancl(r)"
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    22
translations
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    23
                "r^=" == "r Un id"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
end