⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 ViennaRNA-1.6.1
💻 H
字号:
#ifndef _DEBUG_H_#define _DEBUG_H_#include <iostream>#ifndef RNAF_DEBUGLEVEL   #define RNAF_DEBUGLEVEL 5 #endif#define DBG_OFF 6#define DBG_QWATCH                1// program intern debug levels#define DBG_BACKTRACK             DBG_OFF#define DBG_GET_PROFILE_STRUCTURE DBG_OFF#define DBG_ALGEBRA               DBG_OFF#define DBG_ALIGNMENT             DBG_OFF#define DBG_MULTIPLE              DBG_OFF#ifdef NDEBUG  #define TRACE(L,C,M)  #define WATCH(L,C,M)  #define QWATCH(L,C,M)#else  #define TRACE(L,C,M)     if(L <= RNAF_DEBUGLEVEL) cout << C << " - " << M << endl;  #define WATCH(L,C,M)     if(L <= RNAF_DEBUGLEVEL) cout << C << " - " << #M  << ": " << M << endl;  #define QWATCH(M)        if(DBG_QWATCH <= RNAF_DEBUGLEVEL) cout << #M  << ": " << M << endl;#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -