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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
//
// GENERATED FILE
//
use super::*;
use f2rust_std::*;
const LBCELL: i32 = -5;
const MAXWIN: i32 = 100;
//$Procedure F_ZZGFSOLV ( ZZGFSOLV family tests )
pub fn F_ZZGFSOLV(OK: &mut bool, ctx: &mut Context) -> f2rust_std::Result<()> {
let mut STEP: f64 = 0.0;
let mut START: f64 = 0.0;
let mut FINISH: f64 = 0.0;
let mut TBEG: f64 = 0.0;
let mut TEND: f64 = 0.0;
let mut TOLRNC: f64 = 0.0;
let mut CRIT: f64 = 0.0;
let mut RESULT = StackArray::<f64, 106>::new(LBCELL..=MAXWIN);
let mut BAIL: bool = false;
let mut CSTEP: bool = false;
let mut RPT: bool = false;
let mut N: i32 = 0;
let mut NRPT: i32 = 0;
//
// SPICELIB functions
//
//
// External routines
//
//
// Local parameters
//
//
// Local Variables
//
//
// Begin every test family with an open call.
//
testutil::TOPEN(b"F_ZZGFSOLV", ctx)?;
//
// Set the progress report test hit counter to zero.
//
ZZRPTI(ctx);
//
// Case 1
//
testutil::TCASE(b"TOLRNC = 0", ctx)?;
BAIL = false;
CSTEP = true;
RPT = false;
STEP = 1.0;
START = 0.0;
FINISH = 10.0;
TOLRNC = 0.0;
spicelib::ZZGFSOLV(
T_UDQLT,
spicelib::GFSTEP,
spicelib::GFREFN,
BAIL,
spicelib::GFBAIL,
CSTEP,
STEP,
START,
FINISH,
TOLRNC,
RPT,
spicelib::GFREPU,
RESULT.as_slice_mut(),
ctx,
)?;
testutil::CHCKXC(true, b"SPICE(INVALIDTOLERANCE)", OK, ctx)?;
//
// Case 2
//
testutil::TCASE(b"START > FINISH", ctx)?;
BAIL = false;
CSTEP = true;
RPT = false;
STEP = 1.0;
START = 10.0;
FINISH = 0.0;
TOLRNC = 1.0;
spicelib::ZZGFSOLV(
T_UDQLT,
spicelib::GFSTEP,
spicelib::GFREFN,
BAIL,
spicelib::GFBAIL,
CSTEP,
STEP,
START,
FINISH,
TOLRNC,
RPT,
spicelib::GFREPU,
RESULT.as_slice_mut(),
ctx,
)?;
testutil::CHCKXC(true, b"SPICE(BADTIMECASE)", OK, ctx)?;
//
// Case 3
//
testutil::TCASE(b"Step function, one interval, one critical value.", ctx)?;
//
// Set a search to key on the critical value defined in
// T_ZZGFSOLV. With a STEP size of one, and a critical value
// a double precisiion representation of an integer, the
// RESULT window returns [CRIT + TOLRNC/2, FINISH].
//
// ------------
// |
// -----------------|
//
spicelib::SSIZED(MAXWIN, RESULT.as_slice_mut(), ctx)?;
spicelib::SCARDD(0, RESULT.as_slice_mut(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
BAIL = false;
CSTEP = true;
RPT = true;
STEP = 1.0;
START = 0.0;
FINISH = 100.0;
//
// Set a value strictly between START and FINISH.
//
ZZCRITS(93.0, ctx);
//
// Using bisection for refinement; set TOLRNC as a power of 2.
//
// TOLRNC = 2**-N (N=3)
//
TOLRNC = 0.125;
spicelib::ZZGFSOLV(
T_UDQLT,
spicelib::GFSTEP,
spicelib::GFREFN,
BAIL,
spicelib::GFBAIL,
CSTEP,
STEP,
START,
FINISH,
TOLRNC,
RPT,
T_REPU,
RESULT.as_slice_mut(),
ctx,
)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// We expect one root.
//
N = spicelib::WNCARD(RESULT.as_slice(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSI(b"N", N, b"=", 1, 0, OK, ctx)?;
spicelib::WNFETD(RESULT.as_slice(), N, &mut TBEG, &mut TEND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// We know the exact values for the expected interval endpoints.
//
ZZCRITG(&mut CRIT, ctx);
testutil::CHCKSD(b"TBEG", TBEG, b"=", (CRIT + (TOLRNC / 2.0)), 0.0, OK, ctx)?;
testutil::CHCKSD(b"TBEG", TEND, b"=", FINISH, 0.0, OK, ctx)?;
//
// We know the exact value for the number of report hits.
//
ZZNRPTG(&mut NRPT, ctx);
testutil::CHCKSI(b"NRPT", NRPT, b"=", 101, 0, OK, ctx)?;
//
// Case 4
//
testutil::TCASE(b"Step function, one interval, two critical values.", ctx)?;
//
// -----------------
// | |
// -----------------| |--
// CRIT 2*CRIT
//
spicelib::SCARDD(0, RESULT.as_slice_mut(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
BAIL = false;
CSTEP = true;
RPT = true;
STEP = 1.0;
START = 0.0;
FINISH = 200.0;
//
// Set a value strictly between START and FINISH with
// 2*CRIT + TOLRNC/2.D0 < FINISH.
//
ZZCRITS(93.0, ctx);
//
// Using bisection for refinement; set TOLRNC as a power of 2.
//
// TOLRNC = 2**-N (N=3)
//
TOLRNC = 0.125;
spicelib::ZZGFSOLV(
T_UDQLT,
spicelib::GFSTEP,
spicelib::GFREFN,
BAIL,
spicelib::GFBAIL,
CSTEP,
STEP,
START,
FINISH,
TOLRNC,
RPT,
T_REPU,
RESULT.as_slice_mut(),
ctx,
)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// We expect one root.
//
N = spicelib::WNCARD(RESULT.as_slice(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSI(b"N", N, b"=", 1, 0, OK, ctx)?;
spicelib::WNFETD(RESULT.as_slice(), N, &mut TBEG, &mut TEND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// We know the exact values for the expected interval endpoints.
//
ZZCRITG(&mut CRIT, ctx);
testutil::CHCKSD(b"TBEG", TBEG, b"=", (CRIT + (TOLRNC / 2.0)), 0.0, OK, ctx)?;
testutil::CHCKSD(
b"TBEG",
TEND,
b"=",
((2.0 * CRIT) + (TOLRNC / 2.0)),
0.0,
OK,
ctx,
)?;
//
// We know the exact value for the number of report hits.
//
ZZNRPTG(&mut NRPT, ctx);
testutil::CHCKSI(b"NRPT", NRPT, b"=", 200, 0, OK, ctx)?;
//
// Case 5
//
testutil::TCASE(b"Check for loop convergence error signal.", ctx)?;
spicelib::SSIZED(MAXWIN, RESULT.as_slice_mut(), ctx)?;
spicelib::SCARDD(0, RESULT.as_slice_mut(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
BAIL = false;
CSTEP = true;
RPT = true;
STEP = 1.0;
START = 0.0;
FINISH = 100.0;
//
// Set a value strictly between START and FINISH.
//
ZZCRITS(93.0, ctx);
//
// Set TOLRNC to something we know will work for bisection.
//
TOLRNC = 0.125;
//
// Use a test version of GFREFN to ensure a slower than
// bisection convergence rate.
//
spicelib::ZZGFSOLV(
T_UDQLT,
spicelib::GFSTEP,
T_REFN,
BAIL,
spicelib::GFBAIL,
CSTEP,
STEP,
START,
FINISH,
TOLRNC,
RPT,
T_REPU,
RESULT.as_slice_mut(),
ctx,
)?;
testutil::CHCKXC(true, b"SPICE(NOCONVERG)", OK, ctx)?;
testutil::T_SUCCESS(OK, ctx);
Ok(())
}