Cream.Solver.ClearBest C# (CSharp) Method

ClearBest() public method

Clears the best solution this solver has been found.
public ClearBest ( ) : void
return void
        public void ClearBest()
        {
            bestSolution = null;
            bestValue = IsOption(Minimize) ? IntDomain.MaxValue : IntDomain.MinValue;
        }