// returns answers in english static L lispSolveQuestionVerbose(S q) { Lisp l = englishToLisp_best(q); print(q); openThoughtSpace(); fromUser(lisp("vouwrrhtmajsgaby", l)); // emit question //set applyAlwaysRules_step_debug; applyRules(); L answers = lispTruth1("nywfcwkkcknzhmdy"); new L out; for (Lisp la : answers) { S a = lispToEnglish(la); printIndent(a); out.add(lispToEnglish(la.get(0))); // drop the "A:" prefix } //printLispStatements(); thoughtSpace(null); ret out; }