static S ai_matrix_verbToAnswer(S s) { if (eqic(s, "is")) ret "yes"; if (eqic(s, "is not")) ret "no"; if (swic(s, "under ")) null; // results of matrix functions clutter up matrix page new Matches m; if (ewic(s, " is", m)) ret m.rest(); if (ewic(s, " is not", m)) ret m.rest() + " not"; null; }