DOLFINx
DOLFINx C++ interface
utils.h
1// Copyright (C) 2018-2019 Garth N. Wells
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
9namespace dolfinx::la
10{
12enum class Norm
13{
14 l1,
15 l2,
16 linf,
17 frobenius
18};
19
20} // namespace dolfinx::la
Linear algebra interface.
Definition: sparsitybuild.h:13
Norm
Norm types.
Definition: utils.h:13