src/HOL/Subst/UTLemmas.thy
author paulson
Mon, 23 Sep 1996 18:18:18 +0200
changeset 2010 0a22b9d63a18
parent 1476 608483c2122a
permissions -rw-r--r--
Simplification of definition of synth
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1476
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1381
diff changeset
     1
(*  Title:      Substitutions/utermlemmas.thy
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1381
diff changeset
     2
    Author:     Martin Coen, Cambridge University Computer Laboratory
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     3
    Copyright   1993  University of Cambridge
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     4
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     5
Additional definitions for uterms that are not part of the basic inductive definition.
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     6
*)
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     7
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     8
UTLemmas = UTerm + Setplus +
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     9
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    10
consts
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    11
1381
57777949b2f8 removed some more quotes
clasohm
parents: 968
diff changeset
    12
  vars_of       ::   'a uterm=>'a set
57777949b2f8 removed some more quotes
clasohm
parents: 968
diff changeset
    13
  "<:"          ::   ['a uterm,'a uterm]=>bool   (infixl 54) 
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    14
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    15
rules  (*Definitions*)
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    16
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    17
  vars_of_def   "vars_of(t) == uterm_rec t (%x.{x}) (%x.{}) (%u v q r.q Un r)"
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    18
  occs_def      "s <: t == uterm_rec t (%x.False) (%x.False) (%u v q r.s=u | s=v | q | r)"
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    19
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    20
end