3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 22:41:15 +00:00

fix the crash

This commit is contained in:
Lev Nachmanson 2024-08-15 18:18:22 -10:00 committed by Lev Nachmanson
parent abf29b57aa
commit 3b22d3b19d
4 changed files with 12 additions and 8 deletions

View file

@ -31,16 +31,17 @@ Revision History:
namespace lp {
class lar_solver;
class lar_core_solver;
struct imp;
class int_solver {
friend struct create_cut;
friend class gomory;
friend class int_cube;
friend class int_branch;
friend class int_gcd_test;
friend class hnf_cutter;
friend struct imp;
friend class imp;
friend class dioph_eq;
class imp;
lar_solver& lra;
lar_core_solver& lrac;
imp* m_imp;