find_result_phrase()

Return the ID of a configuration item containing a speech result.

Synopsis:

#include "asr/asrm.h"
 
int find_result_phrase(cfg_item_t *base, asr_result_t *result, int start_terminal, int *terminal, int *conf, int def_id)

Arguments:

base

The configuration structure to search.

result

The speech result containing the string to search for.

start_terminal

Not used.

terminal

On success, terminal is set to the index of the first terminal in the match.

conf

On success, conf is set to the confidence level of the match.

def_id

A default ID to return if the phrase isn't found.

Library:

libasr

Description:

The find_result_phrase() function finds the specified result phrase in the specified configuration and returns the ID of the matching configuration item. The configuration item must contain an exact match.

Returns:

The configuration ID of the matching configuration item or the default ID if a match isn't found.