Skip to content

Commit

Permalink
Updated TODO.md
Browse files Browse the repository at this point in the history
  • Loading branch information
anwaralameddin committed Jul 5, 2024
1 parent 9f59100 commit 5af0fff
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- [ ] [Monte Carlo Tree Search (MCTS)](https://en.wikipedia.org/wiki/Monte_Carlo_tree_search)
- [ ] RL solvers

- Incorporate CPU and GPU acceleration.
- [ ] Incorporate CPU and GPU acceleration.

- [ ] Improve the command line interface. In particular, allow the user to specify the agent and depth using the same option, e.g. <code>-a1 maximin-naive 6</code> instead of <code>-a1 maximin-naive -d1 6</code>.

Expand Down Expand Up @@ -40,4 +40,5 @@

## Appearance

- [ ] In the view module, aAccept functions to render pieces for different games. For example, X and O for Tic-Tac-Toe.
- [ ] Improve logs
15 changes: 15 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
[flake8]
; FIXME This is temporary, except for W503 which conflicts with black
ignore = D100,D101,D102,D103,D104,D105,D107,D205,D400,D401,I101,I201,W503,ANN101
; ANN101: Missing type annotation for self in method
; D100 : Missing docstring in public module
; D101 : Missing docstring in public class
; D102 : Missing docstring in public method
; D103 : Missing docstring in public function
; D104 : Missing docstring in public package
; D105 : Missing docstring in magic method
; D107 : Missing docstring in __init__
; D205 : 1 blank line required between summary line and description
; D400 : First line should end with a period
; D401 : First line should be in imperative mood
; I101 : Imported names are in the wrong order
; I201 : Missing newline between import groups
; W503 : Line break occurred before a binary operator

[easy_install]

0 comments on commit 5af0fff

Please sign in to comment.