SpECTRE Documentation Coverage Report
Current view: top level - ParallelAlgorithms/LinearSolver/Gmres/Tags - InboxTags.hpp Hit Total Coverage
Commit: d0fc80462417e83e5cddfa1b9901bb4a9b6af4d6 Lines: 0 1 0.0 %
Date: 2024-03-29 00:33:31
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 <cstddef>
       7             : #include <map>
       8             : #include <tuple>
       9             : 
      10             : #include "DataStructures/DynamicVector.hpp"
      11             : #include "NumericalAlgorithms/Convergence/HasConverged.hpp"
      12             : #include "Parallel/InboxInserters.hpp"
      13             : #include "Utilities/TMPL.hpp"
      14             : 
      15             : namespace LinearSolver::gmres::detail::Tags {
      16             : 
      17             : template <typename OptionsGroup>
      18             : struct InitialOrthogonalization
      19             :     : Parallel::InboxInserters::Value<InitialOrthogonalization<OptionsGroup>> {
      20             :   using temporal_id = size_t;
      21             :   using type =
      22             :       std::map<temporal_id, std::tuple<double, Convergence::HasConverged>>;
      23             : };
      24             : 
      25             : template <typename OptionsGroup>
      26             : struct Orthogonalization
      27             :     : Parallel::InboxInserters::Value<Orthogonalization<OptionsGroup>> {
      28             :   using temporal_id = size_t;
      29             :   using type = std::map<temporal_id, double>;
      30             : };
      31             : 
      32             : template <typename OptionsGroup>
      33             : struct FinalOrthogonalization
      34             :     : Parallel::InboxInserters::Value<FinalOrthogonalization<OptionsGroup>> {
      35             :   using temporal_id = size_t;
      36             :   using type =
      37             :       std::map<temporal_id, std::tuple<double, blaze::DynamicVector<double>,
      38             :                                        Convergence::HasConverged>>;
      39             : };
      40             : 
      41             : }  // namespace LinearSolver::gmres::detail::Tags

Generated by: LCOV version 1.14