3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

added option fixedpoint.spacer.print_farkas_stats to print number of Farkas lemmas in each proof

This commit is contained in:
Bernhard Gleiss 2017-10-12 16:36:11 +02:00 committed by Arie Gurfinkel
parent 4148ee128c
commit 56fcb8e6fd
6 changed files with 56 additions and 5 deletions

View file

@ -187,6 +187,7 @@ def_module_params('fixedpoint',
('spacer.farkas_a_const', BOOL, True, 'if the unoptimized farkas plugin is used, use the constants from A while constructing unsat_cores'),
('spacer.lemma_sanity_check', BOOL, False, 'check during generalization whether lemma is actually correct'),
('spacer.reuse_pobs', BOOL, True, 'reuse POBs'),
('spacer.print_farkas_stats', BOOL, False, 'prints for each proof how many Farkas lemmas it contains and how many of these participate in the cut'),
('spacer.simplify_pob', BOOL, False, 'simplify POBs by removing redundant constraints')
))