static L tok_classifyEnglishWord(S t) { new HashSet l; if (isNoun(t)) l.add("noun"); if (isAdjective(t)) l.add("adjective"); l.addAll(ai_isAWhat(t)); ret ai_sortCategoriesBySize(l); }