Afaik WRT is a specific program, while its main transform is called LIPT - http://academic.research.microsoft.c...on-performance
And it mainly improves compression of BWT/PPM/CM compressors, while in combination with LZ its not that helpful.
Note that WRT-the-program actually applies other transforms (like "capital conversion"), which can't be considered a version of LZ78 (like LIPT).
As to "why so?" - because LZ shows at least 20% worse compression than BWT/CM/PPM on texts, including wrt-processed ones.
Surely the difference becomes smaller with larger text volumes - for enwik9 lzma is better than some PPMs, but that's mainly due
to memory usage issues; given enough memory, statistical methods would always compress better.
There's also a matter of speed, but bsc,ppmd,ccm all compress a few times faster than lzma,
and bsc's decoding speed is only 2x slower, and its likely possible to further improve it.
Code:
c.size c.time d.time
20907118 13.344s 3.656s bsc.exe e enwik8 1 -b100 -m0f
24557177 86.969s 1.719s lzma.exe e enwik8 2 -a1 -d27 -fb273 -mc99999999 -lc8 -lp0 -pb0 -mfbt4 -mt4
24213805 120.937s 9.344s plzma.exe c2 enwik8 4 27 99999999 273 8 0 0