Multi-byte symbols

This commit is contained in:
Ian Gulliver
2023-12-31 16:09:35 -08:00
parent 04f1ef728f
commit 2f88ac2708
5 changed files with 107 additions and 33 deletions

View File

@@ -31,7 +31,7 @@ func newStateFromSeed(seed [][]byte) *state.State {
for i := range seed {
for _, s := range seed[i:] {
for _, b := range s {
st.IncrementSymbol(b)
st.IncrementSymbol([]byte{b})
}
}
}