Package org.jamesii.model.carules.grid.array

Examples of org.jamesii.model.carules.grid.array.ArrayGrid1DFactory


   * @return the grid parameter
   */
  private static BaseGridFactory getDefaultGridFactory(int dim) {
    switch (dim) {
    case 1:
      return new ArrayGrid1DFactory();
    case 2:
      return new ArrayGrid2DFactory();
    default:
      throw new UnsupportedOperationException(
          "Only 1d and 2d CA grids supported.");
View Full Code Here

TOP

Related Classes of org.jamesii.model.carules.grid.array.ArrayGrid1DFactory

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.