Closed Marcel-Rodekamp closed 1 year ago
There are two different behaviors of the assignment operator:
NSL::Tensor<type> A(2); NSL::Tensor<type> B = A; // shallow copy NSL::Tensor<type> B; B = A; // deep copy
clarify this! It should behave similarly!
It is not a bug but rather a desired behavior see PR #111.
There are two different behaviors of the assignment operator:
clarify this! It should behave similarly!