コード例 #1
0
ファイル: Examples.C プロジェクト: arne-cl/turian-parser
template<typename EXAMPLE> Weights ExamplePtrs<EXAMPLE>::current_weight() const {
	Weights w;
	for (typename ExamplePtrs<EXAMPLE>::const_iterator e = this->begin(); e != this->end(); e++)
		w.add((*e)->weight(), (*e)->is_correct());
	return w;
}
コード例 #2
0
ファイル: Examples.C プロジェクト: arne-cl/turian-parser
template<typename EXAMPLE> Weights Examples<EXAMPLE>::initial_weight() const {
	Weights w;
	for (typename Examples<EXAMPLE>::const_iterator e = this->begin(); e != this->end(); e++)
		w.add(e->initial_weight(), e->is_correct());
	return w;
}