3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-22 11:07:51 +00:00
z3/src/tactic/smtlogics/nra_tactic.h
Christoph M. Wintersteiger ce69072305 Made nra tactic public.
2016-05-25 18:21:04 +01:00

28 lines
393 B
C

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
nra_tactic.h
Abstract:
Tactic for NRA
Author:
Leonardo (leonardo) 2012-03-13
Notes:
--*/
#ifndef NRA_TACTIC_H_
#define NRA_TACTIC_H_
tactic * mk_nra_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("nra", "builtin strategy for solving NRA problems.", "mk_nra_tactic(m, p)")
*/
#endif