todo now correctly contains polycubes

This commit is contained in:
=
2024-02-08 12:17:21 +01:00
parent 7b34c16f05
commit 6881275e32

View File

@@ -5,7 +5,7 @@ import JSON: json
function main(maxsize::Int)
root_pcube = PolyCube([(0, 0, 0)], [(0, 0, 0)])
todo = Vector{Coord}(undef, 0)
todo = Vector{PolyCube}(undef, 0)
push!(todo, root_pcube)
polycubes = Dict{Vector{Coord}, Vector{Coord}}()