Skip to content

Commit

Permalink
Remove extra factor of 4. (#458)
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Mitchell <[email protected]>
  • Loading branch information
markpmitchell and Mark Mitchell authored Sep 26, 2023
1 parent 6d4c28e commit c5d5753
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 c5d5753

Please sign in to comment.