Package fr.irit.halterego.rrl_ggp.serialization

Examples of fr.irit.halterego.rrl_ggp.serialization.GroundFactSet


        child.addExample(ex);
    }
  
    public Double getQ(RState state, RAction action, boolean straight)
    {
        GroundFactSet set = new GroundFactSet();
        for(GroundFact fact : state.getGroundFactState())
        {
            set.add(fact);
        }
        set.add(action.getGroundFact());
        return child.getQ(set,straight);
    }
View Full Code Here


    private GroundFactSet facts;
  private double q;
 
  private static GroundFactSet createGroundFactSet(RState state, RAction action)
  {
      GroundFactSet set = new GroundFactSet();
      for(GroundFact fact : state.getGroundFactState())
      {
          set.add(fact);
      }
      set.add(action.getGroundFact());
      return set;
  }
View Full Code Here

TOP

Related Classes of fr.irit.halterego.rrl_ggp.serialization.GroundFactSet

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.