Alloy - Generate .xml instance from .als

僤鯓⒐⒋嵵緔 提交于 2019-12-01 19:42:57

You can use the Alloy API. Generating an instance and writing it as an XML file can be easily done following those steps:

  1. Read the alloy model from its source file.

    model = CompUtil.parseEverything_fromFile(null, null, "yourmodel.als");

  2. Get the command to execute. for example :

    Command cmd=model.getAllCommands().get(0);

  3. Execute the model using the command obtained in step 2

    A4Solution solution= TranslateAlloyToKodkod.execute_command(null, model.getAllReachableSigs(), cmd, new A4Options());

  4. Write the solution generated in step 3

solution.writeXML("path/to/your.xml");

Examples can be found in the edu.mit.csail.sdg.alloy4whole package of the Alloy jar file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!