src/HOL/AxClasses/Tutorial/Sigs.thy
author clasohm
Mon, 11 Sep 1995 12:38:20 +0200
changeset 1253 131f72e2cd56
parent 1247 18b1441fb603
child 2907 0e272e4c7cb2
permissions -rw-r--r--
split IOA/ROOT.ML into two files for ABP and NTP
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1247
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/AxClasses/Tutorial/Sigs.thy
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     4
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     5
Some polymorphic constants for the 'signature' parts of axclasses.
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     6
*)
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     7
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     8
Sigs = HOL +
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
     9
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    10
consts
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    11
  "<*>"         :: "['a, 'a] => 'a"             (infixl 70)
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    12
  "inv"         :: "'a => 'a"
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    13
  "1"           :: "'a"                         ("1")
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    14
18b1441fb603 Various axiomatic type class demos;
wenzelm
parents:
diff changeset
    15
end