|
@@ -61,12 +61,12 @@ class ModelverseKernel(object):
|
|
|
raise Exception("Instruction pointer could not be found!")
|
|
|
elif isinstance(phase_v, string_types):
|
|
|
if phase_v == "init" and inst in self.compiled:
|
|
|
- print("%-30s(%s)" % ("COMPILED " + str(self.compiled[inst]), phase_v))
|
|
|
+ #print("%-30s(%s)" % ("COMPILED " + str(self.compiled[inst]), phase_v))
|
|
|
gen = self.execute_primitive(user_root, inst, username)
|
|
|
elif inst_v is None:
|
|
|
raise Exception("%s: error understanding command (%s, %s)" % (self.debug_info, inst_v, phase_v))
|
|
|
else:
|
|
|
- print("%-30s(%s) -- %s" % (inst_v["value"], phase_v, username))
|
|
|
+ #print("%-30s(%s) -- %s" % (inst_v["value"], phase_v, username))
|
|
|
gen = getattr(self, "%s_%s" % (inst_v["value"], phase_v))(user_root)
|
|
|
elif inst_v is None:
|
|
|
raise Exception("%s: error understanding command (%s, %s)" % (self.debug_info, inst_v, phase_v))
|
|
@@ -441,7 +441,6 @@ class ModelverseKernel(object):
|
|
|
("RDE", [user_frame, "returnvalue"]),
|
|
|
("CNV", ["finish"]),
|
|
|
]
|
|
|
- print("Resolved to " + str(variable))
|
|
|
_, _, _, _ = yield [("CD", [user_frame, "phase", new_phase]),
|
|
|
("CD", [user_frame, "returnvalue", variable]),
|
|
|
("DE", [phase_link]),
|