| 147 | |
| 148 | template < index_t dimension > |
| 149 | double SquareMatrix< dimension >::determinant() const |
| 150 | { |
| 151 | throw OpenGeodeGeometryException{ nullptr, |
| 152 | OpenGeodeException::TYPE::internal, |
| 153 | "[SquareMatrix::determinant] Not implemented for dimension ", |
| 154 | dimension }; |
| 155 | } |
| 156 | |
| 157 | template <> |
| 158 | double opengeode_geometry_api SquareMatrix< 2 >::determinant() const |
no outgoing calls