File size: 237 Bytes
90ca39a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using AIMA.Agent.Action;
using AIMA.Agent.Percept;
namespace AIMA.Agent.Program
{
public interface IAgentProgram<T1,T2>
where T1:IAction
where T2:IPercept
{
T1 Execute(T2 percept);
}
}
|