From 6881275e3205d541fdd0251f6778f7d19c28f3f9 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 8 Feb 2024 12:17:21 +0100 Subject: [PATCH] todo now correctly contains polycubes --- julia/main.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia/main.jl b/julia/main.jl index dbe2169..5fd2bb1 100644 --- a/julia/main.jl +++ b/julia/main.jl @@ -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}}()