src/HOL/Trancl.thy
author nipkow
Thu, 16 Nov 1995 19:50:40 +0100
changeset 1334 32a9fde85699
parent 1301 42782316d510
child 1475 7f5a4cd08209
permissions -rw-r--r--
added rev_contrapos
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1287
84f44b84d584 corrected spelling of title (to test new CVS loginfo)
clasohm
parents: 1128
diff changeset
     1
(*  Title: 	HOL/Trancl.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
    rtrancl :: "('a * 'a)set => ('a * 'a)set"	("(_^*)" [100] 100)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
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   
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    20
  rtrancl_def	"r^*  ==  lfp(%s. id Un (r O s))"
42782316d510 Added various thms and tactics.
nipkow
parents: 1287
diff changeset
    21
  trancl_def	"r^+  ==  r O rtrancl(r)"
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