#include <loggers.h>
Public Member Functions | |
logger () | |
Default constructor. | |
virtual int | add (RV rv, string name="") |
returns an identifier which will be later needed for calling the log() function | |
virtual void | logit (int id, vec v)=0 |
log this vector | |
virtual void | step (bool final=false)=0 |
consider this record to be complete | |
virtual | ~logger () |
for future use | |
Protected Attributes | |
Array< RV > | entries |
RVs of all logged variables. | |
Array< string > | names |
Names of logged quantities, e.g. names of algorithm variants. |
This class abstracts logging of results from implementation. This class replaces direct logging of results (e.g. to files or to global variables) by calling methods of a logger. Specializations of this abstract class for specific storage method are designed.