ikarus-project / ikarus

Ikarus is a C++-based library that uses DUNE modules to solve partial differential equations with the finite element method and more.
https://ikarus-project.github.io/
Other
5 stars 3 forks source link

create utility functions to compare function nodes, if they are Lagrangian or not #142

Closed tarun-mitruka closed 8 months ago

tarun-mitruka commented 1 year ago
template<template ty, RequestedNodeType, typename Node>
constexpr bool isNodeofType(Node node)
{
  return std::is_same_v<Node,    RequestedNodeType>
}