src/HOL/UNITY/Follows.thy
author wenzelm
Fri, 09 Nov 2001 00:09:47 +0100
changeset 12114 a8e860c86252
parent 10265 4e004b548049
child 13796 19f50fa807ae
permissions -rw-r--r--
eliminated old "symbols" syntax, use "xsymbols" instead;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6706
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Follows
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     2
    ID:         $Id$
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     5
8128
3a5864b465e2 still working; a bit of polishing
paulson
parents: 8122
diff changeset
     6
The "Follows" relation of Charpentier and Sivilotte
6706
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     7
*)
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
     8
10265
4e004b548049 use Multiset from HOL/Library;
wenzelm
parents: 9019
diff changeset
     9
Follows = SubstAx + ListOrder + Multiset +
6706
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    10
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    11
constdefs
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    12
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    13
  Follows :: "['a => 'b::{order}, 'a => 'b::{order}] => 'a program set"
6809
5b8912f7bb69 shortened Follows to Fols
paulson
parents: 6706
diff changeset
    14
                 (infixl "Fols" 65)
5b8912f7bb69 shortened Follows to Fols
paulson
parents: 6706
diff changeset
    15
   "f Fols g == Increasing g Int Increasing f Int
5b8912f7bb69 shortened Follows to Fols
paulson
parents: 6706
diff changeset
    16
                Always {s. f s <= g s} Int
5b8912f7bb69 shortened Follows to Fols
paulson
parents: 6706
diff changeset
    17
                (INT k. {s. k <= g s} LeadsTo {s. k <= f s})"
6706
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    18
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    19
d8067e272d4f Theory of the "Follows" relation
paulson
parents:
diff changeset
    20
end