Package org.gnubridge.core.bidding

Examples of org.gnubridge.core.bidding.PointCalculator


          result = new Bid(3, NoTrump.i());
        }
      }
    } else if (NoTrump.i().equals(partnersBid.getTrump())) {
      if (partnersBid.getValue() == 2) {
        PointCalculator pc = new PointCalculator(hand);
        if (pc.getHighCardPoints() == 16) {
          result = new Pass();
        } else {
          result = new Bid(3, NoTrump.i());
        }
      } else if (partnersBid.getValue() == 3) {
View Full Code Here

TOP

Related Classes of org.gnubridge.core.bidding.PointCalculator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.