OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProductWeight
(Results
1 - 2
of
2
) sorted by null
/external/openfst/src/include/fst/
product-weight.h
35
class
ProductWeight
: public PairWeight<W1, W2> {
43
typedef
ProductWeight
<typename W1::ReverseWeight, typename W2::ReverseWeight>
46
ProductWeight
() {}
48
ProductWeight
(const PairWeight<W1, W2>& w) : PairWeight<W1, W2>(w) {}
50
ProductWeight
(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) {}
52
static const
ProductWeight
<W1, W2> &Zero() {
53
static const
ProductWeight
<W1, W2> zero(PairWeight<W1, W2>::Zero());
57
static const
ProductWeight
<W1, W2> &One() {
58
static const
ProductWeight
<W1, W2> one(PairWeight<W1, W2>::One());
62
static const
ProductWeight
<W1, W2> &NoWeight()
[
all
...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h
30
class
ProductWeight
{
32
typedef
ProductWeight
<typename W1::ReverseWeight, typename W2::ReverseWeight>
35
ProductWeight
() {}
37
ProductWeight
(W1 w1, W2 w2) : value1_(w1), value2_(w2) {}
39
static const
ProductWeight
<W1, W2> &Zero() {
40
static const
ProductWeight
<W1, W2> zero(W1::Zero(), W2::Zero());
44
static const
ProductWeight
<W1, W2> &One() {
45
static const
ProductWeight
<W1, W2> one(W1::One(), W2::One());
64
ProductWeight
<W1, W2> &operator=(const
ProductWeight
<W1, W2> &w)
[
all
...]
Completed in 2456 milliseconds