📄 decl.h
字号:
/* decl.h Type declarations this file is part of Cuhre last modified 19 Jan 05 th*/#include "stddecl.h"typedef struct { real avg, err; count bisectdim;} Result;typedef const Result cResult;typedef struct { real avg, err, lastavg, lasterr; real weightsum, avgsum; real guess, chisum, chisqsum, chisq;} Totals;typedef const Totals cTotals;typedef struct { real lower, upper;} Bounds;typedef const Bounds cBounds;typedef struct { real *x, *f; void *first, *last; real errcoeff[3]; count n;} Rule;typedef const Rule cRule;#define TYPEDEFREGION \ typedef struct region { \ struct region *next; \ count div; \ Result result[NCOMP]; \ Bounds bounds[NDIM]; \ } Regiontypedef void (*Integrand)(ccount *, creal *, ccount *, real *);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -