SpECTRE Documentation Coverage Report
Current view: top level - PointwiseFunctions/InitialDataUtilities - InitialData.hpp Hit Total Coverage
Commit: 9b01d30df5d2e946e7e38cc43c008be18ae9b1d2 Lines: 2 6 33.3 %
Date: 2024-04-23 04:54:49
Legend: Lines: hit not hit

          Line data    Source code
       1           0 : // Distributed under the MIT License.
       2             : // See LICENSE.txt for details.
       3             : 
       4             : #pragma once
       5             : 
       6             : #include <pup.h>
       7             : #include <pup_stl.h>
       8             : 
       9             : #include "Utilities/Serialization/CharmPupable.hpp"
      10             : 
      11             : namespace evolution {
      12             : /*!
      13             :  * \brief Namespace for things related to initial data used for evolution
      14             :  * systems.
      15             :  */
      16           1 : namespace initial_data {
      17             : /*!
      18             :  * \brief The abstract base class for initial data of evolution systems. All
      19             :  * analytic solutions and analytic data must virtually inherit from this class.
      20             :  */
      21           1 : class InitialData : public PUP::able {
      22             :  protected:
      23           0 :   InitialData() = default;
      24             : 
      25             :  public:
      26           0 :   ~InitialData() override = default;
      27             : 
      28           0 :   virtual auto get_clone() const -> std::unique_ptr<InitialData> = 0;
      29             : 
      30             :   /// \cond
      31             :   explicit InitialData(CkMigrateMessage* msg) : PUP::able(msg) {}
      32             :   WRAPPED_PUPable_abstract(InitialData);
      33             :   /// \endcond
      34             : };
      35             : }  // namespace initial_data
      36             : }  // namespace evolution

Generated by: LCOV version 1.14