Page MenuHomec4science

Iterate.h
No OneTemporary

File Metadata

Created
Fri, May 10, 00:48

Iterate.h

/* =================================================================================================
(c - GPLv3) T.W.J. de Geus (Tom) | tom@geus.me | www.geus.me | github.com/tdegeus/GooseFEM
================================================================================================= */
#ifndef GOOSEFEM_ITERATE_H
#define GOOSEFEM_ITERATE_H
// -------------------------------------------------------------------------------------------------
#include "config.h"
// =================================================================================================
namespace GooseFEM {
namespace Iterate {
// -------------------------------------------------------------------------------------------------
class StopList
{
public:
// constructors
StopList(size_t n=1);
// reset all residuals to infinity (and change the number of residuals to check)
void reset();
void reset(size_t n);
// update list of residuals, return true if all residuals are below the tolerance
bool stop(double res, double tol);
private:
// list with residuals
std::vector<double> m_res;
};
// -------------------------------------------------------------------------------------------------
}} // namespace ...
// =================================================================================================
#include "Iterate.hpp"
// =================================================================================================
#endif

Event Timeline