From 77094a982f3bd02600e1756d4dad4e203af9a5b8 Mon Sep 17 00:00:00 2001 From: Maxime Vorwerk Date: Tue, 29 Aug 2023 15:32:21 +0200 Subject: [PATCH] replaced Stack with vector --- julia/CubeShapeCounting.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/julia/CubeShapeCounting.jl b/julia/CubeShapeCounting.jl index aa50bbc..9244532 100644 --- a/julia/CubeShapeCounting.jl +++ b/julia/CubeShapeCounting.jl @@ -5,7 +5,6 @@ include("TupleMisc.jl") include("plot.jl") using XXhash using Serialization -using DataStructures using ArgParse function main() @@ -42,7 +41,7 @@ end function scanForShapes(MaxSize::Int64) D = Dict{UInt, ImmutableOrientedShape}() - S = Stack{Shape}(); + S = Vector{Shape}(); cube = getCube() immutableCube = getImmutableOrientedShape(cube) D[immutableCube.hash] = immutableCube