JoeyT1994 / ITensorNumericalAnalysis.jl

MIT License
3 stars 0 forks source link

Fix constant itn w/ large link_dim #26

Closed ryanlevy closed 3 months ago

ryanlevy commented 3 months ago

Noticed that calculate_fxyz(const_itn(s;c=2, linkdim=8),[0,0]) did not equal 2. This now works

L = 12
g = NamedGraph(SimpleGraph(uniform_tree(L)))
s = continuous_siteinds(g; map_dimension=2)
@show calculate_fxyz(const_itn(s;c=2, linkdim=8),[0,0])

But the test does not pass so my logic is not quite right...