Note: this is documentation for an old release. View the latest documentation at docs.fenicsproject.org/dolfinx/v0.9.0/cpp/doxygen/d9/d59/la_2utils_8h_source.html
DOLFINx  0.5.1
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 
9 namespace dolfinx::la
10 {
12 enum class Norm
13 {
14  l1,
15  l2,
16  linf,
17  frobenius
18 };
19 
20 } // namespace dolfinx::la
Linear algebra interface.
Definition: sparsitybuild.h:15
Norm
Norm types.
Definition: utils.h:13