-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathqf_optimize.cpp
158 lines (120 loc) · 3.2 KB
/
qf_optimize.cpp
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
#include "qf_common.h"
#include "qf_poly.h"
#include "qf_comp.h"
#include "qf_capacity.h"
#include "qf_filter.h"
#include "qf_cauer.h"
#include "qf_tform.h"
#include "qf_zigzag.h"
#undef _QF_OPTIM_DEBUG
static double hugedbl = numeric_limits <qf_double_t>::max ();
// Generic utility routines
// This routine computes the error function
// This error function is either Xmin if we optimize for Xmin (X = C or L)
// or it is 1/Xmax if we optimize for Xmax
qf_double_t qf_filter::opt_error (qf_double_t& cm, qf_double_t& cM,
qf_double_t& lm, qf_double_t& lM) {
if (! Pspec -> optc) return 0;
qf_double_t dist = 0;
if (Pspec -> Copt == -1)
dist += 1 / cm;
else if (Pspec -> Copt == 1)
dist += cM;
if (Pspec -> Lopt == -1)
dist += 1 / lm;
else if (Pspec -> Lopt == 1)
dist += lM;
#ifdef _QF_OPTIM_DEBUG
std::cout << "Error function: " << dist << '\n';
#endif
return dist;
}
void qf_filter::get_bounds (qf_double_t& cm, qf_double_t& cM,
qf_double_t& lm, qf_double_t& lM) {
qf_cmp* i;
qf_cap* pc;
qf_ind* pi;
qf_cmplc* plc;
qf_pslc* ppslc;
lcmp. init ();
while ((i = lcmp. next ()) != NULL) {
if ((pc = dynamic_cast <qf_cap*> (i)) != NULL) {
cm = min (cm, pc -> val);
cM = max (cM, pc -> val);
continue;
}
if ((pi = dynamic_cast <qf_ind*> (i)) != NULL) {
lm = min (lm, pi -> val);
lM = max (lM, pi -> val);
continue;
}
if ((plc = dynamic_cast <qf_cmplc*> (i)) != NULL) {
cm = min (cm, plc -> vC);
cM = max (cM, plc -> vC);
lm = min (lm, plc -> vL);
lM = max (lM, plc -> vL);
continue;
}
if ((ppslc = dynamic_cast <qf_pslc*> (i)) != NULL) {
cm = min (cm, ppslc -> vC);
cM = max (cM, ppslc -> vC);
lm = min (lm, ppslc -> vL);
lM = max (lM, ppslc -> vL);
cm = min (cm, ppslc -> vC2);
cM = max (cM, ppslc -> vC2);
lm = min (lm, ppslc -> vL2);
lM = max (lM, ppslc -> vL2);
continue;
}
}
# ifdef _QF_OPTIM_DEBUG
std::cout << "cm = " << cm << " cM = " << cM << " lm = " << lm <<
" lM = " << lM << '\n';
# endif
return;
}
// Optimization for Cauer filters
// This function orders the poles according to the standard arrangement
// found in Zverev
void qf_cauer::pole_idx_std (unsigned m) {
unsigned j = 0;
m--;
for (unsigned k = 0; k <= m; k ++) {
pole [k] = j;
j = m - j;
if (j < m/2) j ++;
}
}
void qf_cauer::pole_idx_init (unsigned m) {
for (unsigned i = 0; i < m; i++) {
pole. push_back (i);
poleb. push_back (true);
}
}
bool qf_cauer::pole_idx_next (unsigned k, unsigned n, bool flag) {
unsigned i = pole [k];
while (i != n)
if (! poleb[i]) {
if (! flag) poleb [pole [k]] = false;
poleb [pole [k] = i] = true;
return true;
}
else i++;
if (k == 0)
return false;
poleb [pole [k]] = false;
pole [k] = 0;
if (pole_idx_next (k - 1, n, false))
pole_idx_next (k, n, true);
else
return false;
return true;
}
qf_double_t qf_cauer::check_optim (void) {
if (! Pspec -> optc) return 0;
qf_double_t cm, cM, lm, lM;
lm = cm = hugedbl;
lM = cM = -hugedbl;
get_bounds (cm, cM, lm, lM);
return opt_error (cm, cM, lm, lM);
}