Open Schaechtle opened 2 years ago
Try to use the reverse compiler from the compiled SPE m
to an SPPL program source with equivalent semantics and then append it to the original program. Below is a sketch
m = ...
from sppl.compilers import spe_to_sppl
source_m = spe_to_sppl(m) # return type is io.StringIO
source_m_str = source_m.getvalue()
source_joint = '%s\n\n%s' % (source_m_str, source)
model = SPPL_compiler(source_joint).execute_module().model
Is there a good way to execute SPPL model source code while having it rely on a previously existing model? For example, assume I have an SPPL model
m
(of type ProductSPE) which models variablesa
andb
. I have this source code source in form of a string:which relies on
a
being defined but which would otherwise compile fine if I run:Obviously, without knowing about
m
it won't compile because the compiler doesn't know abouta
. Is there a good way to tell the compiler about a model (likem
) as a starting point? i.e. something like this: