DOLFIN-X
DOLFIN-X 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 {
11 
13 enum class Norm
14 {
15  l1,
16  l2,
17  linf,
18  frobenius
19 };
20 
21 } // namespace dolfinx::la
dolfinx::la::Norm
Norm
Norm types.
Definition: utils.h:14
dolfinx::la
Linear algebra interface.
Definition: DiscreteOperators.h:20