Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-05 | replace some hash table usage by tuples | JSDurand | |
Previously I used hash tables, which consume too much memory. Now the critical parts are replaced by a new hand-written library called "tuple.h". Now we can easily parse larger inputs. I haven't tested its limits, though. | |||
2022-02-01 | need to stop abusing hash tables | JSDurand | |
Hash tables take too much space! If I use hash tables, the length of the input will be severely limited, to an unacceptable extent. So we have to use arrays instead. | |||
2022-01-28 | BSR | JSDurand | |
A prototype of BSR is roughly finished. |