LCOV - code coverage report
Current view: top level - src/kokkos/bcs - KokkosBoundaryCondition.K (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #31706 (f8ed4a) with base bb0a08 Lines: 12 13 92.3 %
Date: 2025-11-03 17:23:24 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
      13             : {
      14             : namespace Kokkos
      15             : {
      16             : 
      17             : InputParameters
      18       85940 : BoundaryCondition::validParams()
      19             : {
      20       85940 :   InputParameters params = ResidualObject::validParams();
      21       85940 :   params += BoundaryRestrictableRequired::validParams();
      22             : 
      23       85940 :   params.registerBase("KokkosBoundaryCondition");
      24             : 
      25       85940 :   return params;
      26           0 : }
      27             : 
      28        1426 : BoundaryCondition::BoundaryCondition(const InputParameters & parameters,
      29             :                                      Moose::VarFieldType field_type,
      30        1426 :                                      bool nodal)
      31        1087 :   : ResidualObject(parameters, field_type, nodal), BoundaryRestrictableRequired(this, nodal)
      32             : {
      33        1426 : }
      34             : 
      35       69175 : BoundaryCondition::BoundaryCondition(const BoundaryCondition & object)
      36       56943 :   : ResidualObject(object), BoundaryRestrictableRequired(object, {})
      37             : {
      38       69175 : }
      39             : 
      40             : } // namespace Kokkos
      41             : } // namespace Moose

Generated by: LCOV version 1.14