您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
39 行
890 B
39 行
890 B
using MLAgents.Sensor;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace MLAgents
|
|
{
|
|
/// <summary>
|
|
/// The Heuristic Policy uses a hards coded Heuristic method
|
|
/// to take decisions each time the RequestDecision method is
|
|
/// called.
|
|
/// </summary>
|
|
internal class HeuristicPolicy : IPolicy
|
|
{
|
|
Func<float[]> m_Heuristic;
|
|
float[] m_LastDecision;
|
|
|
|
/// <inheritdoc />
|
|
public HeuristicPolicy(Func<float[]> heuristic)
|
|
{
|
|
m_Heuristic = heuristic;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void RequestDecision(AgentInfo info, List<ISensor> sensors)
|
|
{
|
|
m_LastDecision = m_Heuristic.Invoke();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public float[] DecideAction()
|
|
{
|
|
return m_LastDecision;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|