You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If the same tensor shows up more than once in a tensor expression, then it cannot be correctly factorized. Related to #210, #228, #232.
To Reproduce
n = 2
V = ff.tensor('V', n, n)
i, j, k = ff.indices('i, j, k')
tsrex_eigh = V[i, j] * V[j, k]
fac = ff.factorize(
tsrex_eigh,
np.eye(n, dtype=np.float32)
)
Describe the bug
If the same tensor shows up more than once in a tensor expression, then it cannot be correctly factorized. Related to #210, #228, #232.
To Reproduce
gets
Expected behavior
A trivial solution should be found easily.
The text was updated successfully, but these errors were encountered: