| 215 | } |
| 216 | |
| 217 | void BaseVector :: InnerProduct (const BaseVector & v2, BaseScalar & scal, bool conjugate) const |
| 218 | { |
| 219 | if (IsComplex() || v2.IsComplex()) |
| 220 | scal.Set (InnerProductC(v2, conjugate)); |
| 221 | else |
| 222 | scal.Set (InnerProductD(v2)); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | /* |
nothing calls this directly
no test coverage detected