mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
remove pragma once from cpp
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8d293171d5
commit
3f1f4e0f67
5 changed files with 123 additions and 128 deletions
|
@ -1,5 +1,5 @@
|
|||
/*++
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
Copyright (c) 2020 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
|
@ -15,8 +15,6 @@ Author:
|
|||
|
||||
Revision History:
|
||||
--*/
|
||||
#pragma once
|
||||
|
||||
|
||||
#include "math/lp/int_solver.h"
|
||||
#include "math/lp/lar_solver.h"
|
||||
|
@ -24,7 +22,7 @@ Revision History:
|
|||
|
||||
namespace lp {
|
||||
|
||||
int_cube::int_cube(int_solver& lia):lia(lia), lra(*lia.m_lar_solver) {}
|
||||
int_cube::int_cube(int_solver& lia):lia(lia), lra(lia.lra) {}
|
||||
|
||||
lia_move int_cube::operator()() {
|
||||
lia.settings().stats().m_cube_calls++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue