Skip to content

Commit 725585b

Browse files
authored
Merge pull request #70 from pockerman/investigate_sarsa_semi_gradient
Update documentation
2 parents 378ef9e + 963389d commit 725585b

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

docs/source/API/actions.rst

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,32 @@
33

44
.. automodule:: actions
55

6+
.. autoclass:: ActionType
67

7-
8-
.. rubric:: Classes
9-
10-
.. autosummary::
11-
128
.. autoclass:: ActionBase
139
:members: __init__, act
14-
10+
1511
.. autoclass:: ActionIdentity
1612
:members: __init__, act
1713

18-
ActionNumericBinGeneralize
19-
ActionNumericStepGeneralize
20-
ActionRestore
14+
.. autoclass:: ActionNumericBinGeneralize
15+
:members: __init__, act
16+
17+
.. autoclass:: ActionNumericStepGeneralize
18+
:members: __init__, act
19+
20+
.. autoclass:: ActionRestore
21+
:members:: __init__, act
2122

2223
.. autoclass:: ActionStringGeneralize
2324
:members: __init__, act, add
2425

25-
ActionSuppress
26-
ActionTransform
27-
ActionType
26+
.. autoclass:: ActionSuppress
27+
:memebrs: __init__, act
28+
29+
.. autoclass:: ActionTransform
30+
:members: __init__, act
31+
2832

2933

3034

docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import os
1414
import sys
1515
#sys.path.insert(0, os.path.abspath('.'))
16+
sys.path.append(os.path.abspath("../../"))
1617
sys.path.append(os.path.abspath("../../src/algorithms/"))
1718
sys.path.append(os.path.abspath("../../src/exceptions/"))
1819
sys.path.append(os.path.abspath("../../src/spaces/"))

src/spaces/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
class ActionType(enum.IntEnum):
18-
"""Defines the status of an Action
18+
"""Defines the type of an Action
1919
"""
2020

2121
INVALID_TYPE = -1

0 commit comments

Comments
 (0)