Warning: session_start(): open(/var/lib/php/sessions/sess_v7dhg572vovq45jnh0fmr8r9cj, 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
sbool applyRule_all_debug;
static void applyRule_all(S ruleID) {
// process the rule
Lisp rule = getLispTruth(ruleID);
if (rule == null) { print("Rule not found: " + ruleID); ret; }
//print("Applying rule " + ruleID);
if (applyRule_all_debug) print_setPrefixForThread(ruleID + "> ");
try {
applyRule_all(rule, ruleID);
} finally {
if (applyRule_all_debug) print_setPrefixForThread("");
}
}
svoid applyRule_all(Lisp rule, S ruleID) {
L conditions = dropLast(rule.args);
Lisp out = last(rule.args);
//for (Lisp cond : conditions) print("Condition: " + cond);
L