Discontinuous Galerkin Library
#include "dg/algorithm.h"
dg_doc.h
Go to the documentation of this file.
1#error Documentation only
431namespace dg{
444struct Timer
445{
454 void tic();
459 void toc();
463 double diff()const;
464};
465}
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Simple tool for performance measuring.
Definition: dg_doc.h:445
double diff() const
Return time in seconds elapsed between tic and toc.
void toc()
Stop timer.
void tic()
Start timer.