OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MinMaxWeightTpl
(Results
1 - 4
of
4
) sorted by null
/external/openfst/src/include/fst/
float-weight.h
447
class
MinMaxWeightTpl
: public FloatWeightTpl<T> {
451
typedef
MinMaxWeightTpl
<T> ReverseWeight;
453
MinMaxWeightTpl
() : FloatWeightTpl<T>() {}
455
MinMaxWeightTpl
(T f) : FloatWeightTpl<T>(f) {}
457
MinMaxWeightTpl
(const
MinMaxWeightTpl
<T> &w) : FloatWeightTpl<T>(w) {}
459
static const
MinMaxWeightTpl
<T> Zero() {
460
return
MinMaxWeightTpl
<T>(FloatLimits<T>::PosInfinity());
463
static const
MinMaxWeightTpl
<T> One() {
464
return
MinMaxWeightTpl
<T>(FloatLimits<T>::NegInfinity())
[
all
...]
fst-decl.h
35
template <class W> class
MinMaxWeightTpl
;
40
typedef
MinMaxWeightTpl
<float> MinMaxWeight;
random-weight.h
109
// This function object returns
MinMaxWeightTpl
<T>'s that are random integers
115
typedef
MinMaxWeightTpl
<T> Weight;
/external/openfst/src/test/
weight_test.cc
44
using fst::
MinMaxWeightTpl
;
88
WeightTester<
MinMaxWeightTpl
<T>, MinMaxWeightGenerator_<T> >
Completed in 27 milliseconds