mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
31 lines
553 B
C++
31 lines
553 B
C++
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
bvarray2ufbvarray2uf_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic that rewrites bit-vector arrays into bit-vector
|
|
(uninterpreted) functions.
|
|
|
|
Author:
|
|
|
|
Christoph (cwinter) 2015-11-04
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "util/params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_bvarray2uf_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("bvarray2uf", "Rewrite bit-vector arrays into bit-vector (uninterpreted) functions.", "mk_bvarray2uf_tactic(m, p)")
|
|
*/
|
|
|
|
|