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

📄 common.c

📁 The CUBA library provides new implementation of four general-purpose multidimensional integration al
💻 C
字号:
/*	common.c		includes most of the modules		this file is part of Suave		last modified 14 Feb 05 th*/#include "Random.c"#include "ChiSquare.c"#include "Grid.c"#include "Sample.c"#include "Fluct.c"#include "Integrate.c"static inline bool BadDimension(cint ndim, cint flags){#if NDIM > 0  if( ndim > NDIM ) return true;#endif  return ndim < SOBOL_MINDIM || (!PSEUDORNG && ndim > SOBOL_MAXDIM);}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 + -