[Lemon-commits] [lemon_svn] alpar: r1062 - in hugo/branches/hugo++/src: hugo test

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:43:01 CET 2006


Author: alpar
Date: Mon Aug 30 10:21:51 2004
New Revision: 1062

Modified:
   hugo/branches/hugo++/src/hugo/unionfind.h
   hugo/branches/hugo++/src/test/test_tools.h

Log:
- One more todo (in src/test/test_tools.h)
- A bug reminder (in src/hugo/unionfind.h)

Modified: hugo/branches/hugo++/src/hugo/unionfind.h
==============================================================================
--- hugo/branches/hugo++/src/hugo/unionfind.h	(original)
+++ hugo/branches/hugo++/src/hugo/unionfind.h	Mon Aug 30 10:21:51 2004
@@ -5,6 +5,9 @@
 //!\ingroup auxdat
 //!\file
 //!\brief Union-Find data structures.
+//!
+//!\bug unionfind_test.cc doesn't work with Intel compiler. It compiles but
+//!fails to run (Segmentation fault).
 
 
 #include <vector>

Modified: hugo/branches/hugo++/src/test/test_tools.h
==============================================================================
--- hugo/branches/hugo++/src/test/test_tools.h	(original)
+++ hugo/branches/hugo++/src/test/test_tools.h	Mon Aug 30 10:21:51 2004
@@ -20,6 +20,8 @@
 ///\code check(0==1,"This is obviously false.");\endcode will
 ///print this (and then exits).
 ///\verbatim graph_test.cc:123: error: This is obviously false. \endverbatim
+///
+///\todo It should be in \c error.h
 #define check(rc, msg) \
   if(!(rc)) { \
     std::cerr << __FILE__ ":" << __LINE__ << ": error: " << msg << std::endl; \



More information about the Lemon-commits mailing list