Esempio n. 1
0
 public void bot_init(weights w = null, int nextcnt = 3)
 {
     init();
     if (w == null)
     {
         bot = new Juraknifecore();
     }
     else
     {
         bot = new Juraknifecore(w);
     }
     //Minorule = new mino_gene();
     bot.init();
     for (int i = 0; i < nextcnt; ++i)
     {
         int next = Minorule.genebag7int();
         bot.add_next(next);
         Board.add_next_piece(next);
     }
     bot.extend_node();
 }
Esempio n. 2
0
 public eval()
 {
     W = new weights();
 }
Esempio n. 3
0
 public Juraknifecore(weights Weights)
 {
     evalweight = new eval(Weights);
 }
Esempio n. 4
0
 public eval(weights Weights)
 {
     W = Weights;
 }