-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paths_dc.cc
664 lines (634 loc) · 19.4 KB
/
s_dc.cc
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
/*$Id: s_dc.cc 2016/09/22 al $ -*- C++ -*-
* Copyright (C) 2001 Albert Davis
* Author: Albert Davis <[email protected]>
*
* This file is part of "Gnucap", the Gnu Circuit Analysis Package
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*------------------------------------------------------------------
* dc analysis top
*/
#include "globals.h"
#include "u_status.h"
#include "u_prblst.h"
#include "u_cardst.h"
#include "e_elemnt.h"
#include "s__.h"
/*--------------------------------------------------------------------------*/
// gnucsator
#include "s_dc_out.cc"
#include "s__init.cc"
#include "s__solve.cc"
/*--------------------------------------------------------------------------*/
namespace {
/*--------------------------------------------------------------------------*/
static const bool SWEEP_COMP=false; // dont sweep components.
static const bool PARAMS_ONLY=true; // only params
/*--------------------------------------------------------------------------*/
class SWEEPVAL : public COMMON_COMPONENT {
public:
explicit SWEEPVAL(int c=0)
:COMMON_COMPONENT(c) {}
explicit SWEEPVAL(const SWEEPVAL& p)
:COMMON_COMPONENT(p) { untested();}
~SWEEPVAL() { trace1("~SWEEPVAL", this);}
COMMON_COMPONENT* clone()const override { untested();
return new SWEEPVAL(*this);
}
private:
std::string name()const override { untested();return "sweepval";}
int set_param_by_name(std::string name, std::string value)override{ untested();
if(name == "value"){ untested();
_value = value;
return 0;
}else{ untested();
return COMMON_COMPONENT::set_param_by_name(name, value);
}
}
private: // override virtual
bool operator==(const COMMON_COMPONENT& p)const override { untested();
return dynamic_cast<SWEEPVAL const*>(&p);
}
bool has_tr_eval()const override { untested(); return true;}
bool has_ac_eval()const override { untested();return true;}
bool use_obsolete_callback_parse()const override { untested();return false;}
bool use_obsolete_callback_print()const override { untested();return false;}
bool has_parse_params_obsolete_callback()const override { untested();return false;}
private:
void precalc_last(const CARD_LIST* scope)override { untested();
_value.e_val(0, scope);
}
void tr_eval(ELEMENT* d)const override { untested();
d->_y[0] = FPOLY1(CPOLY1(d->_y[0].x, 0., _value));
}
void ac_eval(ELEMENT* d)const override { untested();
tr_eval(d);
d->_ev = d->_y[0].f1;
}
private:
PARAMETER<double> _value;
};
/*--------------------------------------------------------------------------*/
static SWEEPVAL p1(CC_STATIC);
static DISPATCHER<COMMON_COMPONENT>::INSTALL d1(&bm_dispatcher,
"sweepval", &p1);
/*--------------------------------------------------------------------------*/
}
namespace {
/*--------------------------------------------------------------------------*/
class DCOP : public SIM {
protected:
void fix_args(int);
void options(CS&, int);
private:
void sweep()override;
void precalc();
void sweep_recursive(int);
void first(int);
bool next(int);
void final()override { untested();_scope->dc_final();}
void finish()override;
explicit DCOP(const DCOP&): SIM() { untested();unreachable(); incomplete();}
protected:
void set_sweepval(int i, double d){
::status.set_up.start();
assert(_sweepval[i]);
std::string n = _param_name[i];
std::string v = to_string(d);
if(n!=""){
PARAM_LIST* pl = _scope->params();
assert(pl);
pl->set(n, v);
}else if(_zap[i]){ untested();
assert(_ctrl[i]);
_ctrl[i]->set_param_by_name("value", v);
}else{
}
*_sweepval[i] = d;
::status.set_up.stop();
}
double get_sweepval(int i) const{ untested();
assert(_sweepval[i]);
return *_sweepval[i];
}
protected:
explicit DCOP();
~DCOP() {}
protected:
enum {DCNEST = 4};
int _n_sweeps;
PARAMETER<double> _start[DCNEST];
PARAMETER<double> _stop[DCNEST];
PARAMETER<double> _step_in[DCNEST];
double _step[DCNEST];
bool _linswp[DCNEST];
double* _sweepval[DCNEST]; /* pointer to thing to sweep, dc command */
ELEMENT* _zap[DCNEST]; /* to branch to zap, for re-expand */
COMMON_COMPONENT* _ctrl[DCNEST]; /* take control */
std::string _param_name[DCNEST];
double _param[DCNEST]; // sweep this value:
PARAMETER<double> _param_zap[DCNEST]; // keep a backup
CARDSTASH _stash[DCNEST]; /* store std values of elements being swept */
bool _loop[DCNEST]; /* flag: do it again backwards */
bool _reverse_in[DCNEST]; /* flag: sweep backwards, input */
bool _reverse[DCNEST]; /* flag: sweep backwards, working */
bool _cont; /* flag: continue from previous run */
TRACE _trace; /* enum: show extended diagnostics */
enum {ONE_PT, LIN_STEP, LIN_PTS, TIMES, OCTAVE, DECADE} _stepmode[DCNEST];
bool _have_param; /* sweep a param */
};
/*--------------------------------------------------------------------------*/
class DC : public DCOP {
public:
explicit DC(): DCOP() {}
~DC() {}
void do_it(CS&, CARD_LIST*)override;
private:
void setup(CS&)override;
explicit DC(const DC&): DCOP() { untested();unreachable(); incomplete();}
};
/*--------------------------------------------------------------------------*/
class OP : public DCOP {
public:
explicit OP(): DCOP() {}
~OP() {}
void do_it(CS&, CARD_LIST*)override;
private:
void setup(CS&)override;
explicit OP(const OP&): DCOP() { untested();unreachable(); incomplete();}
};
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
void DC::do_it(CS& Cmd, CARD_LIST* Scope)
{
assert(Scope);
if (Scope == &CARD_LIST::card_list) {
}else{untested();
}
_scope = Scope;
_sim->_time0 = 0.;
_sim->set_command_dc();
_sim->_phase = p_INIT_DC;
::status.dc.reset().start();
command_base(Cmd);
finish_hack(this, _out);
_scope = NULL;
::status.dc.stop();
}
/*--------------------------------------------------------------------------*/
void OP::do_it(CS& Cmd, CARD_LIST* Scope)
{
assert(Scope);
if (Scope == &CARD_LIST::card_list) {
}else{untested();
}
_scope = Scope;
_sim->_time0 = 0.;
_sim->set_command_op();
_sim->_phase = p_INIT_DC;
::status.op.reset().start();
command_base(Cmd);
_scope = NULL;
::status.op.stop();
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
DCOP::DCOP()
:SIM(),
_n_sweeps(1),
_cont(false),
_trace(tNONE)
{
for (int ii = 0; ii < DCNEST; ++ii) {
_loop[ii] = false;
_reverse_in[ii] = false;
_reverse[ii] = false;
_step[ii]=0.;
_linswp[ii]=true;
_sweepval[ii]=&_sim->_genout;
_zap[ii] = NULL;
_ctrl[ii] = NULL;
_stepmode[ii] = ONE_PT;
_param[ii] = NOT_VALID;
}
//BUG// in SIM. should be initialized there.
//_sim->_genout=0.;
_out=IO::mstdout;
//_sim->_uic=false;
}
/*--------------------------------------------------------------------------*/
void DCOP::finish(void)
{
for (int ii = 0; ii < _n_sweeps; ++ii) {
std::string n = _param_name[ii];
if (_zap[ii]) { untested();
_stash[ii].restore();
_zap[ii]->precalc_first();
_zap[ii]->precalc_last();
_zap[ii] = NULL;
_ctrl[ii] = NULL;
}else if (n != "") {
PARAM_LIST* pl = _scope->params();
assert(pl);
std::string previous_value = _param_zap[ii].string();
CS cmd(CS::_STRING, n + "=" + previous_value);
pl->set(n, previous_value);
}
assert(!_ctrl[ii]);
}
}
/*--------------------------------------------------------------------------*/
void OP::setup(CS& Cmd)
{
_sim->_temp_c = OPT::temp_c;
_cont = false;
_trace = tNONE;
_out = IO::mstdout;
_out.reset(); //BUG// don't know why this is needed */
bool ploton = IO::plotset && plotlist().size() > 0;
_zap[0] = NULL;
_sweepval[0] = &(_sim->_temp_c);
_have_param = true; // temp requires precalc
if (Cmd.match1("'\"({") || Cmd.is_float()) { untested();
Cmd >> _start[0];
if (Cmd.match1("'\"({") || Cmd.is_float()) { untested();
Cmd >> _stop[0];
}else{ untested();
_stop[0] = _start[0];
}
}else{
}
_step[0] = 0.;
_sim->_genout = 0.;
options(Cmd,0);
_n_sweeps = 1;
Cmd.check(bWARNING, "what's this?");
_sim->_freq = 0;
IO::plotout = (ploton) ? IO::mstdout : OMSTREAM();
initio(_out);
_start[0].e_val(OPT::temp_c, _scope);
fix_args(0);
}
/*--------------------------------------------------------------------------*/
void DC::setup(CS& Cmd)
{
trace2("dcs", Cmd.fullstring(), Cmd.tail());
_sim->_temp_c = OPT::temp_c;
_cont = false;
_trace = tNONE;
_out = IO::mstdout;
_out.reset(); //BUG// don't know why this is needed */
bool ploton = IO::plotset && plotlist().size() > 0;
_have_param = false;
if (Cmd.more()) {
for (_n_sweeps = 0; Cmd.more() && _n_sweeps < DCNEST; ++_n_sweeps) {
// CARD_LIST::fat_iterator ci = findbranch(Cmd, _scope);
if (SWEEP_COMP /*&& !ci.is_end()*/) { unreachable(); // sweep a component
#if 0
if (ELEMENT* c = dynamic_cast<ELEMENT*>(*ci)) { untested();
_zap[_n_sweeps] = c;
_param_name[_n_sweeps] = ""; // not used.
trace2("_zap", c->value(), c->value().string());
}else{untested();
throw Exception("dc/op: can't sweep " + (**ci).long_label() + '\n');
}
#endif
}else if (Cmd.is_float()) { untested(); // sweep the generator
trace1("float?!", Cmd.tail());
_zap[_n_sweeps] = NULL;
}else if (Cmd.is_alpha()) {
std::string pname;
size_t here = Cmd.cursor();
Cmd >> pname;
trace2("pname?", _n_sweeps, pname);
PARAM_INSTANCE zap = _scope->params()->deep_lookup(pname);
if(zap.has_hard_value()){
_param_zap[_n_sweeps] = zap;
trace2("pname", _n_sweeps, pname);
_param_name[_n_sweeps] = pname;
_have_param = true;
}else{
Cmd.reset(here);
// throw Exception("dc/op: can't sweep " + pname + '\n');
// Cmd.check(bWARNING, "what's this?");
}
}else{ untested();
incomplete();
// leave as it was .. repeat Cmd with no args
}
if (Cmd.match1("'\"({") || Cmd.is_float()) { // set up parameters
_start[_n_sweeps] = "NA";
_stop[_n_sweeps] = "NA";
Cmd >> _start[_n_sweeps];
Cmd >> _stop[_n_sweeps];
_step[_n_sweeps] = 0.;
}else{
// leave it as it was .. repeat Cmd with no args
}
_sim->_genout = 0.;
options(Cmd,_n_sweeps);
}
}else{ untested();
}
Cmd.check(bWARNING, "what's this?");
IO::plotout = (ploton) ? IO::mstdout : OMSTREAM();
initio(_out);
assert(_n_sweeps > 0);
for (int ii = 0; ii < _n_sweeps; ++ii) {
_start[ii].e_val(0., _scope);
fix_args(ii);
if (_zap[ii]) { // component
_stash[ii] = _zap[ii]; // stash the std value
assert(!_ctrl[ii]);
_ctrl[ii] = bm_dispatcher.clone("sweepval");
assert(_ctrl[ii]);
_zap[ii]->attach_common(_ctrl[ii]); // take control
_sweepval[ii] = &_param[ii];
}else if (_param_name[ii] != "") {
_sweepval[ii] = &_param[ii];
}else{ // generator
_sweepval[ii] = &_sim->_genout; // point to value to patch
}
}
_sim->_freq = 0;
}
/*--------------------------------------------------------------------------*/
void DCOP::fix_args(int Nest)
{
_stop[Nest].e_val(_start[Nest], _scope);
_step_in[Nest].e_val(0., _scope);
_step[Nest] = _step_in[Nest];
switch (_stepmode[Nest]) {
case ONE_PT:
case LIN_STEP:
_linswp[Nest] = true;
break;
case LIN_PTS:untested();
if (_step[Nest] <= 2.) {untested();
_step[Nest] = 2.;
}else{untested();
}
_linswp[Nest] = true;
break;
case TIMES:untested();
if (_step[Nest] == 0. && _start[Nest] != 0.) {untested();
_step[Nest] = _stop[Nest] / _start[Nest];
}else{untested();
}
_linswp[Nest] = false;
break;
case OCTAVE:untested();
if (_step[Nest] == 0.) {untested();
_step[Nest] = 1.;
}else{untested();
}
_step[Nest] = pow(2.00000001, 1./_step[Nest]);
_linswp[Nest] = false;
break;
case DECADE:
if (_step[Nest] == 0.) {untested();
_step[Nest] = 1.;
}else{ untested();
}
_step[Nest] = pow(10., 1./_step[Nest]);
_linswp[Nest] = false;
break;
};
if (_step[Nest] == 0.) { // prohibit log sweep from 0
_step[Nest] = _stop[Nest] - _start[Nest];
_linswp[Nest] = true;
}else{
}
}
/*--------------------------------------------------------------------------*/
void DCOP::options(CS& Cmd, int Nest)
{
_sim->_uic = _loop[Nest] = _reverse_in[Nest] = false;
size_t here = Cmd.cursor();
do{
ONE_OF
|| (Cmd.match1("'\"({") && ((_step_in[Nest].parse(Cmd)), (_stepmode[Nest] = LIN_STEP)))
|| (Cmd.is_float() && ((_step_in[Nest].parse(Cmd)), (_stepmode[Nest] = LIN_STEP)))
|| (Get(Cmd, "*", &_step_in[Nest]) && (_stepmode[Nest] = TIMES))
|| (Get(Cmd, "+", &_step_in[Nest]) && (_stepmode[Nest] = LIN_STEP))
|| (Get(Cmd, "by", &_step_in[Nest]) && (_stepmode[Nest] = LIN_STEP))
|| (Get(Cmd, "step", &_step_in[Nest]) && (_stepmode[Nest] = LIN_STEP))
|| (Get(Cmd, "d{ecade}", &_step_in[Nest]) && (_stepmode[Nest] = DECADE))
|| (Get(Cmd, "ti{mes}", &_step_in[Nest]) && (_stepmode[Nest] = TIMES))
|| (Get(Cmd, "lin", &_step_in[Nest]) && (_stepmode[Nest] = LIN_PTS))
|| (Get(Cmd, "o{ctave}", &_step_in[Nest]) && (_stepmode[Nest] = OCTAVE))
|| Get(Cmd, "c{ontinue}", &_cont)
|| Get(Cmd, "dt{emp}", &(_sim->_temp_c), mOFFSET, OPT::temp_c)
|| Get(Cmd, "lo{op}", &_loop[Nest])
|| Get(Cmd, "re{verse}", &_reverse_in[Nest])
|| Get(Cmd, "te{mperature}",&(_sim->_temp_c))
|| (Cmd.umatch("tr{ace} {=}") &&
(ONE_OF
|| Set(Cmd, "n{one}", &_trace, tNONE)
|| Set(Cmd, "o{ff}", &_trace, tNONE)
|| Set(Cmd, "w{arnings}", &_trace, tUNDER)
|| Set(Cmd, "i{terations}",&_trace, tITERATION)
|| Set(Cmd, "v{erbose}", &_trace, tVERBOSE)
|| Cmd.warn(bWARNING,
"need none, off, warnings, iterations, verbose")
)
)
|| outset(Cmd,&_out)
;
}while (Cmd.more() && !Cmd.stuck(&here));
}
/*--------------------------------------------------------------------------*/
void DCOP::sweep()
{
init_hack(this);
for(int i=0; i<_n_sweeps; ++i){
std::string label="swp"+std::to_string(i);
if (!_zap[i]) {
}else if (_zap[i]->short_label()=="dev") { untested();
label = _zap[i]->owner()->long_label();
}else{ untested();
label = _zap[i]->long_label();
}
head(_start[i], _stop[i], _param_name[i]);
}
// upstream: head(_start[0], _stop[0], " ");
_sim->_bypass_ok = false;
_sim->set_inc_mode_bad();
if (_cont) {untested();
_sim->restore_voltages();
_scope->tr_restore();
}else{
_sim->clear_limit();
_scope->tr_begin();
}
sweep_recursive(_n_sweeps);
}
/*--------------------------------------------------------------------------*/
void DCOP::precalc()
{
::status.aux1.start(); // use "advance" timer?
if(_have_param){
// do them all.
_scope->precalc_last();
}else{
for (int ii = 0; ii < _n_sweeps; ++ii) {
if (_zap[ii]) { untested();
// only sweep elements
_zap[ii]->precalc_last();
}else{
}
}
}
::status.aux1.stop(); // use "advance" timer?
}
/*--------------------------------------------------------------------------*/
void DCOP::sweep_recursive(int Nest)
{
--Nest;
assert(Nest >= 0);
assert(Nest < DCNEST);
OPT::ITL itl = OPT::DCBIAS;
first(Nest);
do {
if (Nest == 0) {
precalc();
int converged = solve_with_homotopy(itl,_trace);
if (!converged) {untested();
error(bWARNING, "did not converge\n");
}else{
}
::status.accept.start();
_sim->set_limit();
_scope->tr_accept();
::status.accept.stop();
_sim->_has_op = _sim->_mode;
outdata(*_sweepval[Nest], ofPRINT /*| ofSTORE | ofKEEP*/ );
itl = OPT::DCXFER;
}else{
outdata(*_sweepval[Nest], ofKEY);
sweep_recursive(Nest);
}
} while (next(Nest));
}
/*--------------------------------------------------------------------------*/
void DCOP::first(int Nest)
{
assert(Nest >= 0);
assert(Nest < DCNEST);
assert(_start);
assert(_sweepval);
assert(_sweepval[Nest]);
set_sweepval(Nest, _start[Nest]);
_reverse[Nest] = false;
if (_reverse_in[Nest]) {untested();
while (next(Nest)) {untested();
/* nothing */;
}
_reverse[Nest] = true;
next(Nest);
}else{
}
_sim->_phase = p_INIT_DC;
}
/*--------------------------------------------------------------------------*/
bool DCOP::next(int Nest)
{
double sweepval = NOT_VALID;
bool ok = false;
if (_linswp[Nest]) {
double fudge = _step[Nest] / 10.;
if (_step[Nest] == 0.) {
// not stepping
assert(!ok);
assert(sweepval == NOT_VALID);
}else{
// stepping
if (!_reverse[Nest]) {
sweepval = *(_sweepval[Nest]) + _step[Nest];
fixzero(&sweepval, _step[Nest]);
ok = in_order(_start[Nest]-fudge, sweepval, _stop[Nest]+fudge);
if (!ok && _loop[Nest]) { untested();
// turn around
_reverse[Nest] = true;
}else{
// forward
}
}else{ untested();
assert(_reverse[Nest]);
assert(!ok);
assert(sweepval == NOT_VALID);
}
if (_reverse[Nest]) { untested();
assert(!ok);
//assert(sweepval == NOT_VALID);
sweepval = *(_sweepval[Nest]) - _step[Nest];
fixzero(&sweepval, _step[Nest]);
ok = in_order(_start[Nest]-fudge, sweepval, _stop[Nest]+fudge);
}else{
// not sure of status
}
}
}else{ untested();
// not linswp
double fudge = pow(_step[Nest], .1);
if (_step[Nest] == 1.) {untested();
// not stepping
assert(!ok);
assert(sweepval == NOT_VALID);
}else{ untested();
if (!_reverse[Nest]) { untested();
sweepval = get_sweepval(Nest) * _step[Nest];
ok = in_order(_start[Nest]/fudge, sweepval, _stop[Nest]*fudge);
if (!ok && _loop[Nest]) {untested();
// turn around
_reverse[Nest] = true;
}else{ untested();
// forward
}
}else{untested();
assert(_reverse[Nest]);
assert(!ok);
assert(sweepval == NOT_VALID);
}
if (_reverse[Nest]) {untested();
assert(!ok);
assert(sweepval == NOT_VALID);
sweepval = get_sweepval(Nest) / _step[Nest];
ok = in_order(_start[Nest]/fudge, sweepval, _stop[Nest]*fudge);
}else{ untested();
// not sure of status
}
}
}
_sim->_phase = p_DC_SWEEP;
if (ok) {
assert(sweepval != NOT_VALID);
set_sweepval(Nest, sweepval);
return true;
}else{
//assert(sweepval == NOT_VALID);
return false;
}
}
/*--------------------------------------------------------------------------*/
static DC p2;
static OP p4;
static DISPATCHER<CMD>::INSTALL d2(&command_dispatcher, "dc", &p2);
static DISPATCHER<CMD>::INSTALL d4(&command_dispatcher, "op", &p4);
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
// vim:ts=8:sw=2:noet: