baseConvergence.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/common.hpp"
5
6namespace by {
10 class _nout baseConvergence: public instance {
11 public:
12 virtual nbool converge() = 0;
13 virtual nbool convergeWithoutFrame() = 0;
14 };
15}
Base class for convergence algorithms.
Definition: baseConvergence.hpp:10
Base class for all managed instances in memlite system.
Definition: instance.hpp:20