Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/bf/oa/control' into bf/oa/contro…
Browse files Browse the repository at this point in the history
…ller/pid
  • Loading branch information
amesin13 committed Dec 5, 2024
2 parents aa0d597 + 5a4cdbd commit ad192ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/mlpro/oa/control/controllers/wrapper_rl.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
## -- 2024-10-09 0.2.0 DA Refactoring
## -- 2024-10-13 0.3.0 DA Refactoring
## -- 2024-10-16 0.3.1 DA/ASP Bugfix in method OAControllerRL._adapt()
## -- 2024-12-05 0.4.0 DA Class OAControllerRL: implementation of plot methods
## -- 2024-12-05 0.4.0 DA Class OAControllerRL:
## -- - implementation of plot methods
## .- - redefintion of method assign_so()
## -------------------------------------------------------------------------------------------------

"""
Expand Down Expand Up @@ -81,6 +83,12 @@ def __init__( self,
p_visualize = p_visualize,
p_logging = p_logging,
**p_kwargs )


## -------------------------------------------------------------------------------------------------
def assign_so(self, p_so):
super().assign_so( p_so = p_so )
self._rl_policy.assign_so( p_so = p_so )


## -------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit ad192ed

Please sign in to comment.