From 77aaa58b69d2cc956c2cbbb308ec520d06282b80 Mon Sep 17 00:00:00 2001 From: Wasil D Date: Thu, 7 Dec 2017 22:39:49 +0200 Subject: [PATCH] first --- agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents.py b/agents.py index db93ca795..a814baed1 100644 --- a/agents.py +++ b/agents.py @@ -134,7 +134,7 @@ def RandomAgentProgram(actions): """An agent that chooses an action at random, ignoring all percepts.""" return lambda percept: random.choice(actions) -# ______________________________________________________________________________ +# ______________________________________________________________________________!!! def SimpleReflexAgentProgram(rules, interpret_input):