From 510b10b96b546fcc6c6b6be85050305ddd192a41 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Sat, 5 Feb 2022 17:30:11 +0800 Subject: replace some hash table usage by tuples 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. --- src/cnp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cnp.h') diff --git a/src/cnp.h b/src/cnp.h index 904e383..7d4a862 100644 --- a/src/cnp.h +++ b/src/cnp.h @@ -2,6 +2,7 @@ #define CNP_H #include "str.h" #include "utf8.h" +#include "tuple.h" #include "bsr.h" #include "crf.h" -- cgit v1.2.3-18-g5258