diff --git a/Project.toml b/Project.toml index b4f3ec1c..130b0588 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ITensorBase" uuid = "4795dd04-0d67-49bb-8f44-b89c448a1dc7" -version = "0.13.13" +version = "0.13.14" authors = ["ITensor developers and contributors"] [workspace] diff --git a/src/lazyitensors/lazyinterface.jl b/src/lazyitensors/lazyinterface.jl index a76ca0fc..057e859b 100644 --- a/src/lazyitensors/lazyinterface.jl +++ b/src/lazyitensors/lazyinterface.jl @@ -117,7 +117,7 @@ function isequal_lazy(a1, a2) end end function hash_lazy(a, h::UInt64) - h = hash(Symbol(Base.typename(typeof(a)).wrapper), h) + h = hash(nameof(typeof(a)), h) # Use `_hash`, which defines a custom hash for NamedTensor. return _hash(unwrap(a), h) end