This commit is contained in:
Oskar Thoren 2019-10-17 12:45:21 +08:00
parent 0f4dff4ade
commit 5540ee3586
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
2 changed files with 3 additions and 9 deletions

View File

@ -9,13 +9,13 @@
<body style="color:white; background-color:black">
<pre>
<span style="filter: contrast(70%) brightness(190%);color:fuchsia;">Whisper theoretical model. Attempts to encode characteristics of it.
<span style="filter: contrast(70%) brightness(190%);color:fuchsia;">Whisper theoretical model. Attempts to encode characteristics of it.</span>
Goals:
1. Ensure network scales by being user or usage bound, as opposed to bandwidth growing in proportion to network size.
2. Staying with in a reasonable bandwidth limit for limited data plans.
3. Do the above without materially impacting existing nodes.
</span>
<span style="filter: contrast(70%) brightness(190%);color:fuchsia;">Case 1. Only receiving messages meant for you</span>
Assumptions:
@ -159,9 +159,6 @@ Assumptions:
<span style="filter: contrast(70%) brightness(190%);color:#3333FF;">For 10k users, receiving bandwidth is 1.5MB/day</span>
<span style="filter: contrast(70%) brightness(190%);color:red;">For 1m users, receiving bandwidth is 98.1MB/day</span>
NOTE: To solve 1m case we need to increase partitions gracefully
Alternatively, find a different way to partition envelopes within
This currently would require oter nodes to adapt
------------------------------------------------------------
</pre>
</body>

View File

@ -344,9 +344,6 @@ def case8():
print("")
print_assumptions([a1, a2, a3, a6, a7, a9])
print_usage(load_users)
print("NOTE: To solve 1m case we need to increase partitions gracefully")
print("Alternatively, find a different way to partition envelopes within")
print("This currently would require oter nodes to adapt")
print("------------------------------------------------------------")
# Run cases
@ -355,7 +352,7 @@ def case8():
# Print goals
print("")
print(bcolors.HEADER + "Whisper theoretical model. Attempts to encode characteristics of it.")
print(bcolors.HEADER + "Whisper theoretical model. Attempts to encode characteristics of it." + bcolors.ENDC)
print("")
print("Goals:")
print("1. Ensure network scales by being user or usage bound, as opposed to bandwidth growing in proportion to network size.")