mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 21:20:52 +00:00
porting to windows
This commit is contained in:
parent
78848f3ddd
commit
28266786f3
7 changed files with 56 additions and 46 deletions
|
@ -81,8 +81,8 @@ namespace std {
|
|||
class less<Z3_resolvent > {
|
||||
public:
|
||||
bool operator()(const Z3_resolvent &x, const Z3_resolvent &y) const {
|
||||
size_t ixproof = (size_t) x.proof;
|
||||
size_t iyproof = (size_t) y.proof;
|
||||
size_t ixproof = (size_t) x.proof.raw();
|
||||
size_t iyproof = (size_t) y.proof.raw();
|
||||
if(ixproof < iyproof) return true;
|
||||
if(ixproof > iyproof) return false;
|
||||
return x.pivot < y.pivot;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue