mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-06 03:56:57 +00:00
15 lines
366 B
C#
15 lines
366 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using Queue;
|
|
|
|
public class DepthFirstSearch<A, S, T, C> : AbstractStateSpaceSearch<A, S, T, C>
|
|
where T : ISearchNode<A, S, T, C>
|
|
where C : ICost<C>, new()
|
|
{
|
|
public DepthFirstSearch(ISearchStrategy<A, S, T, C> strategy)
|
|
: base(strategy, () => new LIFO<T>())
|
|
{
|
|
}
|
|
}
|
|
}
|