From cf681e6267718b9cb17e32082439aa0a243a011e Mon Sep 17 00:00:00 2001 From: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com> Date: Thu, 26 Sep 2024 11:33:18 +0900 Subject: [PATCH] adjust params --- mixnet/ordering/src/paramset.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mixnet/ordering/src/paramset.rs b/mixnet/ordering/src/paramset.rs index a1ee7ff..a50e193 100644 --- a/mixnet/ordering/src/paramset.rs +++ b/mixnet/ordering/src/paramset.rs @@ -334,7 +334,7 @@ impl ParamSet { for num_mixes in [32] { for peering_degree in [10, 9, 8, 7, 6, 5, 4, 3, 2, 1] { for transmission_rate in [1000, 500, 100, 50, 10, 1] { - for mix_data_msg_prob in [0.0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06] { + for mix_data_msg_prob in [0.03] { let paramset = ParamSet { id, num_mixes, @@ -344,8 +344,8 @@ impl ParamSet { min_queue_size: 10, transmission_rate, num_senders: 1, - num_sender_msgs: 1000, - sender_data_msg_prob: 0.5, + num_sender_msgs: 10000, + sender_data_msg_prob: 0.01, mix_data_msg_prob, num_mixes_sending_data: num_mixes, // All mixes try to send data msg following mix_data_msg_prob queue_type,