* This file is a part of LEMON, a generic C++ optimization library
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
///\brief Tools for counting steps and events
template<class P> class _SubNoCounter;
typedef _SubCounter<_SubCounter<P> > SubCounter;
typedef _SubNoCounter<_SubCounter<P> > SubNoCounter;
: _parent(parent), _title(), _os(std::cerr), count(0) {}
_SubCounter(P &parent,std::string title,std::ostream &os=std::cerr)
: _parent(parent), _title(title), _os(os), count(0) {}
_SubCounter(P &parent,const char *title,std::ostream &os=std::cerr)
: _parent(parent), _title(title), _os(os), count(0) {}
_os << _title << count <<std::endl;
_SubCounter &operator++() { count++; return *this;}
int operator++(int) { return count++; }
_SubCounter &operator--() { count--; return *this;}
int operator--(int) { return count--; }
_SubCounter &operator+=(int c) { count+=c; return *this;}
_SubCounter &operator-=(int c) { count-=c; return *this;}
void reset(int c=0) {count=c;}
operator int() {return count;}
typedef _SubNoCounter<_SubNoCounter<P> > SubCounter;
typedef _SubNoCounter<_SubNoCounter<P> > SubNoCounter;
_SubNoCounter(P &parent) :_parent(parent) {}
_SubNoCounter(P &parent,std::string,std::ostream &)
_SubNoCounter(P &parent,std::string)
_SubNoCounter(P &parent,const char *,std::ostream &)
_SubNoCounter(P &parent,const char *)
_SubNoCounter &operator++() { ++_parent; return *this;}
int operator++(int) { _parent++; return 0;}
_SubNoCounter &operator--() { --_parent; return *this;}
int operator--(int) { _parent--; return 0;}
_SubNoCounter &operator+=(int c) { _parent+=c; return *this;}
_SubNoCounter &operator-=(int c) { _parent-=c; return *this;}
operator int() {return 0;}
/// \addtogroup timecount
///This class makes it easier to count certain events. You can increment
///or decrement the counter using operator++ and operator--.
///A report is automatically printed on destruction.
///\todo document please.
typedef _SubCounter<Counter> SubCounter;
///\todo document please.
typedef _SubNoCounter<Counter> SubNoCounter;
Counter() : _title(), _os(std::cerr), count(0) {}
Counter(std::string title,std::ostream &os=std::cerr)
: _title(title), _os(os), count(0) {}
Counter(const char *title,std::ostream &os=std::cerr)
: _title(title), _os(os), count(0) {}
///Destructor. Prints the given title and the value of the counter.
_os << _title << count <<std::endl;
Counter &operator++() { count++; return *this;}
int operator++(int) { return count++;}
Counter &operator--() { count--; return *this;}
int operator--(int) { return count--;}
Counter &operator+=(int c) { count+=c; return *this;}
Counter &operator-=(int c) { count-=c; return *this;}
void reset(int c=0) {count=c;}
operator int() {return count;}
///'Do nothing' version of \ref Counter
///'Do nothing' version of \ref Counter.
typedef _SubNoCounter<NoCounter> SubCounter;
typedef _SubNoCounter<NoCounter> SubNoCounter;
NoCounter(std::string,std::ostream &) {}
NoCounter(const char *,std::ostream &) {}
NoCounter(std::string) {}
NoCounter(const char *) {}
NoCounter &operator++() { return *this; }
int operator++(int) { return 0; }
NoCounter &operator--() { return *this; }
int operator--(int) { return 0; }
NoCounter &operator+=(int) { return *this;}
NoCounter &operator-=(int) { return *this;}
operator int() {return 0;}