Esempio n. 1
0
 public BTParallel(ParallelFunction func, BTPrecondition precondition)
     : base(precondition)
 {
     _results   = new List <BTResult>();
     this._func = func;
 }
Esempio n. 2
0
 public BTParallel(ParallelFunction func) : this(func, null)
 {
 }
Esempio n. 3
0
		public BTParallel (ParallelFunction func) : this (func, null) {}
Esempio n. 4
0
		public BTParallel (ParallelFunction func, BTPrecondition precondition) : base (precondition) {
			_results = new List<BTResult>();
			this._func = func;
		}
Esempio n. 5
0
 public BtParallel(ParallelFunction func, BtPrecondition preCondi)
     : base(preCondi)
 {
     m_results = new List <BtResult>();
     m_func    = func;
 }