mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
13 lines
335 B
Python
13 lines
335 B
Python
# (C) 2018 University of Bristol, Bar-Ilan University. See License.txt
|
|
|
|
from Compiler import types, instructions
|
|
|
|
class Program(object):
|
|
def __init__(self, progname):
|
|
types.program = self
|
|
instructions.program = self
|
|
self.curr_tape = None
|
|
execfile(progname)
|
|
def malloc(self, *args):
|
|
pass
|