decl.h

来自「The CUBA library provides new implementa」· C头文件 代码 · 共 57 行

H
57
字号
/*	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 + =
减小字号Ctrl + -
显示快捷键?