Warning: session_start(): open(/var/lib/php/sessions/sess_hs4apjjnqd41n52dp8981hrddo, 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
!7 standardBot1 DiscordToPhilosophyBot { transient S theory = [[ import math theory (a human weighs between 80 and 400 pounds) { $x is a human & $x weighs $y pounds => $y >= 80 & $y <= 400 } $x says (i weigh $y pounds) => $x weighs $y pounds $x says (my weight is $y pounds) => $x weighs $y pounds ]]; sync S processSimplifiedLine(S s, O... _) { try answer super.processSimplifiedLine(s, _); optPar long userID; optPar bool fromBot; print(userID + " (" + (fromBot ? "bot" : "human") + "): " + s); S user = "(user " + userID + ")"; PhilosophyBot1 bot = new(theory); bot.debugContradictionChecks = true; bot.standardImports(); bot.autoOpenTheories(); bot.addFact(user + " is a " + (fromBot ? "bot" : "human")); bot.addFact(user + " says (" + s + ")"); bot.run(); if (bot.hasContradiction()) ret "That can't be right"; null; } }