Cream.Solver.FindBest C# (CSharp) Method

FindBest() public method

Finds the best solution. This method is equivalent to {@link #FindBest(long) FindBest(0)}.
public FindBest ( ) : Solution
return Solution
        public virtual Solution FindBest()
        {
            lock (this)
            {
                return FindBest(0);
            }
        }

Same methods

Solver::FindBest ( long timeout ) : Solution