您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
43 行
1.0 KiB
43 行
1.0 KiB
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>
|
|
public class HeuristicPolicy : IPolicy
|
|
{
|
|
Func<float[]> m_Heuristic;
|
|
Action<AgentAction> m_ActionFunc;
|
|
|
|
/// <inheritdoc />
|
|
public HeuristicPolicy(Func<float[]> heuristic)
|
|
{
|
|
m_Heuristic = heuristic;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void RequestDecision(AgentInfo info, List<ISensor> sensors, Action<AgentAction> action)
|
|
{
|
|
m_ActionFunc = action;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void DecideAction()
|
|
{
|
|
if (m_ActionFunc != null)
|
|
{
|
|
m_ActionFunc.Invoke(new AgentAction { vectorActions = m_Heuristic.Invoke() });
|
|
m_ActionFunc = null;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|