3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 21:26:59 +00:00

working on cardinality tactic

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-06 12:33:09 -08:00
parent e84c5e7e90
commit 2f04918c39
4 changed files with 488 additions and 11 deletions

View file

@ -0,0 +1,33 @@
/*++
Copyright (c) 2013 Microsoft Corporation
Module Name:
lia2card_tactic.h
Abstract:
Extract 0-1 integer variables used in
cardinality constraints and replace them by Booleans.
Author:
Nikolaj Bjorner (nbjorner) 2013-11-5
Notes:
--*/
#ifndef _LIA2CARD_TACTIC_H_
#define _LIA2CARD_TACTIC_H_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_lia2card_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("lia2card", "introduce cardinality constraints from 0-1 integer.", "mk_lia2card_tactic(m, p)")
*/
#endif