Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Failed to apply initial proof method⌂:
  2. using this:
  3. [] ∈ ns_public
  4. goal (1 subgoal):
  5. 1. ∀A B X. Says A B X ∉ set_of_list []
  6.  
  7. inductive_set ns_public :: "event list set"
  8. where
  9. Nil[intro!,simp] : "[] ∈ ns_public" |
  10.  
  11. ....
  12. <snip>
  13. ....
  14.  
  15. lemma "∀ A B X. [] ∈ ns_public ⟶ Says A B X ∉ set_of_list []"
  16. proof
  17. assume "[] ∈ ns_public"
  18. from this have "∀ A B X. Says A B X ∉ set_of_list []"
  19. from this show "True" by blast
  20. oops
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement