src/HOL/Real/RealBin.thy
author wenzelm
Wed, 10 May 2000 22:34:30 +0200
changeset 8856 435187ffc64e
parent 7706 da41066983e5
child 10919 144ede948e58
permissions -rw-r--r--
fixed theory deps;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7292
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     1
(*  Title:      HOL/RealBin.thy
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     2
    ID:         $Id$
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     4
    Copyright   1999  University of Cambridge
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     5
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     6
Binary arithmetic for the reals
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     7
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     8
This case is reduced to that for the integers
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
     9
*)
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    10
8856
435187ffc64e fixed theory deps;
wenzelm
parents: 7706
diff changeset
    11
RealBin = RealInt +
7292
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    12
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    13
instance
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    14
  real :: number 
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    15
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    16
defs
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    17
  real_number_of_def
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    18
    "number_of v == real_of_int (number_of v)"
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    19
     (*::bin=>real               ::bin=>int*)
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    20
dff3470c5c62 real literals using binary arithmetic
paulson
parents:
diff changeset
    21
end