src/HOL/Algebra/abstract/Field.thy
author bulwahn
Thu, 07 Apr 2011 14:51:26 +0200
changeset 42274 50850486f8dc
parent 35849 b5522b51cb1e
permissions -rw-r--r--
removing instantiation exhaustive for unit in Quickcheck_Exhaustive

(*  Author: Clemens Ballarin, started 15 November 1997

Properties of abstract class field.
*)

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 (erule field_fact_prime)
  done

end