3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-12 22:20:54 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:56:30 -07:00
parent 10d0404175
commit d0e20e44ff
714 changed files with 714 additions and 2142 deletions

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef FPA2BV_MODEL_CONVERTER_H_
#define FPA2BV_MODEL_CONVERTER_H_
#pragma once
#include "ast/fpa/fpa2bv_converter.h"
#include "tactic/model_converter.h"
@ -58,4 +57,3 @@ protected:
model_converter * mk_fpa2bv_model_converter(ast_manager & m, fpa2bv_converter & conv);
#endif

View file

@ -16,8 +16,7 @@ Author:
Notes:
--*/
#ifndef FPA2BV_TACTIC_H_
#define FPA2BV_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -28,4 +27,3 @@ tactic * mk_fpa2bv_tactic(ast_manager & m, params_ref const & p = params_ref());
ADD_TACTIC("fpa2bv", "convert floating point numbers to bit-vectors.", "mk_fpa2bv_tactic(m, p)")
*/
#endif

View file

@ -17,8 +17,7 @@ Notes:
--*/
#ifndef QFFP_TACTIC_H_
#define QFFP_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -38,4 +37,3 @@ probe * mk_is_qffpbv_probe();
ADD_PROBE("is-qffpbv", "true if the goal is in QF_FPBV (floats+bit-vectors).", "mk_is_qffpbv_probe()")
*/
#endif

View file

@ -18,8 +18,7 @@ Notes:
--*/
#ifndef QFFPLRA_TACTIC_H_
#define QFFPLRA_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -35,4 +34,3 @@ probe * mk_is_qffplra_probe();
ADD_PROBE("is-qffplra", "true if the goal is in QF_FPLRA.", "mk_is_qffplra_probe()")
*/
#endif