Reference documentation for deal.II version GIT relicensing-437-g81ec864850 2024-04-19 07:30:02+00:00
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Loading...
Searching...
No Matches
component_mask.cc
Go to the documentation of this file.
1// ------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4// Copyright (C) 2012 - 2023 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Part of the source code is dual licensed under Apache-2.0 WITH
9// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
10// governing the source code and code contributions can be found in
11// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
12//
13// ------------------------------------------------------------------------
14
15
17
18#include <iostream>
19
20
22
23std::ostream &
24operator<<(std::ostream &out, const ComponentMask &mask)
25{
26 if (mask.component_mask.empty())
27 out << "[all components selected]";
28 else
29 {
30 out << '[';
31 for (unsigned int i = 0; i < mask.component_mask.size(); ++i)
32 {
33 out << (mask.component_mask[i] ? "true" : "false");
34 if (i != mask.component_mask.size() - 1)
35 out << ',';
36 }
37 out << ']';
38 }
39
40 return out;
41}
42
43
44
45std::size_t
50
51
std::size_t memory_consumption() const
std::vector< bool > component_mask
std::ostream & operator<<(std::ostream &out, const ComponentMask &mask)
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:502
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:503
std::enable_if_t< std::is_fundamental_v< T >, std::size_t > memory_consumption(const T &t)