- 04 avr., 2016 1 validation
-
-
Surya Teja Cheedella a écrit
* adds Fig[4.23] graph which is 1-dim state space problem * adds LRTA star agent class * adds fully implemented LRTA star agent * adds tests for LRTA star agent
-
- 30 mar., 2016 1 validation
-
-
SnShine a écrit
-
- 24 mar., 2016 2 validations
-
-
Larry He a écrit
Apparently, set() does not equal {}
-
Larry He a écrit
Problems fixed: Replaced cmp: 1 instance in line 323 of search.py Convert set() to {}: 3 instances in line 29 of MDP.py, line 181 and 215 of search.py Convert .sort() to sorted(): 1 instance in line 150 of text.py Cast map to list: 1 instance in line 47 of grid.py
-
- 22 mar., 2016 1 validation
-
-
SnShine a écrit
-
- 15 mar., 2016 1 validation
-
-
Chipe1 a écrit
-
- 11 mar., 2016 5 validations
-
-
Chipe1 a écrit
-
Tarun Kumar a écrit
-
Lucas Moura a écrit
-
Chipe1 a écrit
-
Chipe1 a écrit
-
- 10 mar., 2016 2 validations
-
-
Tarun Kumar a écrit
-
MircoT a écrit
-
- 09 mar., 2016 2 validations
- 06 mar., 2016 4 validations
- 05 mar., 2016 3 validations
-
-
Tarun Kumar a écrit
-
norvig a écrit
These functions, which I had to implement in Python 2.2, are now available in standard Python.
-
norvig a écrit
use “raise NotImplementedError” for abstract methods
-
- 03 nov., 2011 1 validation
-
-
withal a écrit
Remove astar row from compare_graph_searchers table because it's sensitive to trivial changes. Needs real tests instead.
-
- 29 oct., 2011 2 validations
-
-
withal a écrit
-
withal a écrit
* graph_search missed deduping nodes in the frontier * astar_search didn't use 3rd-edition pseudocode * InstrumentedProblem didn't forward the path_cost method, so all the doctest results on instrumented cost-sensitive problems were wrong Also filled in breadth_first_search and per-node memoization of h (to fulfill the doc comment saying that was done). There's a remaining problem that sometimes trivial refactorings change the amount of search that is done, slightly, which should not happen since the code is supposed to be deterministic.
-
- 28 oct., 2011 1 validation
-
-
withal a écrit
Don't compare strings with 'is not'. (Broke things in pypy.) Also show Struct members in sorted order so doctests work in pypy.
-
- 26 oct., 2011 5 validations
- 23 oct., 2011 3 validations
- 17 oct., 2011 2 validations
- 11 oct., 2011 2 validations
- 10 oct., 2011 2 validations
-
-
withal a écrit
Agent.__init__ now takes a program parameter. A few more nonlocal-state-variable problems found and fixed. One agent program rewritten as a callable instance since it uses both state variables and abstract methods.
-
withal a écrit
Moved agent-program definition back into the constructors to get rid of all the copying between parameters, instance vars, and nonlocals. Fixed nonlocal state-var bug in ReflexAgentWithState.
-