![]() |
Code Examples
A repository of 155 code examples for BeepBeep
|
Solves the QBF problem for the formula:
∀x ∃y ∃z : (x ∨ y) ∧ (¬x ∨ c) ∧ (¬y ∨ ¬ z)
The pipeline to solve this problem is the following: More...
Classes | |
class | Expression |
Representation of the Boolean expression (x ∨ y) ∧ (¬x ∨ c) ∧ (¬y ∨ ¬ z). | |
Static Public Member Functions | |
static void | main (String[] args) |
Solves the QBF problem for the formula:
∀x ∃y ∃z : (x ∨ y) ∧ (¬x ∨ c) ∧ (¬y ∨ ¬ z)
The pipeline to solve this problem is the following:
Definition at line 44 of file Formula1.java.