Example #1
0
 public DepthLimitedSearch(ISearchStrategy <A, S, T, C> strategy, INodeLimiter <T, C> limit)
     : base(strategy)
 {
     this.limit = limit;
 }
Example #2
0
 public DepthLimitedNodeExpander(INodeExpander <A, S, T, C> expander, INodeLimiter <T, C> limit)
     : base(expander)
 {
     this.limit = limit;
 }