Skip to content

Getting maximum and minimum bid

Taha Doğan Güneş edited this page Oct 26, 2017 · 1 revision

You can simply get the maximum bid by:

try {
    Bid minBid = this.utilitySpace.getMinUtilityBid();
    Bid maxBid = this.utilitySpace.getMaxUtilityBid();
} catch (Exception e) {             
    e.printStackTrace();            
}

Clone this wiki locally