Skip to content

Commit f0e409d

Browse files
authored
Upgrade to FunctionImplementations v0.4 (#48)
1 parent cbba3e4 commit f0e409d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorNetworksNext"
22
uuid = "302f2e75-49f0-4526-aef7-d8ba550cb06c"
33
authors = ["ITensor developers <support@itensor.org> and contributors"]
4-
version = "0.3.5"
4+
version = "0.3.6"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
@@ -39,7 +39,7 @@ Combinatorics = "1"
3939
DataGraphs = "0.2.7"
4040
DiagonalArrays = "0.3.23"
4141
Dictionaries = "0.4.5"
42-
FunctionImplementations = "0.3"
42+
FunctionImplementations = "0.4"
4343
Graphs = "1.13.1"
4444
LinearAlgebra = "1.10"
4545
MacroTools = "0.5.16"

src/LazyNamedDimsArrays/lazyinterface.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ opwalk(opmap, a) = walk(opmap, identity, a)
2323
argwalk(argmap, a) = walk(identity, argmap, a)
2424

2525
# Generic lazy functionality.
26-
using FunctionImplementations: AbstractArrayStyle
27-
struct LazyStyle <: AbstractArrayStyle end
28-
const lazy_style = LazyStyle()
26+
using FunctionImplementations: AbstractArrayImplementationStyle
27+
struct LazyNamedDimsArrayImplementationStyle <: AbstractArrayImplementationStyle end
28+
const lazy_style = LazyNamedDimsArrayImplementationStyle()
2929

3030
const maketerm_lazy = lazy_style(maketerm)
3131
function maketerm_lazy(type::Type, head, args, metadata)

0 commit comments

Comments
 (0)