/export/starexec/sandbox2/solver/bin/starexec_run_hrs /export/starexec/sandbox2/benchmark/theBenchmark.xml /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- MAYBE ******** Signature ******** and : (form,form) -> form or : (form,form) -> form not : form -> form forall : (form -> form) -> form exists : (form -> form) -> form ******** Computation Rules ******** (1) and(P,forall(x.Q[x])) => forall(x.and(P,Q[x])) (2) or(P,forall(x.Q[x])) => forall(x.or(P,Q[x])) (3) and(forall(x.Q[x]),P) => forall(x.and(Q[x],P)) (4) or(forall(x.Q[x]),P) => forall(x.or(Q[x],P)) (5) not(forall(x.Q[x])) => exists(x.not(Q[x])) (6) and(P,exists(x.Q[x])) => exists(x.and(P,Q[x])) (7) or(P,exists(x.Q[x])) => exists(x.or(P,Q[x])) (8) and(exists(x.Q[x]),P) => exists(x.and(Q[x],P)) (9) or(exists(x.Q[x]),P) => exists(x.or(Q[x],P)) (10) not(exists(x.Q[x])) => forall(x.not(Q[x])) MAYBE