mirror of
https://github.com/Z3Prover/z3
synced 2025-07-23 12:48:53 +00:00
add options to perform transitive reduction and add hyper binary clauses
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
15d8532d27
commit
62e3906957
9 changed files with 189 additions and 25 deletions
|
@ -1,5 +1,6 @@
|
|||
def_module_params(module_name='sat',
|
||||
class_name='sat_scc_params',
|
||||
export=True,
|
||||
params=(('scc', BOOL, True, 'eliminate Boolean variables by computing strongly connected components'),))
|
||||
params=(('scc', BOOL, True, 'eliminate Boolean variables by computing strongly connected components'),
|
||||
('scc.tr', BOOL, False, 'apply transitive reduction, eliminate redundant binary clauses'), ))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue