This commit is contained in:
Loïc Guégan 2024-10-24 23:14:53 +02:00
parent 247999c6d1
commit 6f007a0bec

View file

@ -271,9 +271,8 @@ class Simulator:
#### All CASES WHERE INTERFERENCES OCCUR
# receiver_is_sending
# 1) check if current com receiver already sending
# 2) if yes, we check if current com is one that should be marked as interterference (current com is actually involving the receiver) see interferences_bug1 test
# 3) ensure not dealing with the special com (where sender is the receiver)
receiver_is_sending=(receiver==com_sender and com_receiver==receiver and sender!=receiver)
# 2) ensure not dealing with the special com (where sender is the receiver)
receiver_is_sending=(receiver==com_sender and sender!=receiver)
# receiver_is_receiving
# 1) check if the current com receiver is already receiving (thus interference)
# 2) ensure not dealing with the special com (where sender is the receiver)
@ -284,8 +283,10 @@ class Simulator:
sender_is_receiving=(com_receiver==sender and com_sender!=com_sender)
##### Update com return code
if receiver_is_sending or receiver_is_receiving or sender_is_receiving:
status=True
if com_sender != com_receiver:
status=True # receiver_is_sending is handled by return code (see self.communicate())
# In the following test, we ignore the receiver_is_sending (see comment line above)
# By ignoring receiver_is_sending, we solve the interferences_bug1 (see tests)
if not receiver_is_sending and com_sender != com_receiver:
event[2][10]=RCode.INTERFERENCES # Tell the sender/receiver interferences occurred
return status