Skip to content

Commit

Permalink
fix substrSparseBytes
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyalcinkaya committed Oct 22, 2023
1 parent 89a9221 commit 76f42d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/sparse-bytes.k
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module SPARSE-BYTES

rule substrSparseBytes(SBChunk(SBI) REST, S, E)
=> #let SUB = substrSBItem(SBI, S, E)
#in SUB substrSparseBytes(REST, S -Int size(SUB), E -Int size(SUB))
#in SUB substrSparseBytes(REST, 0, E -Int size(SBI))
requires 0 <=Int S andBool S <=Int E
andBool size(SBI) >Int S

Expand Down

0 comments on commit 76f42d0

Please sign in to comment.