Warning: session_start(): open(/var/lib/php/sessions/sess_6sm3hdjjhohrf4m92ut3d3deb3, 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
// returns true if it fired
static bool applyRule_first(S ruleID) {
// process the rule
Lisp rule = getLispTruth(ruleID);
if (rule == null) { print("Rule not found: " + ruleID); false; }
//print("Applying rule " + ruleID);
print_setPrefixForThread(ruleID + "> ");
try {
ret applyRule_first(rule, ruleID);
} finally {
print_setPrefixForThread("");
}
}
// ruleID is just as an info parameter to emit()
static bool applyRule_first(Lisp rule, S ruleID) {
L conditions = dropLast(rule.args);
Lisp out = last(rule.args);
L