AIMA.Core.Environment.Map.MapAgent.notifyViewOfMetrics C# (CSharp) Method

notifyViewOfMetrics() protected method

protected notifyViewOfMetrics ( ) : void
return void
	protected override void notifyViewOfMetrics() {
        HashSet<System.String> keys = _search.getMetrics().keySet();
        foreach (System.String key in keys)
        {
			notifier.notifyViews("METRIC[" + key + "]="
                    + _search.getMetrics().get(key));
		}
	}
}