I have a relatively simple question, its causing me some problems in isabelle.
Im trying to prove the following:
∃ b . inv_Board b
The board is a set. The invariant on board is:
card b <= FINISHED
Where finished is an int value of 24. I'm using my own types though so its actually a VDMNat type and I have to cast it like so:
int (card b) <= FINISHED
Sledgehammer isn't working, I have 1 subgoal:
∃b. int (card b) ≤ FINISHED
any ideas?