diff --git a/whisper_scalability/report.html b/whisper_scalability/report.html index b24e45f..7c3e17a 100644 --- a/whisper_scalability/report.html +++ b/whisper_scalability/report.html @@ -9,13 +9,13 @@
 
-Whisper theoretical model. Attempts to encode characteristics of it.
+Whisper theoretical model. Attempts to encode characteristics of it.
 
 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.
-
+
 Case 1. Only receiving messages meant for you
 
 Assumptions:
@@ -159,9 +159,6 @@ Assumptions:
 For 10k users, receiving bandwidth is    1.5MB/day
 For  1m users, receiving bandwidth is   98.1MB/day
 
-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
 ------------------------------------------------------------
 
diff --git a/whisper_scalability/whisper.py b/whisper_scalability/whisper.py index 5d1aa53..d6209d0 100644 --- a/whisper_scalability/whisper.py +++ b/whisper_scalability/whisper.py @@ -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.")