VirtualTam's bookmarks
11 bookmarks found
Page 1 of 1
-
-
- https://en.wikipedia.org/wiki/Context-free_grammar
- https://en.wikipedia.org/wiki/Recursive_transition_network
- https://eli.thegreenplace.net/2010/01/28/generating-random-sentences-from-a-context-free-grammar/
- http://davidsd.org/2009/01/the-real-theorem-generator-a-context-free-grammar/
- https://www.reddit.com/r/Python/comments/1h5ucz/defining_a_contextfree_grammar_easily/
- https://stackoverflow.com/questions/4543008/efficient-context-free-grammar-parser-preferably-python-friendly
- http://nltk.sourceforge.net/doc/en/ch07.html#formalizing-context-free-grammars
- https://stackoverflow.com/questions/17695611/nltk-context-free-grammar-genaration
-
Recursion, Tail Calls and Trampolines
2017-03-24 -
1// THIS WILL SEND AN INTERRUPT TO ALL MATCHING THREADS 2Thread.getAllStackTraces().keySet().each() { 3 t -> if (t.getName().contains("PATTERN") ) { t.interrupt(); } 4} 5 6// THIS WILL FORCE-STOP ALL MATCHING THREADS 7// May be required for recursive loops 8Thread.getAllStackTraces().keySet().each() { 9 t -> if (t.getName().contains("PATTERN") ) { t.stop(); } 10}
-
Let Over Lambda
2015-03-18 This book is about macros, that is programs that write programs.
Page 1 of 1