1 package org.woehlke.simulation.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 long mySerialVersionUID = 242L;
15
16 String TITLE = "diffusion limited aggregation (DLA)";
17
18 int THREAD_SLEEP_TIME = 50;
19
20 int NUMBER_OF_PARTICLES = 30000;
21 }