RAMification adds 'name' attribute, giving control over the names of created objects

This commit is contained in:
Joeri Exelmans 2024-12-03 20:28:16 +01:00
parent 7c01b126c2
commit da4f1718ce
8 changed files with 64 additions and 32 deletions

View file

@ -56,7 +56,9 @@ if __name__ == "__main__":
filename = THIS_DIR+"/merged_mm.od"
with open(filename, "w") as file:
file.write(f"# Auto-generated by {__file__}\n\n")
file.write(f"# Auto-generated by {__file__}.\n\n")
file.write(f"# Merged run-time meta-models of 'Petri Net' and 'Port' formalisms.\n")
file.write(f"# An abstract 'Top'-class (superclass of everything else), and a 'generic_link'-association (which can connect everything with everything) have also been added.\n\n")
file.write(f"# PlantUML visualization: {plantuml_url}\n\n")
file.write(txt)