3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
z3/src/math/lp/dioph_eq.h
Lev Nachmanson 52653e6e43 a version with less pointers: got a conflict
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2025-02-11 12:23:00 -10:00

35 lines
610 B
C++

/*++
Copyright (c) 2024 Microsoft Corporation
Module Name:
diophantine equations
Abstract:
Following "A Practical Approach to Satisfiability Modulo Linear Integer Arithmetic"
by Alberto Griggio(griggio@fbk.eu)
Author:
Lev Nachmanson (levnach)
Revision History:
--*/
#pragma once
#include "math/lp/lia_move.h"
namespace lp {
class int_solver;
class dioph_eq {
class imp;
int_solver& lia;
imp* m_imp;
public:
dioph_eq(int_solver& lia);
~dioph_eq();
lia_move check();
void explain(lp::explanation&);
};
}