NuTo
Numerics Tool
DofInfo.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace NuTo
6 {
7 struct DofInfo
8 {
11 
12  void Merge(DofType dof, DofInfo other)
13  {
14  numIndependentDofs[dof] = other.numIndependentDofs[dof];
15  numDependentDofs[dof] = other.numDependentDofs[dof];
16  }
17 };
18 } /* NuTo */
Definition: DofType.h:8
DofContainer< int > numIndependentDofs
Definition: DofInfo.h:9
void Merge(DofType dof, DofInfo other)
Definition: DofInfo.h:12
DofContainer< int > numDependentDofs
Definition: DofInfo.h:10
Definition: Exception.h:6
Definition: DofInfo.h:7