src/HOL/Quickcheck_Examples/Find_Unused_Assms_Examples.thy
author wenzelm
Sun, 20 May 2012 11:34:33 +0200
changeset 47884 21c42b095c84
parent 46697 b07ae33cc459
permissions -rw-r--r--
try to avoid races again (cf. 8c37cb84065f and fd3a36e48b09);

theory Find_Unused_Assms_Examples
imports Complex_Main
begin

section {* Arithmetics *}

declare [[quickcheck_finite_types = false]]

find_unused_assms Divides
find_unused_assms GCD
find_unused_assms RealDef
find_unused_assms RComplete

section {* Set Theory *}

declare [[quickcheck_finite_types = true]]

find_unused_assms Fun
find_unused_assms Relation
find_unused_assms Set
find_unused_assms Wellfounded

section {* Datatypes *}

find_unused_assms List
find_unused_assms Map

end