Package frsf.cidisi.faia.agent

Examples of frsf.cidisi.faia.agent.Action


    @Override
    public Action selectAction() {
        this.setSolver(new SituationCalculus());

        Action selectedAction = null;
        try {
            selectedAction = this.getSolver().solve(new Object[]{this.getAgentState()});
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
View Full Code Here


    }

  
     @Override
      protected Action stringToAction(String stringAction) {
        Action actionObject = null;
       
  if (stringAction.equals("IrAragaey")) {
            actionObject = new IrAragaey();
        } else if (stringAction.equals("RecogerCofre")) {
            actionObject = new RecogerCofre();
View Full Code Here

TOP

Related Classes of frsf.cidisi.faia.agent.Action

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.