Files
MP-SPDZ/Compiler/GC/program.py
2018-03-07 12:25:45 +00:00

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