MCPcopy Create free account
hub / github.com/data61/MP-SPDZ / reading

Method reading

Compiler/program.py:933–942  ·  view source on GitHub ↗
(self, concept, reference, part=None)

Source from the content-addressed store, hash-verified

931 return (abs(bl.i) + 63) // 64 * 8
932
933 def reading(self, concept, reference, part=None):
934 key = concept, reference, part
935 if self.options.papers and key not in self.recommended:
936 if isinstance(reference, tuple):
937 assert part is None
938 reference = ', '.join(papers.get(x) or x for x in reference)
939 suffix = ' (%s)' % part if part else ''
940 print('Recommended reading on %s: %s%s' % (
941 concept, papers.get(reference) or reference, suffix))
942 self.recommended.add(key)
943
944 def expected_communication(self):
945 if self.options.ring:

Callers 15

__init__Method · 0.80
__init__Method · 0.80
sTrigSubFunction · 0.80
exp2_fxFunction · 0.80
mux_expFunction · 0.80
log2_fxFunction · 0.80
sqrtFunction · 0.80
atanFunction · 0.80
InvertSqrtFunction · 0.80
__init__Method · 0.80
__init__Method · 0.80
dijkstraFunction · 0.80

Calls 4

printFunction · 0.85
joinMethod · 0.45
getMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected