Created
February 3, 2014 12:44
-
-
Save tueda/8783213 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
(* The following pattern matching freezes Mathematica v9.0.1 Linux x86-64. *) | |
MatchQ[{1}, {m_Integer..., ml_Integer /; ml != 0}] | |
(* The following is OK. *) | |
MatchQ[{1}, {_Integer..., ml_Integer /; ml != 0}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment