Package org.encog.examples.nonlinear.basicstrategy.blackjack

Examples of org.encog.examples.nonlinear.basicstrategy.blackjack.Table


     * System.out.print(" "); System.out.print(hardValue(i));
     *
     * System.out.println(); }
     */

    Table table = new Table(1, new Dealer());
    table.addPlayer(new Player(1000));
    table.addPlayer(new Player(1000));
    table.addPlayer(new Player(1000));
    table.addPlayer(new Player(1000));
    table.addPlayer(new Player(1000));
    for (int i = 0; i < 10; i++) {
      table.play();
    }

  }
View Full Code Here


  public double calculateScore(Genome genome) {
   
    Player player = (Player)genome.getOrganism();
    player.setMoney(1000);
   
    Table table = new Table(1, new Dealer());
    table.addPlayer(player);
   
    for(int rounds = 0; rounds< 100; rounds++ )
    {
      table.play();
    }
   
    return player.getMoney();
  }
View Full Code Here

TOP

Related Classes of org.encog.examples.nonlinear.basicstrategy.blackjack.Table

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.