You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The blue agent's observation includes the true compromised state instead of its observation of the compromised state.
# Gets the current safe/compromised status of all of the nodes
compromised_state = []
if self.obs_compromised_status:
# FIXED
compromised_state = np.asarray(
list(self.get_attributes_from_key("blue_view_compromised_status").values())
)
# previously was
# compromised_state = np.asarray(
# list(self.get_attributes_from_key("true_compromised_status").values())
# )
The text was updated successfully, but these errors were encountered:
Thank you for raising this issue @john-cardiff. We're currently working on getting the next release of Yawning-Titan out fairly soon; this fix will be applied in this release.
YAWNING-TITAN/yawning_titan/envs/generic/core/network_interface.py
Line 825 in 6457037
The blue agent's observation includes the true compromised state instead of its observation of the compromised state.
The text was updated successfully, but these errors were encountered: