Warning: session_start(): open(/var/lib/php/sessions/sess_3ac112g5p1ugmath8rv580dnoi, 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 Exp nlLogic_transformShallow(Exp e, F1 f) {
if (e == null) null;
if (e cast And)
ret And(callF(f, e.a), callF(f, e.b));
if (e cast ExpNot)
ret ExpNot(callF(f, e.a));
ret callF(f, e);
}
static Exp nlLogic_transformShallow(IfThen rule, F1 f) {
if (rule == null) null;
rule = shallowClone(rule);
rule.in = nlLogic_transformShallow(rule.in, f);
rule.out = nlLogic_transformShallow(rule.out, f);
ret rule;
}