3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00
z3/lib/gl_tactic.h
Leonardo de Moura e9eab22e5c Z3 sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-02 11:35:25 -07:00

30 lines
350 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
gl_tactic.h
Abstract:
A T-function/Goldreich Levin-based heuristic.
Author:
Nikolaj (nbjorner) 2011-12-18
Notes:
--*/
#ifndef _GL_TACTIC_H_
#define _GL_TACTIC_H_
#include"tactic.h"
namespace gl {
tactic * mk_tactic(ast_manager& m, params_ref const& p);
};
#endif