Skip to content

Commit

Permalink
combinatorial explosion building sigs
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed Dec 15, 2023
1 parent 64ed665 commit dfc4bd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/bytematcher/patterns/overlap.go
Expand Up @@ -37,7 +37,8 @@ func aggregateOverlap(p Pattern, of overlapFunc) int {
for _, v := range seqs {
for _, vv := range seqs {
counter++
if counter > 10000 {
if counter > 1000000 {
//panic("counter exploded!")
return ret
}
if r := of(v, vv); r < ret {
Expand Down

0 comments on commit dfc4bd5

Please sign in to comment.