changed Shape to Polycube

This commit is contained in:
Maxime Vorwerk
2023-09-25 03:58:25 +02:00
parent 08599a2d79
commit 638d02ddf6
4 changed files with 55 additions and 55 deletions

View File

@@ -0,0 +1,10 @@
using XXhash
struct ImmutableOrientedPolycube
cubes::Vector{Tuple{Int64, Int64, Int64}}
hash::UInt
end
function getImmutableOrientedPolycube(S::Polycube)
shape = ImmutableOrientedPolycube(S.orderedLists[1], hashList(S.orderedLists[1]))
end