common.c
来自「The CUBA library provides new implementa」· C语言 代码 · 共 31 行
C
31 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?