Package ise.mace.participants

Examples of ise.mace.participants.AbstractAgent.initialise()


  String createGroupAgent(double food, double economic, double social,
          String name)
  {
    AbstractAgent a = new PoliticalAgentGroup(food, 0, AgentType.R, economic,
            social, name);
    a.initialise(new EnvironmentConnector(this));
    sim.addParticipant(a.getId(), a);
    sim.activateParticipant(a.getId());
    return a.getId();
  }
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.