AIMA.Core.Environment.Vacuum.VacuumEnvironment.addAgent C# (CSharp) Метод

addAgent() публичный Метод

public addAgent ( Agent a, String location ) : void
a Agent
location String
Результат void
        public void addAgent(Agent a, String location)
        {
            // Ensure the agent state information is tracked before
            // adding to super, as super will notify the registered
            // EnvironmentViews that is was added.
            envState.setAgentLocation(a, location);
            super.AddAgent(a);
        }

Same methods

VacuumEnvironment::addAgent ( Agent a ) : void