forked from Ermentrout/xppaut
-
Notifications
You must be signed in to change notification settings - Fork 1
/
auto_define.h
executable file
·86 lines (50 loc) · 1.13 KB
/
auto_define.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
struct {
int ndim, ips, irs, ilp, icp[20];
double par[20];
} blbcn_;
#define blbcn_1 blbcn_
struct {
int ntst, ncol, iad, isp, isw, iplt, nbc, nint;
} blcde_;
#define blcde_1 blcde_
struct {
double ds, dsmin, dsmax;
int iads;
} bldls_;
#define bldls_1 bldls_
struct {
int nmx, nuzr;
double rl0, rl1, a0, a1;
} bllim_;
#define bllim_1 bllim_
struct {
int npr, mxbf, iid, itmx, itnw, nwtn, jac;
} blmax_;
#define blmax_1 blmax_
struct {
double epsl[20], epsu, epss;
} bleps_;
#define bleps_1 bleps_
#define EPSU bleps_1.epsu
#define EPSS bleps_1.epss
#define EPSL(a) bleps_1.epsl[(a)]
#define IRS blbcn_1.irs
#define NDIM blbcn_1.ndim
#define IPS blbcn_1.ips
#define ILP blbcn_1.ilp
#define NTST blcde_1.ntst
#define NCOL blcde_1.ncol
#define IAD blcde_1.iad
#define ISP blcde_1.isp
#define ISW blcde_1.isw
#define NBC blcde_1.nbc
#define NIC blcde_1.nint
#define DS bldls_1.ds
#define DSMAX bldls_1.dsmax
#define DSMIN bldls_1.dsmin
#define NMX bllim_1.nmx
#define NUZR bllim_1.nuzr
#define RL0 bllim_1.rl0
#define RL1 bllim_1.rl1
#define AUTO_A0 bllim_1.a0
#define AUTO_A1 bllim_1.a1