3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-29 15:37:58 +00:00

preparing niil files

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-08-08 15:17:57 +08:00 committed by Lev Nachmanson
parent c979c694f6
commit a5c62bfcc4
5 changed files with 100 additions and 8 deletions

37
src/util/lp/niil_solver.h Normal file
View file

@ -0,0 +1,37 @@
/*++
Copyright (c) 2017 Microsoft Corporation
Module Name:
<name>
Abstract:
<abstract>
Author:
Nikolaj Bjorner (nbjorner)
Lev Nachmanson (levnach)
Revision History:
--*/
#pragma once
#include "util/vector.h"
#include "util/lp/lp_settings.h"
#include "util/rlimit.h"
#include "util/params.h"
#include "nlsat/nlsat_solver.h"
#include "util/lp/lar_solver.h"
namespace niil {
// nonlinear integer incremental linear solver
class solver {
public:
struct imp;
imp* m_imp;
void add_monomial(lp::var_index v, unsigned sz, lp::var_index const* vs);
solver(lp::lar_solver& s, reslimit& lim, params_ref const& p);
};
}