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(); }
public eval() { W = new weights(); }
public Juraknifecore(weights Weights) { evalweight = new eval(Weights); }
public eval(weights Weights) { W = Weights; }