Exemple #1
0
 public RBFSNodeFactory(IRemainerPriceEstimator <State> estimator)
 {
     Estimator = estimator;
 }
Exemple #2
0
 public AStarNode(AStarNode <TState> parent, IAction <TState> action, IRemainerPriceEstimator <TState> estimator) : base(parent, action, estimator)
 {
 }
Exemple #3
0
 public RBFSNode(RBFSNode <TState> parent, IAction <TState> action, IRemainerPriceEstimator <TState> estimator, int parentEstimate) : base(parent, action, estimator, parentEstimate)
 {
 }