00001 /* 00002 Copyright 2013, 2015 SINTEF ICT, Applied Mathematics. 00003 Copyright 2014, 2015 Statoil ASA. 00004 Copyright 2014, 2015 Dr. Markus Blatt - HPC-Simulation-Software & Services 00005 Copyright 2015 NTNU 00006 00007 This file is part of the Open Porous Media project (OPM). 00008 00009 OPM is free software: you can redistribute it and/or modify 00010 it under the terms of the GNU General Public License as published by 00011 the Free Software Foundation, either version 3 of the License, or 00012 (at your option) any later version. 00013 00014 OPM is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with OPM. If not, see <http://www.gnu.org/licenses/>. 00021 */ 00022 00023 #ifndef OPM_ITERATION_REPORT_HEADER_INCLUDED 00024 #define OPM_ITERATION_REPORT_HEADER_INCLUDED 00025 00026 namespace Opm { 00028 struct IterationReport 00029 { 00030 bool failed; 00031 bool converged; 00032 int linear_iterations; 00033 int well_iterations; 00034 }; 00035 } // namespace Opm 00036 00037 #endif // OPM_ITERATION_REPORT_HEADER_INCLUDED