{	printf(" acombs   "); }
double Bidder_A::getBid(double V) const
{	if (V < 0.25) return (V*1.1); else return (V); }

{	printf(" deloache "); }
double Bidder_B::getBid(double V) const
{	return (1.0); }

{	printf(" jadickin "); }
double Bidder_C::getBid(double V) const
{	if (V <= 0.33) return (0.33); else return (V); }

{	printf(" pgenest  "); }
double Bidder_D::getBid(double V) const
{	return (2.0*V/3.0 + 1.0/3.0); }

{	printf(" kkin     "); }
double Bidder_E::getBid(double V) const
{	if (V < 0.5) return (V+0.5); else return (V); }

{	printf(" rkumagai "); }
double Bidder_F::getBid(double V) const
{       return (0.99*V); }

{	printf(" ajwang   "); }
double Bidder_G::getBid(double V) const
{	return (1.01*V); }

{	printf(" jpym     "); }
double Bidder_H::getBid(double V) const
{	return (V); }

----------------------------------------------------------------------
Auction Game : 
                    Players in the Game  = 8
                    Auction Type         = Second Price Sealed Bid
                    Signal  Type         = Uniform Independent Private Values [0,1]
                    Each Bidder plays 7 matches. 

Auction Match : 
                    Bidders    per Match = 2
                    Iterations per Match = 10000000

 Matrix Display: 
 Profit of ROW while playing against COLUMN. 
 Max Points per Match: 100.0 

           jpym      ajwang    rkumagai  kkin      pgenest   jadickin  deloache  acombs   
 jpym          -         16.5      16.8       4.2       7.4      12.4       0.0      16.4 
 ajwang        16.7      -         16.8       4.2       7.4      12.4      -0.0      16.4 
 rkumagai      16.7      16.5      -          4.2       7.4      12.4       0.0      16.4 
 kkin          10.4      10.3      10.5      -         -1.0       5.0       0.0      10.1 
 pgenest       14.8      14.7      15.0       3.1      -          9.4       0.0      14.5 
 jadickin      16.1      15.9      16.2       4.2       7.4      -          0.0      15.8 
 deloache      -0.0       0.0       0.5     -25.0     -16.7      -5.4      -         -0.3 
 acombs        16.7      16.5      16.8       4.2       7.4      12.4       0.0      -    

Total Profits of each Bidder: 
             Total Points    % of Max Possible Points (  700.00)
             -------------   ---------------------------------
 jadickin  :     75.58                       0.11%
 acombs    :     73.99                       0.11%
 ajwang    :     73.90                       0.11%
 jpym      :     73.72                       0.11%
 rkumagai  :     73.57                       0.11%
 pgenest   :     71.42                       0.10%
 kkin      :     45.30                       0.06%
 deloache  :    -46.93                      -0.07%


 Matrix Display: 
 Status of ROW while playing against COLUMN. 

           jpym      ajwang    rkumagai  kkin      pgenest   jadickin  deloache  acombs   
 jpym           -         L         W         L         L         L         W         L   
 ajwang         W         -         W         L         L         L         L         L   
 rkumagai       L         L         -         L         L         L         L         L   
 kkin           W         W         W         -         L         W         W         W   
 pgenest        W         W         W         W         -         W         W         W   
 jadickin       W         W         W         L         L         -         W         W   
 deloache       L         W         W         L         L         L         -         L   
 acombs         W         W         W         L         L         L         W         -   

Wins of each Bidder: 
             Total Wins       Winning Percentage (of    7 games)
             -------------   ---------------------------------
 pgenest   :         7                       100.00%
 kkin      :         6                        85.71%
 jadickin  :         5                        71.43%
 acombs    :         4                        57.14%
 jpym      :         2                        28.57%
 ajwang    :         2                        28.57%
 deloache  :         2                        28.57%
 rkumagai  :         0                         0.00%