Flow123d
master-f44eb46
|
#include <memory>
#include <sstream>
#include <string>
#include <vector>
#include <armadillo>
#include "io/element_data_cache_base.hh"
#include "system/exceptions.hh"
#include "system/index_types.hh"
Go to the source code of this file.
Classes | |
class | ElementDataCache< T > |
Enumerations | |
enum | CheckResult { ok , out_of_limits , not_a_number } |
Return type of method that checked data stored in ElementDataCache (NaN values, limits) More... | |
* Copyright (C) 2015 Technical University of Liberec. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Definition in file element_data_cache.hh.
enum CheckResult |
Return type of method that checked data stored in ElementDataCache (NaN values, limits)
Enumerator | |
---|---|
ok | All values are not NaN and are in limits. |
out_of_limits | Some value(s) is out of limits. |
not_a_number | Some value(s) is set to NaN. |
Definition at line 36 of file element_data_cache.hh.