3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 01:27:41 +00:00
z3/src/muz/transforms/dl_mk_bit_blast.h
Nikolaj Bjorner b19f94ae5b make include paths uniformly use path relative to src. #534
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2017-07-31 13:24:11 -07:00

38 lines
642 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
dl_mk_bit_blast.h
Abstract:
Functor for bit-blasting a rule set
Author:
Nikolaj Bjorner (nbjorner) 2012-08-30
Revision History:
--*/
#ifndef DL_MK_BIT_BLAST_H_
#define DL_MK_BIT_BLAST_H_
#include "muz/base/dl_rule_transformer.h"
namespace datalog {
class mk_bit_blast : public rule_transformer::plugin {
class impl;
impl* m_impl;
public:
mk_bit_blast(context & ctx, unsigned priority = 35000);
~mk_bit_blast();
rule_set * operator()(rule_set const & source);
};
};
#endif /* DL_MK_BIT_BLAST_H_ */