#include "params.h"
#include "intproto.h"
#include "cutoffs.h"
Go to the source code of this file.
Macro Definition Documentation
Public Function Prototypes —————————————————————————-
Definition at line 73 of file intmatcher.h.
#define SE_TABLE_SIZE 512 |
Typedef Documentation
Function Documentation
void HeapSort |
( |
int |
n, |
|
|
register int |
ra[], |
|
|
register int |
rb[] |
|
) |
| |
Definition at line 1305 of file intmatcher.cpp.
{
register int i, rra, rrb;
int l, j, ir;
l = (n >> 1) + 1;
ir = n;
for (;;) {
if (l > 1) {
rra = ra[--l];
rrb = rb[l];
}
else {
rra = ra[ir];
rrb = rb[ir];
ra[ir] = ra[1];
rb[ir] = rb[1];
if (--ir == 1) {
ra[1] = rra;
rb[1] = rrb;
return;
}
}
i = l;
j = l << 1;
while (j <= ir) {
if (j < ir && ra[j] < ra[j + 1])
++j;
if (rra < ra[j]) {
ra[i] = ra[j];
rb[i] = rb[j];
j += (i = j);
}
else
j = ir + 1;
}
ra[i] = rra;
rb[i] = rrb;
}
}
Private Function Prototypes —————————————————————————-
Variable Documentation
int classify_adapt_feature_thresh = 230 |
"Threshold for good features during adaptive 0-255: "
int classify_adapt_proto_thresh = 230 |
"Threshold for good protos during adaptive 0-255: "
int classify_integer_matcher_multiplier = 14 |
"Integer Matcher Multiplier 0-255: "
bool disable_character_fragments = FALSE |
"Do not include character fragments in the" " results of the classifier"