deprecate `VectorSize`
In densematrix.hh there is a helper class VectorSize
that returns N
for objects v
of type FieldVector<K,N>
and returns v.size()
for other objects.
Given FieldVector
also provides a size()
method, this helper class seems unneeded: just call v.size()
.
It does not seem to be used in other core module.
I propose to deprecate the helper class.