mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
34 lines
612 B
C++
34 lines
612 B
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
<name>
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
Nikolaj Bjorner (nbjorner)
|
|
Lev Nachmanson (levnach)
|
|
|
|
Revision History:
|
|
--*/
|
|
#pragma once
|
|
#include "math/lp/lar_term.h"
|
|
#include "math/lp/lia_move.h"
|
|
#include "math/lp/explanation.h"
|
|
#include "math/lp/static_matrix.h"
|
|
|
|
namespace lp {
|
|
class int_solver;
|
|
class gomory {
|
|
class imp;
|
|
imp *m_imp;
|
|
public :
|
|
gomory(lar_term & t, mpq & k, explanation* ex, unsigned basic_inf_int_j, const row_strip<mpq>& row, const int_solver& s);
|
|
lia_move create_cut();
|
|
~gomory();
|
|
};
|
|
}
|