Skip to content

Commit

Permalink
feat: add se_disk2
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaniaguam committed Nov 19, 2024
1 parent 90b3177 commit 5362d04
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/special_strels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ function se_disk20()
se = [sum(c.I) <= 11 for c in CartesianIndices((39, 39))]
_generate_se!(se)
return se
end
end

function se_disk2()
se = [sum(c.I) <= 3 for c in CartesianIndices((5,5))]
_generate_se!(se)
return se
end

0 comments on commit 5362d04

Please sign in to comment.