3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +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

@ -22,8 +22,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_H_
#define SUBPAVING_H_
#pragma once
#include "util/mpq.h"
#include "math/subpaving/subpaving_types.h"
@ -120,4 +119,3 @@ context * mk_mpfx_context(reslimit& lim, mpfx_manager & m, unsynch_mpq_manager &
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_HWF_H_
#define SUBPAVING_HWF_H_
#pragma once
#include "math/subpaving/subpaving_t.h"
#include "util/f2n.h"
@ -45,4 +44,3 @@ public:
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_MPF_H_
#define SUBPAVING_MPF_H_
#pragma once
#include "math/subpaving/subpaving_t.h"
#include "util/mpf.h"
@ -46,4 +45,3 @@ public:
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_MPFF_H_
#define SUBPAVING_MPFF_H_
#pragma once
#include "math/subpaving/subpaving_t.h"
#include "util/mpff.h"
@ -42,4 +41,3 @@ typedef context_t<config_mpff> context_mpff;
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_MPFX_H_
#define SUBPAVING_MPFX_H_
#pragma once
#include "math/subpaving/subpaving_t.h"
#include "util/mpfx.h"
@ -42,4 +41,3 @@ typedef context_t<config_mpfx> context_mpfx;
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_MPQ_H_
#define SUBPAVING_MPQ_H_
#pragma once
#include "math/subpaving/subpaving_t.h"
#include "util/mpq.h"
@ -40,4 +39,3 @@ typedef context_t<config_mpq> context_mpq;
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_T_H_
#define SUBPAVING_T_H_
#pragma once
#include<iostream>
#include "util/tptr.h"
@ -848,4 +847,3 @@ public:
};
#endif

View file

@ -17,8 +17,7 @@ Author:
Notes:
--*/
#ifndef EXPR2SUBPAVING_H_
#define EXPR2SUBPAVING_H_
#pragma once
#include "ast/ast.h"
#include "math/subpaving/subpaving.h"
@ -50,4 +49,3 @@ public:
};
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef SUBPAVING_TACTIC_H_
#define SUBPAVING_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -28,4 +27,3 @@ tactic * mk_subpaving_tactic(ast_manager & m, params_ref const & p = params_ref(
ADD_TACTIC("subpaving", "tactic for testing subpaving module.", "mk_subpaving_tactic(m, p)")
*/
#endif