3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-11 03:33:35 +00:00

Merge pull request #1877 from waywardmonkeys/signed_comparison

dl_util: Use an unsigned to match other values.
This commit is contained in:
Nikolaj Bjorner 2018-10-12 22:41:58 -07:00 committed by GitHub
commit 3a6d735d0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -276,7 +276,7 @@ namespace datalog {
}
unsigned n = container.size();
unsigned ofs = 1;
int r_i = 1;
unsigned r_i = 1;
for(unsigned i=removed_cols[0]+1; i<n; i++) {
if(r_i!=removed_col_cnt && removed_cols[r_i]==i) {
r_i++;