mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
29 lines
385 B
C++
29 lines
385 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
nlsat_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic for using nonlinear procedure.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-01-02
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _NLSAT_TACTIC_H_
|
|
#define _NLSAT_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_nlsat_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|