Skip to content

Commit

Permalink
Replace the optimized version of "ceil" function by the actually defi…
Browse files Browse the repository at this point in the history
…ned "ceil" function.

Github: Closes #103
  • Loading branch information
JeromeMartinez authored and michaelni committed Feb 4, 2018
1 parent 18375b0 commit 4428ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffv1.md
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ QuantizationTableSet( i ) { |
QuantizationTable( i, j, scale ) |
scale *= 2 * len_count[ i ][ j ] - 1 |
} |
context_count[ i ] = ( scale + 1 ) / 2 |
context_count[ i ] = ceil ( scale / 2 ) |
} |
```

Expand Down

0 comments on commit 4428ead

Please sign in to comment.