src/HOL/Algebra/abstract/Field.thy
author wenzelm
Tue, 07 Nov 2006 19:39:53 +0100
changeset 21231 df149b8c86b8
parent 17479 68a7acb5f22e
child 29665 2b956243d123
permissions -rw-r--r--
removed obsolete print_state_hook;

(*
    Properties of abstract class field
    $Id$
    Author: Clemens Ballarin, started 15 November 1997
*)

theory Field imports Factor PID begin

instance field < "domain"
  apply intro_classes
   apply (rule field_one_not_zero)
  apply (erule field_integral)
  done

instance field < factorial
  apply intro_classes
   apply (rule TrueI)
  apply (erule field_fact_prime)
  done

end