1
0
forked from GitHub/gf-core

bottom-up and top-down filtering do not need fix point iteration.

This commit is contained in:
bringert
2007-06-27 17:46:34 +00:00
parent 674424c252
commit f2710ba80d
3 changed files with 5 additions and 6 deletions

View File

@@ -93,10 +93,10 @@ makeSimpleSRG opt s = makeSRG preprocess opt s
. mergeIdentical
. traceStats "After removeLeftRecursion"
. removeLeftRecursion origStart
. fix (traceStats "After topDownFilter"
. topDownFilter origStart
. traceStats "After bottomUpFilter"
. bottomUpFilter)
. traceStats "After topDownFilter"
. topDownFilter origStart
. traceStats "After bottomUpFilter"
. bottomUpFilter
. traceStats "After removeCycles"
. removeCycles
. traceStats "Inital CFG"