AForge.MachineLearning.TabuSearchExploration.SetTabuAction C# (CSharp) Method

SetTabuAction() public method

Set tabu action.
public SetTabuAction ( int action, int tabuTime ) : void
action int Action to set tabu for.
tabuTime int Tabu time in iterations.
return void
        public void SetTabuAction( int action, int tabuTime )
        {
            tabuActions[action] = tabuTime;
        }
    }