Synthesis Results
Once the synthesis process finishes successfully, all partially defined AST expressions (synthesis primitives) will be replaced by a concrete normal AST expression.
Export the synthesis result
The synthesis result can be exported and archived into a machine-readable format. To export the whole model:
To export only the state update function of one single state:
When exported, the state update function (expression) is the conjunction of the state update functions under all provided instructions.
Import the synthesis result
To import the whole model from a file:
You can also import a single state update function (or any expression):
Synthesis result in ILAng
To utilize the synthesis result (from Python environment) in your C++ project using ILAng, an ILA model can be automatically constructed from the exported result:
Last updated