SpECTRE Documentation Coverage Report
Current view: top level - DataStructures - Matrix.hpp Hit Total Coverage
Commit: a6a8ee404306bec9d92da8ab89f636b037aefc25 Lines: 2 2 100.0 %
Date: 2024-07-26 22:35:59
Legend: Lines: hit not hit

          Line data    Source code
       1           1 : // Distributed under the MIT License.
       2             : // See LICENSE.txt for details.
       3             : 
       4             : /// \file
       5             : /// Defines class Matrix.
       6             : 
       7             : #pragma once
       8             : 
       9             : #include "DataStructures/DynamicMatrix.hpp"
      10             : 
      11             : /*!
      12             :  * \ingroup DataStructuresGroup
      13             :  * \brief A dynamically sized matrix of `double`s with column-major storage.
      14             :  *
      15             :  * \note This is a thin wrapper around `blaze::DynamicMatrix`. Please refer to
      16             :  * [Blaze documentation](https://bitbucket.org/blaze-lib/blaze/wiki/Matrices)
      17             :  * for information on how to use it.
      18             :  */
      19           1 : class Matrix : public blaze::DynamicMatrix<double, blaze::columnMajor> {
      20             :  public:
      21             :   // Inherit constructors
      22             :   using blaze::DynamicMatrix<double, blaze::columnMajor>::DynamicMatrix;
      23             : };

Generated by: LCOV version 1.14