Skip to content

Commit

Permalink
Merge pull request #6 from Veridise/basis2-fix
Browse files Browse the repository at this point in the history
BUG FIX: basis2 lemma only valid for bit sizes < 254.
  • Loading branch information
chyanju authored Aug 18, 2023
2 parents c120fd0 + 1fca1b5 commit cea6fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions picus/algorithms/lemmas/basis2-lemma.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
(values tmp-ks tmp-us)
)

(define basis2-seqs (for/set ([i (range 270)])
(define basis2-seqs (for/set ([i (range 253)])
(for/set ([j (range (+ 1 i))])
(expt 2 j)
)
Expand Down Expand Up @@ -207,4 +207,4 @@
]
)
(values tmp-ks tmp-us)
)
)

0 comments on commit cea6fb9

Please sign in to comment.