Skip to content

Commit

Permalink
fix project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
GiggleLiu committed May 24, 2021
1 parent a7f2c12 commit 3aa20d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ MacroTools = "0.5"
PkgBenchmark = "0.2"
Requires = "0.5, 1"
TupleTools = "1.2"
AbstractTrees = "0.3"
julia = "1"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/einsequence.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ using AbstractTrees
function AbstractTrees.children(ne::NestedEinsum)
d = Dict()
for (k,item) in enumerate(ne.args)
d[k] = item isa Integer ? join(OMEinsum.getixs(ne.eins)[k]) : item
d[k] = item isa Integer ? _join(OMEinsum.getixs(ne.eins)[k]) : item
end
d
end
Expand Down

0 comments on commit 3aa20d2

Please sign in to comment.