We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae9791 commit 3847ff9Copy full SHA for 3847ff9
mocha_core/mocha_core/hash_comm.py
@@ -5,6 +5,15 @@
5
6
LENGTH = 6
7
8
+""" hash_comm.py
9
+ This file defines the potential headers to be used in the database. There
10
+ are two types: Hash and TsHeader. Hash is created by hashing the data with
11
+ sha256 and cropping the hash. TsHeader is created using the robot_id,
12
+ topic_id, and timestamp when the message was created.
13
+
14
+ TsHeader is the implementation favored for MOCHA's paper, as it keeps the
15
+ size of the message exchange bounded.
16
+"""
17
18
class Hash():
19
HASH_LENGTH = LENGTH
0 commit comments