mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-06 03:56:57 +00:00
15 lines
344 B
C#
15 lines
344 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface ISearchProblem<A, S, C>
|
|
where C : ICost<C>
|
|
{
|
|
IEnumerable<Tuple<A, S>> Successors(S state);
|
|
bool IsGoal(S state);
|
|
C StepCost(S fromState, A action, S toState);
|
|
C Heuristic(S state);
|
|
}
|
|
}
|