📄 common.c
字号:
/* common.c includes most of the modules this file is part of Cuhre last modified 14 Feb 05 th*/#include "ChiSquare.c"#include "Rule.c"#include "Integrate.c"static inline bool BadDimension(ccount ndim){#if NDIM > 0 if( ndim > NDIM ) return true;#endif return ndim < 2;}static inline bool BadComponent(cint ncomp){#if NCOMP > 0 if( ncomp > NCOMP ) return true;#endif return ncomp < 1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -