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
Tensor<complex<double>,3,3> a = {{1,0,0},{0,0,0},{0,0,0}};
std::cout << a << std::endl << std::endl;
auto b = a*std::complex<double>(3,5);
std::cout << b << std::endl;
results in
which is unexpected. Multiplying a complex tensor with a double however works fine.
Possibly related to #146 .
The text was updated successfully, but these errors were encountered: