Package ise.mace.inputs

Examples of ise.mace.inputs.Proposition


      change = 0;
    }
    // Inform each agent of how their vote went, and the overall group movement
    for (String agent : props.keySet())
    {
      Proposition p = props.get(agent);
      ec.act(new VoteResult(p, voteResult.get(p), change), getId(), authCode);
    }
  }
View Full Code Here


    @Override
    public Input handle(Action action, String actorID)
    {
      final Proposal prop = (Proposal)action;
      final Proposition p = new Proposition(prop.getType(), actorID,
              prop.getForGroup(), dmodel.time);

      logger.log(Level.FINE, "Agent {0} proposed a motion of  {1} to group {2}",
              new Object[]
              {
View Full Code Here

TOP

Related Classes of ise.mace.inputs.Proposition

Copyright © 2018 www.massapicom. 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.