-
Notifications
You must be signed in to change notification settings - Fork 28
/
TODO
30 lines (23 loc) · 1015 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- MCTS:
- spdlog's default logger is multi-threaded so remove unnecessary debug logs protections
- add custom mutexes for time reporting and random generator calls
- add node garbage on action progression
- RIW:
- spdlog's default logger is multi-threaded so remove unnecessary debug logs protections
- add custom mutexes for time reporting and random generator calls
- A* and AO*:
- _goal_checker called only once when expanding the state
- AO*:
- catch exception of python solver's get_next_action() and get_utility()
- LRTDP and LAO*:
- check SSP?
- MARTDP:
- parallel agent searches
ALL:
- add watchdogs
- get_utility() returns Value() instead of double
- replace solved or goal message from root node in solve() with the LRTDP's one
- examples:
- check order of domain and state in all C++-based solver lambdas
- add all compatible algorithms to grid_multisolve (for instance A* is missing)
- add domain factory argument in C++-based solvers in all examples