278279280281282283284285286287288
index++; } // build truth table if (this.table == null) { this.table = new BayesianTable(this); this.table.reset(); } else { this.table.reset(); }
396397398399400401402403404
/** * Reset the logic table. */ public void reset() { if (this.table == null) { this.table = new BayesianTable(this); } this.table.reset(); }