* src/tgbaalgos/ndfs_result.hh: Define the trace output stream.

This commit is contained in:
Denis Poitrenaud 2004-12-14 14:10:56 +00:00
parent 964f856bb5
commit 60f50d66e0
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-12-14 Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>
* src/tgbaalgos/ndfs_result.hh: Define the trace output stream.
2004-12-13 Denis Poitrenaud <Denis.Poitrenaud@lip6.fr>
* src/tgbaalgos/ndfs_result.hh: New file factorizing the computation of

View file

@ -22,6 +22,15 @@
#ifndef SPOT_TGBAALGOS_NDFS_RESULT_HH
# define SPOT_TGBAALGOS_NDFS_RESULT_HH
//#define TRACE
#include <iostream>
#ifdef TRACE
#define trace std::cerr
#else
#define trace while (0) std::cerr
#endif
#include <cassert>
#include <list>
#include "tgba/tgba.hh"