9 lines
253 B
C++
9 lines
253 B
C++
#include <fesa/fem/dof_key.hpp>
|
|
|
|
int main()
|
|
{
|
|
const fesa::fem::DofKey lhs{fesa::core::NodeId{1}, fesa::model::DofComponent::ux};
|
|
const fesa::fem::DofKey rhs{fesa::core::NodeId{1}, fesa::model::DofComponent::ux};
|
|
return lhs == rhs ? 0 : 1;
|
|
}
|