/* implementation of Culture Model in Java Richard Ian Taylor MSc EASy (Full time) Artificial Life Project Autumn 98 Tutor: Greg Werner */ import java.util.*; import java.lang.*; import java.io.*; class Agent{ /* set the control constants of the class Agent */ static final int geneMax = 5; // number of features in a culture static final int alleleMax = 10; // number of alternative traits per feature int feature [] = new int[geneMax]; Vector neighbours = new Vector(); Agent(){ for( int i=0; i