Exemplo n.º 1
0
 public DefaultStrategy(String strategyName, StrategyBaseInput input)
 {
     this.StrategyName = strategyName;
     this.Input = input;
     this._allocBase = new StaticAlloc();
     this._opSet = new OperationSet();
     this._adjustment = new DummyAdjustment();
 }
Exemplo n.º 2
0
 public void SetBaseAlloc(IAllocBase allocBase)
 {
     this._allocBase = allocBase;
 }
Exemplo n.º 3
0
 public void Build()
 {
     this._allocBase = new StaticAlloc();
     IAdjustment adj = new DummyAdjustment();
     AddAdjustment(adj, "Base");
 }