30 lines
901 B
Factor
30 lines
901 B
Factor
IN: compiler.tree.normalization.tests
|
|
USING: compiler.tree.builder compiler.tree.normalization
|
|
compiler.tree sequences accessors tools.test kernel math ;
|
|
|
|
\ count-introductions must-infer
|
|
\ fixup-enter-recursive must-infer
|
|
\ eliminate-introductions must-infer
|
|
\ normalize must-infer
|
|
|
|
[ 3 ] [ [ 3drop 1 2 3 ] build-tree count-introductions ] unit-test
|
|
|
|
[ 4 ] [ [ 3drop 1 2 3 3drop drop ] build-tree count-introductions ] unit-test
|
|
|
|
[ 3 ] [ [ [ drop ] [ 2drop 3 ] if ] build-tree count-introductions ] unit-test
|
|
|
|
[ 2 ] [ [ 3 [ drop ] [ 2drop 3 ] if ] build-tree count-introductions ] unit-test
|
|
|
|
: foo ( -- ) swap ; inline recursive
|
|
|
|
: recursive-inputs ( nodes -- n )
|
|
[ #recursive? ] find nip child>> first in-d>> length ;
|
|
|
|
[ 0 2 ] [
|
|
[ foo ] build-tree
|
|
[ recursive-inputs ]
|
|
[ normalize recursive-inputs ] bi
|
|
] unit-test
|
|
|
|
[ ] [ [ [ 1 ] [ 2 ] if + * ] build-tree normalize drop ] unit-test
|