mirror of
https://github.com/Z3Prover/z3
synced 2025-08-15 15:25:26 +00:00
removing address dependencies
This commit is contained in:
parent
eee2d7af94
commit
ebc8a43fe3
10 changed files with 100 additions and 7 deletions
|
@ -1419,7 +1419,8 @@ namespace std {
|
|||
class less<Duality::func_decl> {
|
||||
public:
|
||||
bool operator()(const Duality::func_decl &s, const Duality::func_decl &t) const {
|
||||
return s.raw() < t.raw(); // s.raw()->get_id() < t.raw()->get_id();
|
||||
// return s.raw() < t.raw();
|
||||
return s.raw()->get_id() < t.raw()->get_id();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue