please include function getThoughtSpace. static void printThoughtSpaces() { for (ThoughtSpace ts : values(getThoughtSpace_map)) { print(); print("Thought Space " + ts.globalID + ":\n"); for (LispStatement s : values(ts.statements)) { printIndent("[" + s.globalID + "] " + lispToEnglish_prettier(s.term)); printIndent(" " + s.term); } print(); } }