diff --git a/lib/Monads/wp/Datatype_Schematic.thy b/lib/Monads/wp/Datatype_Schematic.thy index 9701c97e0b..9396a7fb94 100644 --- a/lib/Monads/wp/Datatype_Schematic.thy +++ b/lib/Monads/wp/Datatype_Schematic.thy @@ -263,7 +263,7 @@ declare option.sel[datatype_schematic] declare list.sel(1,3)[datatype_schematic] declare sum.sel[datatype_schematic] -locale datatype_schem_demo begin +experiment begin lemma handles_nested_constructors: "\f. \y. f True (Some [x, (y, z)]) = y" diff --git a/lib/Monads/wp/WPBang.thy b/lib/Monads/wp/WPBang.thy index e7f21e2d3a..0d845cb3dd 100644 --- a/lib/Monads/wp/WPBang.thy +++ b/lib/Monads/wp/WPBang.thy @@ -53,6 +53,9 @@ method_setup wpe = \WP_Safe.wpe_args\ text \Testing.\ +experiment +begin + lemma assumes x: "\ P \ f \ \rv. Q \" and y: "\ P \ f \ \rv. R \" @@ -71,3 +74,5 @@ lemma done end + +end diff --git a/lib/Monads/wp/WPFix.thy b/lib/Monads/wp/WPFix.thy index 619d43a0b9..c008cbdd2e 100644 --- a/lib/Monads/wp/WPFix.thy +++ b/lib/Monads/wp/WPFix.thy @@ -217,6 +217,9 @@ end method_setup wpfix = \WPFix.method\ +experiment +begin + lemma demo1: "(\Ia Ib Ic Id Ra. (Ia (Suc 0) \ Qa) @@ -260,10 +263,14 @@ lemma demo2: \ \ Shows how to use @{attribute datatype_schematic} rules as "accessors". \ -lemma (in datatype_schem_demo) demo3: +datatype foo = basic (a:nat) (b:int) | another nat + +lemma demo3: "\x. \a b. x (basic a b) = a" apply (rule exI, (rule allI)+) - apply (wpfix add: get_basic_0.simps) \ \Only exposes `a` to the schematic.\ + apply (wpfix add: foo.sel(1)) \ \Only exposes `a` to the schematic.\ by (rule refl) end + +end diff --git a/lib/Monads/wp/WP_Pre.thy b/lib/Monads/wp/WP_Pre.thy index 82879d7d68..836435343f 100644 --- a/lib/Monads/wp/WP_Pre.thy +++ b/lib/Monads/wp/WP_Pre.thy @@ -102,6 +102,9 @@ named_theorems wp_pre method wp_pre0 = pre_tac wp_pre method wp_pre = wp_pre0? +experiment +begin + definition test_wp_pre :: "bool \ bool \ bool" where @@ -121,3 +124,5 @@ lemma demo: done end + +end