Skip to content

Commit

Permalink
Corrected the description for the Response class.
Browse files Browse the repository at this point in the history
  • Loading branch information
troiwill authored Apr 19, 2024
1 parent cc2e218 commit cad3e92
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pomdp_py/framework/generalization.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ from typing import Optional

cdef class Response:
"""
A Response class maintains variables within a dictionary.
However, subclasses of Response can provide access to the
dictionary variables using the dot (.) operator. Currently,
this class can handle arithmetic and comparison operations.
However, if special operations will need to be performed,
these operations need to be handled in the subclass.
A Response class serves as the output of ResponseModel. This
class should be derived for specific problems. All operations,
including arithmetic, comparison, null, and copy must be
implemented in subclasses.
"""

def copy(self) -> Response:
Expand Down

0 comments on commit cad3e92

Please sign in to comment.