mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
35 lines
610 B
C++
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&);
|
|
};
|
|
}
|