Skip to content

Commit

Permalink
Merge 9f3cc35 into 6d4c28e
Browse files Browse the repository at this point in the history
  • Loading branch information
markpmitchell authored Sep 26, 2023
2 parents 6d4c28e + 9f3cc35 commit 2e51d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcsat/bv/explain/arith_norm.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ term_t arith_normalise_upto(arith_norm_t* norm, term_t u, uint32_t w){

term_t *preproc[4];
for (int i = 0; i < 4; i ++)
preproc[i] = (term_t *) safe_malloc(4 * w * sizeof(term_t));
preproc[i] = (term_t *) safe_malloc(w * sizeof(term_t));

// We initialise the hashmap
fix_htbl_init(preproc[0], w);
Expand Down

0 comments on commit 2e51d8f

Please sign in to comment.