Warning: session_start(): open(/var/lib/php/sessions/sess_f8307ee86a510r78hdod31tgi2, 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
static void printThoughtSpace(AbstractThoughtSpace ts) {
if (ts == null) ret;
if (ts instanceof GlobalThoughtSpace) ret with print("Global thought space");
if (!ts instanceof ActualThoughtSpace) ret with print(className(ts));
ActualThoughtSpace ats = cast ts;
print("Thought space with " + nWeb(ts.size()) + ":");
for (TripleWeb w : ats.index.allTriples())
print(" " + w);
print();
}
static void printThoughtSpace() {
printThoughtSpace(currentThoughtSpace());
}