running with 13 primitives factorial :: Int -> Int -- testing 6 combinations of argument values -- pruning with 67/101 rules -- looking through 3 candidates of size 1 -- looking through 3 candidates of size 2 -- looking through 6 candidates of size 3 -- looking through 13 candidates of size 4 -- looking through 40 candidates of size 5 -- looking through 138 candidates of size 6 -- tested 69 candidates factorial 0 = 1 factorial x = x * factorial (dec x)