/// <summary> /// Called at the start of recognition. Gets the search manager ready to recognize /// </summary> public override void StartRecognition() { Linguist.StartRecognition(); Pruner.StartRecognition(); Scorer.StartRecognition(); LocalStart(); }
/// <summary> /// Called at the start of recognition. Gets the search manager ready to recognize. /// </summary> public override void StartRecognition() { this.LogInfo("starting recognition"); Linguist.StartRecognition(); _pruner.StartRecognition(); _scorer.StartRecognition(); LocalStart(); if (_startTime == 0.0) { _startTime = Java.CurrentTimeMillis(); } }