Skip to content
Snippets Groups Projects
Commit c21b1cce authored by Antonio Andriella's avatar Antonio Andriella
Browse files

Fix counter reset

parent b6e6104b
No related branches found
No related tags found
No related merge requests found
...@@ -268,8 +268,8 @@ def simulation(user_bn_model, user_var_target, user_memory_name, user_memory_val ...@@ -268,8 +268,8 @@ def simulation(user_bn_model, user_var_target, user_memory_name, user_memory_val
user_bn_model = bn_functions.update_cpds_tables(user_bn_model, dynamic_variables) user_bn_model = bn_functions.update_cpds_tables(user_bn_model, dynamic_variables)
#reset counter?? #reset counter??
robot_assistance_per_feedback = [[0 for i in range(Robot_Assistance.counter.value)] for j in robot_assistance_per_action = [[0 for i in range(Robot_Assistance.counter.value)] for j in
range(Robot_Feedback.counter.value)] range(User_Action.counter.value)]
attempt_counter_per_action = [[0 for i in range(Attempt.counter.value)] for j in attempt_counter_per_action = [[0 for i in range(Attempt.counter.value)] for j in
range(User_Action.counter.value)] range(User_Action.counter.value)]
game_state_counter_per_action = [[0 for i in range(Game_State.counter.value)] for j in game_state_counter_per_action = [[0 for i in range(Game_State.counter.value)] for j in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment