
aima.core.environment.vacuum.VacuumEnvironmentViewActionTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
package aima.core.environment.vacuum;
import aima.core.agent.Action;
import aima.core.agent.Agent;
import aima.core.agent.EnvironmentState;
import aima.core.agent.EnvironmentView;
public class VacuumEnvironmentViewActionTracker implements EnvironmentView {
private StringBuilder actions = null;
public VacuumEnvironmentViewActionTracker(StringBuilder envChanges) {
this.actions = envChanges;
}
//
// START-EnvironmentView
public void notify(String msg) {
// Do nothing by default.
}
public void agentAdded(Agent agent, EnvironmentState state) {
// Do nothing by default.
}
public void agentActed(Agent agent, Action action, EnvironmentState state) {
actions.append(action);
}
// END-EnvironmentView
//
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy