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