Skip to content

Commit

Permalink
Merge pull request #1270 from goblint/query_ordering
Browse files Browse the repository at this point in the history
Fix ordering of queries by deduplicating indices.
  • Loading branch information
sim642 authored Nov 23, 2023
2 parents 6389a7f + 9bb9ae2 commit 2f5e555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/domains/queries.ml
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ struct
| Any (MustTermLoop _) -> 53
| Any MustTermAllLoops -> 54
| Any IsEverMultiThreaded -> 55
| Any (TmpSpecial _) -> 53
| Any (IsAllocVar _) -> 54
| Any (TmpSpecial _) -> 56
| Any (IsAllocVar _) -> 57

let rec compare a b =
let r = Stdlib.compare (order a) (order b) in
Expand Down

0 comments on commit 2f5e555

Please sign in to comment.