Examples of Stigmergy


Examples of eas.users.students.benediktMueller.qswarm.neural.Stigmergy

  {
    this.cycles = cycles;
    this.sim = sim;
    this.rand = new Random();
    agents = new NeuroAgentBenedikt[sim.getRobots().length];
    stigmergy = new Stigmergy(sim.env.h, sim.env.w, 1);
   
    ParCollection params = GlobalVariables.getPrematureParameters();
   
    for(int i = 0; i < agents.length; i++)
    {
View Full Code Here

Examples of eas.users.students.benediktMueller.qswarm.neural.Stigmergy

  public SwarmEvolution(Experiment e)
  {
    this.rand = new Random();
    exp = e;
    swarms = new Swarm[10];
    stigmergy = new Stigmergy(exp.getSimulation().env.h, exp.getSimulation().env.w, 1);
   
    for(int i = 0; i < swarms.length; i++)
    {
      swarms[i] = new Swarm(exp.getRobots(), stigmergy, rand);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.