Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
imos committed Jul 20, 2020
1 parent ba9847d commit 9f2945a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ fn preprocess() -> Preprocess {
for j in 0..n {
for di in 0..m {
for dj in 0..m {
if dp[i][j][di][dj] >= 256 {
if dp[i][j][di][dj] >= 384 {
// if test_naive(i as i32 - W, j as i32 - W, di as i32 - 10, dj as i32 - 10, &gx, &gy) >= 256 {
count += 1;
}
Expand Down

0 comments on commit 9f2945a

Please sign in to comment.