Package com.heatonresearch.aifh.examples.ca.mergelife.universe

Examples of com.heatonresearch.aifh.examples.ca.mergelife.universe.UniverseCell


        for (int dir = 0; dir < this.rowTransform.length; dir++) {
            final int otherRow = row + this.rowTransform[dir];
            final int otherCol = col + this.colTransform[dir];
            if (this.universe.isValid(otherRow, otherCol)) {
                final UniverseCell otherCell = this.universe.get(otherRow,
                        otherCol);
                total += otherCell.getAvg();
                cnt++;
            }
        }

        total /= cnt;
View Full Code Here

TOP

Related Classes of com.heatonresearch.aifh.examples.ca.mergelife.universe.UniverseCell

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.