View Javadoc
1   package org.woehlke.computer.kurzweil.tabs.dla;
2   
3   import java.io.Serializable;
4   
5   /**
6    * Diffusion Limited Aggregation.
7    *
8    * (C) 2006 - 2013 Thomas Woehlke.
9    * https://thomas-woehlke.blogspot.com/2016/01/diffusion-limited-aggregation.html
10   * @author Thomas Woehlke
11   */
12  public interface DiffusionLimitedAggregation extends Serializable {
13  
14      String TITLE = "diffusion limited aggregation (DLA)";
15  
16      int THREAD_SLEEP_TIME = 50;
17  
18      int NUMBER_OF_PARTICLES = 30000;
19  }