コード例 #1
0
ファイル: RBFSNodeFactory.cs プロジェクト: ggrrin/LogSolver
 public RBFSNodeFactory(IRemainerPriceEstimator <State> estimator)
 {
     Estimator = estimator;
 }
コード例 #2
0
ファイル: AStarNode.cs プロジェクト: ggrrin/LogSolver
 public AStarNode(AStarNode <TState> parent, IAction <TState> action, IRemainerPriceEstimator <TState> estimator) : base(parent, action, estimator)
 {
 }
コード例 #3
0
ファイル: RBFSNode.cs プロジェクト: ggrrin/LogSolver
 public RBFSNode(RBFSNode <TState> parent, IAction <TState> action, IRemainerPriceEstimator <TState> estimator, int parentEstimate) : base(parent, action, estimator, parentEstimate)
 {
 }