1 Star 4 Fork 2

Hic/popnet_modified

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SStd.h 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
Hic 提交于 2020-06-10 11:34 . start commit
#ifndef NETWORK_STD_H_
#define NETWORK_STD_H_
/*###########################################################################*/
#include <iostream>
using namespace std;
extern ostream scerrhex;
extern ostream scouthex;
// Use for a sane and fast vector of bools.
typedef int big_bool;
const double PI = 3.141592658979323846;
/*===========================================================================*/
// Debugging
// Macros need to be used to accomplish this. Inlines won't work.
// Print position in code.
void spos(const char * file, int line);
#define Spos() spos(__FILE__, __LINE__)
// Print position in code and abort after printing message.
void sabort(const char * file, int line,
const char * message = "Program aborted.\n");
void sexit(const char * message = "Exiting.\n");
#define Rabort() sabort(__FILE__, __LINE__)
// Abort, printing position in code, if (! x).
void sassert(bool x, const char * file, int line);
#define Sassert(x) sassert((x), __FILE__, __LINE__)
inline void sconfirm(bool x, const char * message) { if (! x) sexit(message); }
/*===========================================================================*/
/*###########################################################################*/
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hic_0757/popnet_modified.git
git@gitee.com:hic_0757/popnet_modified.git
hic_0757
popnet_modified
popnet_modified
master

搜索帮助