Skip to content

Commit

Permalink
more buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
umadayal committed Oct 14, 2024
1 parent c80d197 commit 4635560
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/core/executor/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,12 @@ impl<'a> Executor<'a> {
.min()
.unwrap();

if l_infinity >= 64 {
// compute distance from every shape
// if the max distance is less than 64, then we have a shape match

// if the min distance is less than 64, then we have a shape match

if l_infinity >= 1024 {
shape_match_found = true;
break;
}
Expand Down

0 comments on commit 4635560

Please sign in to comment.