Created
December 4, 2013 03:35
-
-
Save voila/7781928 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %% Pick X from L's elements | |
| prop_delete3() -> | |
| ?FORALL(L, | |
| list(integer()), | |
| ?IMPLIES(L /= [], %% rejects empty lists | |
| ?FORALL(X, elements(L), %% X always belongs to L | |
| not lists:member(X,delete_all(X,L))))). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment