You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current dumb encoder only generates a sequence of byte literals to be encoded one by one. This makes it hard to unit test decoding of LZ matches (distance + length).
Although finding matches in real inputs is a non-trivial task (#9), there could be some "synthetic" encoder taking as input a sequence of already prepared matches.
Something like the following.
enumLZMAElement{Literal(u8),Match(usize,usize),}fncompress(input:implIterator<Item=LZMAElement>){/* TODO */}
The text was updated successfully, but these errors were encountered:
The current dumb encoder only generates a sequence of byte literals to be encoded one by one. This makes it hard to unit test decoding of LZ matches (distance + length).
Although finding matches in real inputs is a non-trivial task (#9), there could be some "synthetic" encoder taking as input a sequence of already prepared matches.
Something like the following.
The text was updated successfully, but these errors were encountered: