Microsoft.Zing.ZingerBoundedSearch.checkIfIterativeCutOffReached C# (CSharp) Méthode

checkIfIterativeCutOffReached() public méthode

public checkIfIterativeCutOffReached ( ZingerBounds currBounds ) : bool
currBounds ZingerBounds
Résultat bool
        public bool checkIfIterativeCutOffReached(ZingerBounds currBounds)
        {
            if ((currBounds.ExecutionCost > IterativeCutoff) || (ZingerConfiguration.BoundChoices && currBounds.ChoiceCost > FinalChoiceCutOff))
            {
                return true;
            }
            else
            {
                return false;
            }
        }