summaryrefslogtreecommitdiff
path: root/lisp/progmodes/ebnf-otz.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2004-02-29 23:27:07 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2004-02-29 23:27:07 +0000
commit60df72550d103ac25009939edd01df7ebf2f6fd1 (patch)
treeff19a79005dd1deaa7e714241b0fb2d03874a141 /lisp/progmodes/ebnf-otz.el
parent05f1c4ec55e17cb72356efac83b0be3e2a89321d (diff)
downloademacs-60df72550d103ac25009939edd01df7ebf2f6fd1.tar.gz
emacs-60df72550d103ac25009939edd01df7ebf2f6fd1.tar.bz2
emacs-60df72550d103ac25009939edd01df7ebf2f6fd1.zip
Doc fix.
Diffstat (limited to 'lisp/progmodes/ebnf-otz.el')
-rw-r--r--lisp/progmodes/ebnf-otz.el42
1 files changed, 41 insertions, 1 deletions
diff --git a/lisp/progmodes/ebnf-otz.el b/lisp/progmodes/ebnf-otz.el
index aae8906c384..5c98677c334 100644
--- a/lisp/progmodes/ebnf-otz.el
+++ b/lisp/progmodes/ebnf-otz.el
@@ -5,7 +5,7 @@
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
-;; Time-stamp: <2004/02/22 14:24:37 vinicius>
+;; Time-stamp: <2004/02/29 18:40:14 vinicius>
;; Keywords: wp, ebnf, PostScript
;; Version: 1.0
@@ -38,6 +38,46 @@
;; See ebnf2ps.el for documentation.
;;
;;
+;; Optimizations
+;; -------------
+;;
+;;
+;; *To be implemented*:
+;; left recursion:
+;; A = B | A C B | A C D. ==> A = B {C (B | D)}*.
+;;
+;; right recursion:
+;; A = B | C A. ==> A = {C}* B.
+;; A = B | D | C A | E A. ==> A = { C | E }* ( B | D ).
+;;
+;; optional:
+;; A = B | C B. ==> A = [C] B.
+;; A = B | B C. ==> A = B [C].
+;; A = D | B D | B C D. ==> A = [B [C]] D.
+;;
+;;
+;; *Already implemented*:
+;; left recursion:
+;; A = B | A C. ==> A = B {C}*.
+;; A = B | A B. ==> A = {B}+.
+;; A = | A B. ==> A = {B}*.
+;; A = B | A C B. ==> A = {B || C}+.
+;; A = B | D | A C | A E. ==> A = ( B | D ) { C | E }*.
+;;
+;; optional:
+;; A = B | . ==> A = [B].
+;; A = | B . ==> A = [B].
+;;
+;; factoration:
+;; A = B C | B D. ==> A = B (C | D).
+;; A = C B | D B. ==> A = (C | D) B.
+;; A = B C E | B D E. ==> A = B (C | D) E.
+;;
+;; none:
+;; A = B | C | . ==> A = B | C | .
+;; A = B | C A D. ==> A = B | C A D.
+;;
+;;
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Code: