summaryrefslogtreecommitdiff
path: root/heav_optimal_shapes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'heav_optimal_shapes.lua')
-rw-r--r--heav_optimal_shapes.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/heav_optimal_shapes.lua b/heav_optimal_shapes.lua
deleted file mode 100644
index 784ba8e..0000000
--- a/heav_optimal_shapes.lua
+++ /dev/null
@@ -1,32 +0,0 @@
-local poly = require "polyomino"
-
-local M = {}
-M.__index = M
-
-M.spite_shape = poly.def("heav.spite_shape", [[
- #.#
- .#.#
- #.#.
- .#.#
-]])
-
-M.heav = poly.def("heav.heav", [[
- .#..
- .###
- ###.
- ..#.
-]])
-
-M.colon = poly.def("heav.colon", [[
- .#.
- ...
- .#.
-]])
-
-M.semicolon = poly.def("heav.semicolon", [[
- .#.
- ...
- ##.
-]])
-
-return M