Warning: session_start(): open(/var/lib/php/sessions/sess_5cv7i8dj3k9e5sh66nnjbgj06r, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// clever index of tokenized strings // maintaining one CI-sorted list per token position sclass PositionalTokenIndex2 { new L indices; // index = token count *() {} *(Iterable toks) { addAll(toks); } void addAll(Iterable toks) { fOr (LS tok : toks) add(tok); } void add(LS tok) { listGetOrCreate_List(indices, l(tok)/2).add(tok); } // return all tokenizations with token t in position i // having tokenCount code tokens // may return null LLS byToken(int i, S t, int tokenCount) { PositionalTokenIndex idx = get(indices, tokenCount); ret idx == null ? null : idx.byToken(i, t); } void clean() { for (PositionalTokenIndex idx : indices) idx.clean(); } }