DOLFINx 0.8.0
DOLFINx C++ interface
Loading...
Searching...
No Matches
permutationcomputation.h
1// Copyright (C) 2020 Matthew Scroggs
2//
3// This file is part of DOLFINx (https://www.fenicsproject.org)
4//
5// SPDX-License-Identifier: LGPL-3.0-or-later
6
7#pragma once
8
9#include <cstdint>
10#include <utility>
11#include <vector>
12
13namespace dolfinx::mesh
14{
15class Topology;
16
70std::pair<std::vector<std::uint8_t>, std::vector<std::uint32_t>>
71compute_entity_permutations(const Topology& topology);
72
73} // namespace dolfinx::mesh
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
std::pair< std::vector< std::uint8_t >, std::vector< std::uint32_t > > compute_entity_permutations(const Topology &topology)
Definition permutationcomputation.cpp:319