for (int i = 0; i < 10; i++)
{
//Communist group
addAgent(new WarAgent(20, 2, AgentType.AC,
0.1 + rand.nextDouble() / 10,
0.1 + rand.nextDouble() / 10)
);
//Fascist group
addAgent(new WarAgent(20, 2, AgentType.AC,
0.1 + rand.nextDouble() / 10,
0.9 + rand.nextDouble() / 10)
);
//Democrats
addAgent(new WarAgent(20, 2, AgentType.AC,
0.5 + rand.nextDouble() / 10,
0.5 + rand.nextDouble() / 10)
);
//Anarchists
addAgent(new WarAgent(20, 2, AgentType.AC,
0.9 + rand.nextDouble() / 10,
0.5 + rand.nextDouble() / 10)
);
}
}