Vector changes

This commit is contained in:
proshan3
2019-11-21 17:07:49 -05:00
parent d978f3c908
commit 7f3282d5a5
14 changed files with 4927 additions and 3941 deletions

View File

@@ -5,14 +5,14 @@
#define __DEBUG_H
// #define USE_DEBUG 9
#define USE_DEBUG -1
#define USE_DEBUG 3
#ifdef USE_DEBUG
#include <iostream>
#define D(lvl, x) do { \
using namespace std; \
if ((lvl) <= USE_DEBUG) { \
if ((lvl) == USE_DEBUG) { \
cout << "DEBUG " << __FILE__ << ':' << dec << __LINE__ << ": " \
<< x << endl; \
} \