/// <inheritdoc/>
    public override long[]? GetBestSelectionFound()
    {
        if (BestSelection.PaymentAmount < MinimumTarget)
        {
            return(null);
        }

        return(BestSelection.GetSolutionArray());
    }
Exemple #2
0
 /// <summary>Gets best valid found selection as an array of effective values, or <c>null</c> if none was found.</summary>
 public virtual long[]? GetBestSelectionFound() => BestSelection.GetSolutionArray();