From fb0a85fae79b644c41562e0238f35bbfbb59f103 Mon Sep 17 00:00:00 2001 From: Antonio Andriella <aandriella@iri.upc.edu> Date: Mon, 21 Sep 2020 22:55:06 +0200 Subject: [PATCH] remove robot, add agent variables --- bn_variables.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bn_variables.py b/bn_variables.py index 3571ef6..e402968 100644 --- a/bn_variables.py +++ b/bn_variables.py @@ -43,20 +43,20 @@ class Attention(enum.Enum): name = "attention" counter = 3 -class Robot_Assistance(enum.Enum): +class Agent_Assistance(enum.Enum): lev_0 = 0 lev_1 = 1 lev_2 = 2 lev_3 = 3 lev_4 = 4 lev_5 = 5 - name = "robot_assistance" + name = "agent_assistance" counter = 6 -class Robot_Feedback(enum.Enum): +class Agent_Feedback(enum.Enum): yes = 1 no = 0 - name = "robot_feedback" + name = "agent_feedback" counter = 2 class Game_State(enum.Enum): @@ -74,6 +74,8 @@ class Attempt(enum.Enum): name = "attempt" counter = 4 + + #test the module -- GitLab