mirror of
https://github.com/Z3Prover/z3
synced 2025-06-15 02:16:16 +00:00
8 lines
571 B
Text
8 lines
571 B
Text
def_module_params('nnf',
|
|
description='negation normal form',
|
|
export=True,
|
|
params=(max_memory_param(),
|
|
('sk_hack', BOOL, False, 'hack for VCC'),
|
|
('mode', SYMBOL, 'skolem',
|
|
'NNF translation mode: skolem (skolem normal form), quantifiers (skolem normal form + quantifiers in NNF), full'),
|
|
('ignore_labels', BOOL, False, 'remove/ignore labels in the input formula, this option is ignored if proofs are enabled')))
|