| 203 | |
| 204 | |
| 205 | double BaseVector :: InnerProductD (const BaseVector & v2) const |
| 206 | { |
| 207 | return dynamic_cast<const S_BaseVector<double>&> (*this) . |
| 208 | InnerProduct (v2); |
| 209 | } |
| 210 | |
| 211 | Complex BaseVector :: InnerProductC (const BaseVector & v2, bool conjugate) const |
| 212 | { |
nothing calls this directly
no test coverage detected