3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 05:30:51 +00:00

add ddnf tests, add facility to solve QF_NRA + QF_UF(and other theories) in joint solver to allow broader use of QF_NRA core

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-05-09 19:40:34 -07:00
parent 9377779e58
commit 839e3fbb7c
20 changed files with 1158 additions and 8 deletions

View file

@ -0,0 +1,31 @@
/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qfufnra_tactic.h
Abstract:
Tactic for QF_UFNRA
Author:
Leonardo (leonardo) 2012-02-28
Notes:
--*/
#ifndef _QFUFNRA_TACTIC_
#define _QFUFNRA_TACTIC_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfufnra_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("qfufnra", "builtin strategy for solving QF_UNFRA problems.", "mk_qfufnra_tactic(m, p)")
*/
#endif