Exemple #1
0
 public MDPPlanner(RepairActionSearcher repairActionSearcher, BatchCostEstimator costeEstimator)
     : base(repairActionSearcher, costeEstimator)
 {
     rnd = new Random();
     IterationDetails = new BatchPlannerIterationDetails();
     Iterations       = 100; //defult parameter
     Depth            = 2;   //defult parameter
 }
Exemple #2
0
 public MDPPlanner(RepairActionSearcher repairActionSearcher, BatchCostEstimator costeEstimator, int k)
     : base(repairActionSearcher, costeEstimator, k)
 {
     visitedStates = new HashSet <SystemState>();
 }
Exemple #3
0
 public HeuristicBatchPlanner(RepairActionSearcher repairActionSearcher, BatchCostEstimator costEstimator)
 {
     this.costEstimator        = costEstimator;
     this.repairActionSearcher = repairActionSearcher;
     Bound = repairActionSearcher.K;
 }
Exemple #4
0
 public MDPPlanner(RepairActionSearcher repairActionSearcher, BatchCostEstimator costeEstimator, int iterations, int depth)
     : this(repairActionSearcher, costeEstimator)
 {
     Iterations = iterations;
     Depth      = depth;
 }