aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps.conf.in
diff options
context:
space:
mode:
authorJulius Bünger <buenger@mytum.de>2019-04-04 13:41:25 +0200
committerJulius Bünger <buenger@mytum.de>2019-04-04 13:42:57 +0200
commit8c3d9fc59cd5617c4f5b7ea621971bdff25f5353 (patch)
tree910d8bdd653c13d47d943c69b405e2818aac2d14 /src/rps/rps.conf.in
parenta6f561efa7359dae5af8bfd3763e4f16168030ab (diff)
downloadgnunet-8c3d9fc59cd5617c4f5b7ea621971bdff25f5353.tar.gz
gnunet-8c3d9fc59cd5617c4f5b7ea621971bdff25f5353.zip
RPS: Return peers to client after many observed ids
Diffstat (limited to 'src/rps/rps.conf.in')
-rw-r--r--src/rps/rps.conf.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/rps/rps.conf.in b/src/rps/rps.conf.in
index ff701e371..9619c9889 100644
--- a/src/rps/rps.conf.in
+++ b/src/rps/rps.conf.in
@@ -26,3 +26,13 @@ FILENAME_VALID_PEERS = $GNUNET_DATA_HOME/rps/valid_peers.txt
26# Keep in mind, that (networksize)^(1/3) should be enough. 26# Keep in mind, that (networksize)^(1/3) should be enough.
27# So, 50 is enough for a network of size 50^3 = 125000 27# So, 50 is enough for a network of size 50^3 = 125000
28MINSIZE = 10 28MINSIZE = 10
29
30# The probability whith which we want a sampler element to have observed all
31# peer ids in the network at least
32DESIRED_PROBABILITY = 0.9
33
34# A factor that catches the 'bias' of a random stream of peer ids.
35#
36# As introduced by Brahms: Factor between the number of unique ids in a
37# truly random stream and number of unique ids in the gossip stream.
38DEFICIENCY_FACTOR = 0.4