Closed Marcel-Rodekamp closed 2 years ago
We have two overloads of conj in different namespaces:
conj
template<typename T> NSL::conj(T) template<NSL::Concept::Number T> NSL::LinAlg::conj(NSL::Tensor<T>)
which potentially causes issues if the LinAlg scope is forgotten. Two things to fix here:
LinAlg
Concept::Number
This was resolved before #104.
We have two overloads of
conj
in different namespaces:which potentially causes issues if the
LinAlg
scope is forgotten. Two things to fix here:LinAlg
for propper overloadingConcept::Number
to the function