mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
make it C++17 friendly
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
20a5baeb70
commit
db242c28c6
3 changed files with 11 additions and 10 deletions
|
@ -88,6 +88,8 @@ namespace polysat {
|
|||
pdd rhs;
|
||||
bool is_strict;
|
||||
constraint const* src;
|
||||
inequality(pdd const & lhs, pdd const & rhs, bool is_strict, constraint const* src):
|
||||
lhs(lhs), rhs(rhs), is_strict(is_strict), src(src) {}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue