LCOV - code coverage report
Current view: top level - src/kokkos/bcs - KokkosBoundaryCondition.K (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #32971 (54bef8) with base c6cf66 Lines: 12 13 92.3 %
Date: 2026-05-29 20:35:17 Functions: 3 3 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : //* This file is part of the MOOSE framework
       2             : //* https://www.mooseframework.org
       3             : //*
       4             : //* All rights reserved, see COPYRIGHT for full restrictions
       5             : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
       6             : //*
       7             : //* Licensed under LGPL 2.1, please see LICENSE for details
       8             : //* https://www.gnu.org/licenses/lgpl-2.1.html
       9             : 
      10             : #include "KokkosBoundaryCondition.h"
      11             : 
      12             : namespace Moose::Kokkos
      13             : {
      14             : 
      15             : InputParameters
      16       39422 : BoundaryCondition::validParams()
      17             : {
      18       39422 :   InputParameters params = ResidualObject::validParams();
      19       39422 :   params += BoundaryRestrictableRequired::validParams();
      20             : 
      21       39422 :   params.registerBase("BoundaryCondition");
      22             : 
      23       39422 :   return params;
      24           0 : }
      25             : 
      26        3978 : BoundaryCondition::BoundaryCondition(const InputParameters & parameters,
      27             :                                      Moose::VarFieldType field_type,
      28        3978 :                                      bool nodal)
      29        2150 :   : ResidualObject(parameters, field_type, nodal), BoundaryRestrictableRequired(this, nodal)
      30             : {
      31        3978 : }
      32             : 
      33      190998 : BoundaryCondition::BoundaryCondition(const BoundaryCondition & object)
      34      107860 :   : ResidualObject(object), BoundaryRestrictableRequired(object, {})
      35             : {
      36      190998 : }
      37             : 
      38             : } // namespace Moose::Kokkos

Generated by: LCOV version 1.14