Package rlVizLib.visualization

Examples of rlVizLib.visualization.QueryableAgent


        return (theReceiver instanceof QueryableAgent);
    }

    @Override
    public String handleAutomatically(AgentInterface theAgent) {
        QueryableAgent castedAgent = (QueryableAgent) theAgent;

        Vector<Double> theValues = new Vector<Double>();

        for (int i = 0; i < theRequestObservations.size(); i++) {
            theValues.add(castedAgent.getValueForState(theRequestObservations.get(i)));
        }

        AgentValueForObsResponse theResponse = new AgentValueForObsResponse(theValues);
        String stringResponse = theResponse.makeStringResponse();
View Full Code Here

TOP

Related Classes of rlVizLib.visualization.QueryableAgent

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.