mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 18:15:32 +00:00
31 lines
654 B
C++
31 lines
654 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
bit_blaster_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Apply bit-blasting to a given goal.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-10-25
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "util/params.h"
|
|
#include "ast/rewriter/bit_blaster/bit_blaster_rewriter.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_bit_blaster_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
tactic * mk_bit_blaster_tactic(ast_manager & m, bit_blaster_rewriter* rw, params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("bit-blast", "reduce bit-vector expressions into SAT.", "mk_bit_blaster_tactic(m, p)")
|
|
*/
|
|
|