├── CONTRIBUTORS.md ├── NOTICE.md ├── README.md ├── RELEASE-NOTES.md ├── developer-resources ├── hu.bme.mit.gamma.plugintemplate.transformation.commandhandler │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── plugintemplate │ │ └── transformation │ │ └── commandhandler │ │ └── CommandHandler.java ├── hu.bme.mit.gamma.plugintemplate.transformation.traceability │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── model │ │ ├── traceability.aird │ │ ├── traceability.ecore │ │ └── traceability.genmodel │ ├── plugin.properties │ ├── plugin.xml │ ├── src-gen │ │ └── .gitignore │ └── src │ │ └── .gitignore └── hu.bme.mit.gamma.plugintemplate.transformation │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── src-gen │ └── .gitignore │ ├── src │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── plugintemplate │ │ └── transformation │ │ ├── ExampleTransformer.xtend │ │ ├── Trace.xtend │ │ └── patterns │ │ ├── Patterns.vql │ │ └── TracePatterns.vql │ └── xtend-gen │ └── .gitignore ├── docs ├── Coding-conventions.md ├── Specific-descriptions.md └── architecture │ └── gamma-architecture.pptx ├── eclipse-environment ├── README.md ├── hu.bme.mit.gamma.oomph │ ├── .project │ └── gamma.setup └── images │ ├── eclipse-add-project.png │ ├── eclipse-add-user-project.png │ ├── eclipse-dsl.png │ ├── eclipse-installer.png │ └── eclipse-select-gamma.png ├── epl-v10.html ├── examples ├── hu.bme.mit.gamma.emmn.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── .gitignore │ ├── model │ │ ├── Control │ │ │ ├── ContractAutomata │ │ │ │ ├── Monitor.ggen │ │ │ │ └── OrchestratorEmmnActivation.gcd │ │ │ ├── Contracts │ │ │ │ └── Control.gsc │ │ │ └── Controller.gcd │ │ └── Interfaces │ │ │ └── Interfaces.gcd │ ├── src-gen │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── test-gen │ │ └── .gitignore │ └── test │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── emmn │ │ └── casestudy │ │ └── S1Test.java ├── hu.bme.mit.gamma.industrial.protocol.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ └── model │ │ ├── Async │ │ ├── ChannelIdealAsync │ │ │ └── Channel.gcd │ │ ├── ChannelLoseAllMessagesInIntervalAsync │ │ │ └── Channel.gcd │ │ ├── ChannelLoseAnyMessageAsync │ │ │ └── Channel.gcd │ │ ├── ChannelLoseSubsequentMessagesAsync │ │ │ └── Channel.gcd │ │ ├── ChannelTimingAsync │ │ │ └── Channel.gcd │ │ ├── MasterAsync │ │ │ └── MasterAsync.gcd │ │ ├── SlaveAsync │ │ │ └── SlaveAsync.gcd │ │ └── System │ │ │ ├── AsyncSystemIdealChannel │ │ │ ├── .AsyncOrionSystem.g2u │ │ │ ├── .AsyncOrionSystem.gsm │ │ │ ├── .AsyncOrionSystem.uppaal │ │ │ ├── .temporary_query.q │ │ │ ├── AsyncOrionSystem.gcd │ │ │ ├── AsyncOrionSystem.ggen │ │ │ └── AsyncOrionSystem.xml │ │ │ ├── AsyncSystemLoseAllMessagesInInterval │ │ │ ├── .AsyncOrionSystem.g2u │ │ │ ├── .AsyncOrionSystem.gsm │ │ │ ├── .AsyncOrionSystem.uppaal │ │ │ ├── .temporary_query.q │ │ │ ├── AsyncOrionSystem.gcd │ │ │ ├── AsyncOrionSystem.ggen │ │ │ └── AsyncOrionSystem.xml │ │ │ ├── AsyncSystemLoseAnyMessageChannel │ │ │ ├── .AsyncOrionSystem.g2u │ │ │ ├── .AsyncOrionSystem.gsm │ │ │ ├── .AsyncOrionSystem.uppaal │ │ │ ├── AsyncOrionSystem.gcd │ │ │ ├── AsyncOrionSystem.ggen │ │ │ └── AsyncOrionSystem.xml │ │ │ ├── AsyncSystemLoseSubsequentMessages │ │ │ ├── .AsyncOrionSystem.g2u │ │ │ ├── .AsyncOrionSystem.gsm │ │ │ ├── .AsyncOrionSystem.uppaal │ │ │ ├── .temporary_query.q │ │ │ ├── AsyncOrionSystem.gcd │ │ │ ├── AsyncOrionSystem.ggen │ │ │ └── AsyncOrionSystem.xml │ │ │ └── AsyncSystemTimingChannel │ │ │ ├── .AsyncOrionSystem.g2u │ │ │ ├── .AsyncOrionSystem.gsm │ │ │ ├── .AsyncOrionSystem.uppaal │ │ │ ├── AsyncOrionSystem.gcd │ │ │ ├── AsyncOrionSystem.ggen │ │ │ └── AsyncOrionSystem.xml │ │ ├── Cascade │ │ ├── SystemAllMessagesInAnIntervalChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ ├── SystemIdealChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ ├── SystemLoseAnyMessagesChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ ├── SystemLoseSubsequentMessagesChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ ├── SystemNoChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── .temporary_query.q │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ └── SystemTimingChannel │ │ │ ├── .OrionSystem.g2u │ │ │ ├── .OrionSystem.gsm │ │ │ ├── .OrionSystem.uppaal │ │ │ ├── OrionSystem.gcd │ │ │ ├── OrionSystem.ggen │ │ │ └── OrionSystem.xml │ │ ├── ChannelIdeal │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ ├── Channel_Figure.sct │ │ └── Channel_Old.sct │ │ ├── ChannelLoseAllMessagesInInterval │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── ChannelLoseAnyMessage │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── ChannelLoseSubsequentMessages │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── ChannelTiming │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── ChannelTimingNew │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── ChannelTimingOld │ │ ├── .Channel.y2g │ │ ├── Channel.gcd │ │ ├── Channel.ggen │ │ ├── Channel.sct │ │ └── Channel_Figure.sct │ │ ├── Interface │ │ └── Interfaces.gcd │ │ ├── Master │ │ ├── .Orion_Master_SM.l2s │ │ ├── .Orion_Master_SM_System.g2u │ │ ├── .Orion_Master_SM_System.gsm │ │ ├── .Orion_Master_SM_System.uppaal │ │ ├── Orion_Master_SM.gcd │ │ ├── Orion_Master_SM.ggen │ │ ├── Orion_Master_SM.lgsm │ │ ├── Orion_Master_SM.xsts │ │ ├── Orion_Master_SM_System.gcd │ │ ├── Orion_Master_SM_System.q │ │ └── Orion_Master_SM_System.xml │ │ ├── Slave │ │ ├── .Orion_Slave_SM.l2s │ │ ├── .Orion_Slave_SM_System.g2u │ │ ├── .Orion_Slave_SM_System.gsm │ │ ├── .Orion_Slave_SM_System.uppaal │ │ ├── Orion_Slave_SM.gcd │ │ ├── Orion_Slave_SM.ggen │ │ ├── Orion_Slave_SM.lgsm │ │ ├── Orion_Slave_SM.xsts │ │ ├── Orion_Slave_SM_System.gcd │ │ ├── Orion_Slave_SM_System.q │ │ └── Orion_Slave_SM_System.xml │ │ └── Sync │ │ ├── SystemAllMessagesInAnIntervalChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── .temporary_query.q │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml │ │ ├── SystemIdealChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── .temporary_query.q │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml │ │ ├── SystemLoseAnyMessagesChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── .temporary_query.q │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml │ │ ├── SystemLoseSubsequentMessagesChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── .temporary_query.q │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml │ │ ├── SystemNoChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── .temporary_query.q │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml │ │ └── SystemTimingChannel │ │ ├── .OrionSystem.g2u │ │ ├── .OrionSystem.gsm │ │ ├── .OrionSystem.uppaal │ │ ├── OrionSystem.gcd │ │ ├── OrionSystem.ggen │ │ └── OrionSystem.xml ├── hu.bme.mit.gamma.modes3.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── model │ │ ├── Interface │ │ │ ├── .Interfaces.y2g │ │ │ ├── Interfaces.gcd │ │ │ └── Interfaces.sct │ │ ├── Oracle │ │ │ └── Oracle.gcd │ │ ├── Section │ │ │ ├── Gamma │ │ │ │ └── Section.gcd │ │ │ └── Yakindu │ │ │ │ ├── .Section.y2g │ │ │ │ ├── Section.gcd │ │ │ │ ├── Section.ggen │ │ │ │ └── Section.sct │ │ ├── System │ │ │ ├── HighLevel │ │ │ │ ├── .HighLevelSystem.g2u │ │ │ │ ├── .HighLevelSystem.gsm │ │ │ │ ├── .HighLevelSystem.uppaal │ │ │ │ ├── HighLevelSystem.gcd │ │ │ │ ├── HighLevelSystem.q │ │ │ │ ├── HighLevelSystem.xml │ │ │ │ └── SafetyLogic │ │ │ │ │ └── HighLevelSafetyLogic.gcd │ │ │ ├── LowLevel │ │ │ │ ├── .MediumToLowSystemEquivalence.g2u │ │ │ │ ├── .MediumToLowSystemEquivalence.gsm │ │ │ │ ├── .MediumToLowSystemEquivalence.uppaal │ │ │ │ ├── .MediumToLowZoneEquivalence.g2u │ │ │ │ ├── .MediumToLowZoneEquivalence.gsm │ │ │ │ ├── .MediumToLowZoneEquivalence.uppaal │ │ │ │ ├── MediumToLowSystemEquivalence.gcd │ │ │ │ ├── MediumToLowSystemEquivalence.q │ │ │ │ ├── MediumToLowSystemEquivalence.xml │ │ │ │ ├── MediumToLowZoneEquivalence.gcd │ │ │ │ ├── MediumToLowZoneEquivalence.q │ │ │ │ ├── MediumToLowZoneEquivalence.xml │ │ │ │ ├── SafetyLogic │ │ │ │ │ └── LowLevelSafetyLogic.gcd │ │ │ │ └── Zone │ │ │ │ │ └── LowLevelZone.gcd │ │ │ └── MediumLevel │ │ │ │ ├── Async │ │ │ │ ├── .AsyncMediumLevelSystem.g2u │ │ │ │ ├── .AsyncMediumLevelSystem.gsm │ │ │ │ ├── .AsyncMediumLevelSystem.uppaal │ │ │ │ ├── AsyncMediumLevelSystem.gcd │ │ │ │ ├── AsyncMediumLevelSystem.q │ │ │ │ ├── AsyncMediumLevelSystem.xml │ │ │ │ ├── SafetyLogic │ │ │ │ │ └── AsyncMediumLevelSafetyLogic.gcd │ │ │ │ └── Zone │ │ │ │ │ └── AsyncMediumLevelZone.gcd │ │ │ │ └── Sync │ │ │ │ ├── .HighToMediumSystemEquivalence.g2u │ │ │ │ ├── .HighToMediumSystemEquivalence.gsm │ │ │ │ ├── .HighToMediumSystemEquivalence.uppaal │ │ │ │ ├── HighToMediumSystemEquivalence.gcd │ │ │ │ ├── HighToMediumSystemEquivalence.q │ │ │ │ ├── HighToMediumSystemEquivalence.xml │ │ │ │ ├── SafetyLogic │ │ │ │ └── MediumLevelSafetyLogic.gcd │ │ │ │ └── Zone │ │ │ │ └── MediumLevelZone.gcd │ │ └── Train │ │ │ ├── Async │ │ │ ├── AsyncTrain.gcd │ │ │ └── Train.gcd │ │ │ └── Sync │ │ │ └── Train.gcd │ └── trace │ │ └── ExecutionTrace0.get ├── hu.bme.mit.gamma.railway.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── measurement-results │ │ ├── COID │ │ │ ├── joint-transformation-test-generation-time.txt │ │ │ ├── test-generation-time.txt │ │ │ └── transformation-time.txt │ │ ├── RSS │ │ │ ├── Cascade │ │ │ │ ├── DX-cascade-verification-time.txt │ │ │ │ ├── XP-bfs-cascade-verification-time.txt │ │ │ │ ├── XP-cascade-verification-time.txt │ │ │ │ ├── XP-i-cascade-verification-time.txt │ │ │ │ ├── XS-cascade-verification-time.txt │ │ │ │ └── XU-cascade-verification-time.txt │ │ │ └── Synchronous │ │ │ │ ├── XP-bfs-synchronous-verification-time.txt │ │ │ │ ├── XP-i-synchronous-verification-time.txt │ │ │ │ ├── XP-synchronous-verification-time.txt │ │ │ │ ├── XS-synchronous-verification-time.txt │ │ │ │ └── XU-synchronous-verification-time.txt │ │ └── RailwayPathLocking │ │ │ ├── test-generation-time.txt │ │ │ └── transformation-time.txt │ ├── model │ │ ├── COID │ │ │ ├── Antivalence │ │ │ │ ├── MO_ANTIVAL_CHK.gcd │ │ │ │ └── MO_ANTIVAL_CHK.ggen │ │ │ ├── COID-Best.ggen │ │ │ ├── COID.ggen │ │ │ ├── Interface │ │ │ │ └── Interfaces.gcd │ │ │ ├── Jelzo │ │ │ │ ├── COID.gcd │ │ │ │ ├── COID.ggen │ │ │ │ └── COID.sct │ │ │ ├── System │ │ │ │ ├── Asynchronous │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.gcd │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.ggen │ │ │ │ │ ├── AntivalenceAdapter │ │ │ │ │ │ ├── MO_ANTIVAL_CHK.gcd │ │ │ │ │ │ ├── MO_ANTIVAL_CHK_Adapter.gcd │ │ │ │ │ │ └── MO_ANTIVAL_CHK_Wrapper.gcd │ │ │ │ │ ├── Every-Event │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Every-Every │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ └── JelzoAdapter │ │ │ │ │ │ ├── COID.gcd │ │ │ │ │ │ ├── COID_Adapter.gcd │ │ │ │ │ │ └── COID_Wrapper.gcd │ │ │ │ ├── Cascade │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.gcd │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.ggen │ │ │ │ │ ├── Event-Event │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Every-Event │ │ │ │ │ │ ├── DU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── DX │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── XU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Every-Every │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── DU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── DX │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── XP │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── XU │ │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Out-event │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── State-State │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── State │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Transition-pair │ │ │ │ │ │ └── DU │ │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ └── Transition │ │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ └── Synchronous │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.gcd │ │ │ │ │ ├── ANTIVAL_CHK_COID_System.ggen │ │ │ │ │ ├── Event-Event │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Every-Event │ │ │ │ │ ├── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── DX │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ └── XU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Every-Every │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── DX │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── XP │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ └── XU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Out-event │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── State-State │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── State │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ ├── Transition-pair │ │ │ │ │ └── DU │ │ │ │ │ │ └── _RS-Opt │ │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ │ │ └── Transition │ │ │ │ │ └── DU │ │ │ │ │ └── _RS-Opt │ │ │ │ │ ├── ANTIVAL_CHK_COID_System_Transformation.ggen │ │ │ │ │ └── ANTIVAL_CHK_COID_System_Verification.ggen │ │ │ └── Types │ │ │ │ └── Types.gcd │ │ └── RailwayPathLocking │ │ │ ├── Interfaces │ │ │ ├── Interfaces.gcd │ │ │ └── TransientInterfaces.gcd │ │ │ ├── Jelzo │ │ │ ├── Jelzo.gcd │ │ │ ├── Jelzo.ggen │ │ │ ├── TransientJelzo.gcd │ │ │ └── TransientJelzo.ggen │ │ │ ├── RailwayPath.ggen │ │ │ ├── System │ │ │ ├── Asynchronous │ │ │ │ ├── JelzoAdapter │ │ │ │ │ ├── JelzoAdapter.gcd │ │ │ │ │ └── JelzoWrapper.gcd │ │ │ │ ├── Transition-Pair │ │ │ │ │ └── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── .Vaganyut.gpm │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── Transition │ │ │ │ │ └── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── Vaganyut.gcd │ │ │ │ └── ValtoAdapter │ │ │ │ │ ├── ValtoAdapter.gcd │ │ │ │ │ └── ValtoWrapper.gcd │ │ │ ├── Cascade │ │ │ │ ├── Transition-Pair │ │ │ │ │ ├── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── DX │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── XU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── Transition │ │ │ │ │ ├── DU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── DX │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── XU │ │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ └── Vaganyut.gcd │ │ │ └── Synchronous │ │ │ │ ├── Transition-Pair │ │ │ │ ├── DU │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── DX │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ └── XU │ │ │ │ │ ├── _-Opt │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── Transition │ │ │ │ ├── DU │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ ├── DX │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ └── XU │ │ │ │ │ ├── _-Opt │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ ├── VaganyutTransformation.ggen │ │ │ │ │ └── VaganyutVerification.ggen │ │ │ │ └── Vaganyut.gcd │ │ │ ├── Types │ │ │ └── Types.gcd │ │ │ └── Valto │ │ │ ├── TransientValto.gcd │ │ │ ├── TransientValto.ggen │ │ │ ├── Valto.gcd │ │ │ └── Valto.ggen │ ├── src-gen │ │ └── .gitignore │ └── test-gen │ │ └── .gitignore ├── hu.bme.mit.gamma.ris.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── measurement-results │ │ ├── XP │ │ │ ├── State │ │ │ │ ├── A │ │ │ │ │ ├── array-capacity-2-I.txt │ │ │ │ │ ├── array-capacity-2.txt │ │ │ │ │ ├── array-capacity-4-I.txt │ │ │ │ │ ├── array-capacity-4.txt │ │ │ │ │ ├── array-capacity-8-I.txt │ │ │ │ │ └── array-capacity-8.txt │ │ │ │ ├── N │ │ │ │ │ ├── native-capacity-2-I.txt │ │ │ │ │ ├── native-capacity-4-I.txt │ │ │ │ │ └── native-capacity-8-I.txt │ │ │ │ └── V │ │ │ │ │ ├── varseq-capacity-2-I.txt │ │ │ │ │ ├── varseq-capacity-2.txt │ │ │ │ │ ├── varseq-capacity-4-I.txt │ │ │ │ │ ├── varseq-capacity-4.txt │ │ │ │ │ ├── varseq-capacity-8-Dsafety.txt │ │ │ │ │ ├── varseq-capacity-8-I.txt │ │ │ │ │ ├── varseq-capacity-8-no-safety.txt │ │ │ │ │ └── varseq-capacity-8.txt │ │ │ ├── XP-A-interaction-verification-time.txt │ │ │ ├── XP-A-transition-verification-time.txt │ │ │ ├── XP-N-interaction-verification-time.txt │ │ │ └── XP-N-transition-verification-time.txt │ │ ├── XS │ │ │ ├── State │ │ │ │ └── V │ │ │ │ │ ├── varseq-capacity-2.txt │ │ │ │ │ ├── varseq-capacity-4.txt │ │ │ │ │ └── varseq-capacity-8.txt │ │ │ └── XS-interaction-verification-time.txt │ │ └── XU │ │ │ ├── State │ │ │ ├── A │ │ │ │ ├── array-capacity-2.txt │ │ │ │ ├── array-capacity-4.txt │ │ │ │ └── array-capacity-8.txt │ │ │ └── V │ │ │ │ ├── varseq-capacity-2.txt │ │ │ │ ├── varseq-capacity-4.txt │ │ │ │ └── varseq-capacity-8.txt │ │ │ ├── XU-interaction-verification-time.txt │ │ │ └── XU-transition-verification-time.txt │ ├── model │ │ ├── Interfaces │ │ │ ├── Interfaces.gcd │ │ │ ├── Rigel.xsml │ │ │ └── RigelCommon.xsml │ │ ├── StateMachines │ │ │ ├── Diszpecser │ │ │ │ ├── CustomRigelDiszpecserAdapter.gcd │ │ │ │ ├── CustomRigelDiszpecserAdapter.prop │ │ │ │ ├── RigelDiszpecser.gcd │ │ │ │ ├── RigelDiszpecser.ggen │ │ │ │ ├── RigelDiszpecser.xsml │ │ │ │ └── RigelDiszpecserAdapter.gcd │ │ │ ├── ObjektumKezelo │ │ │ │ ├── CustomRigelObjektumKezeloAdapter.gcd │ │ │ │ ├── RigelObjektumKezelo.gcd │ │ │ │ ├── RigelObjektumKezelo.ggen │ │ │ │ ├── RigelObjektumKezelo.xsml │ │ │ │ └── RigelObjektumKezeloAdapter.gcd │ │ │ └── VezerloKozpont │ │ │ │ ├── CustomRigelVezerloKozpontAdapter.gcd │ │ │ │ ├── RigelVezerloKozpont.gcd │ │ │ │ ├── RigelVezerloKozpont.ggen │ │ │ │ ├── RigelVezerloKozpont.xsml │ │ │ │ └── RigelVezerloKozpontAdapter.gcd │ │ └── System │ │ │ ├── Interaction │ │ │ ├── XP │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ └── XU │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ ├── RigelSystem.gcd │ │ │ ├── RigelSystem.ggen │ │ │ ├── RigelSystem_original.gcd │ │ │ ├── State │ │ │ ├── XP │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ └── XU │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ ├── Transition │ │ │ ├── XP │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ └── XU │ │ │ │ ├── RigelSystem_Transformation.ggen │ │ │ │ └── RigelSystem_Verification.ggen │ │ │ ├── _RigelSystem_Transformation.ggen │ │ │ └── _RigelSystem_Verification.ggen │ ├── original │ │ ├── Rigel.xsml │ │ ├── RigelDiszpecser.xsml │ │ ├── RigelObjektumKezelo.xsml │ │ └── RigelVezerloKozpont.xsml │ └── trace-queue-modes │ │ ├── XP │ │ ├── A │ │ │ ├── trace-Spin-state-array-2-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-array-2 │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-array-4-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-array-4 │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-array-8-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ └── trace-Spin-state-array-8 │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ ├── N │ │ │ ├── trace-Spin-state-native-2-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-native-4-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ │ └── trace-Spin-state-native-8-I │ │ │ │ ├── ExecutionTrace0.get │ │ │ │ ├── ExecutionTrace1.get │ │ │ │ ├── ExecutionTrace2.get │ │ │ │ ├── ExecutionTrace3.get │ │ │ │ ├── ExecutionTrace4.get │ │ │ │ ├── ExecutionTrace5.get │ │ │ │ ├── ExecutionTrace6.get │ │ │ │ ├── ExecutionTrace7.get │ │ │ │ ├── ExecutionTrace8.get │ │ │ │ └── ExecutionTrace9.get │ │ └── V │ │ │ ├── trace-Spin-state-varsequence-2-I │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-2 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-4-I │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-4 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-8-DSFH │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-8-Dsafety │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-8-I │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-Spin-state-varsequence-8-no-safety │ │ │ ├── ExecutionTrace10.get │ │ │ ├── ExecutionTrace11.get │ │ │ ├── ExecutionTrace12.get │ │ │ ├── ExecutionTrace13.get │ │ │ ├── ExecutionTrace14.get │ │ │ ├── ExecutionTrace15.get │ │ │ ├── ExecutionTrace16.get │ │ │ ├── ExecutionTrace17.get │ │ │ ├── ExecutionTrace18.get │ │ │ └── ExecutionTrace19.get │ │ │ └── trace-Spin-state-varsequence-8 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ ├── XS │ │ └── V │ │ │ ├── trace-nuXmv-interaction-varsequence-4 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace10.get │ │ │ ├── ExecutionTrace100.get │ │ │ ├── ExecutionTrace101.get │ │ │ ├── ExecutionTrace102.get │ │ │ ├── ExecutionTrace103.get │ │ │ ├── ExecutionTrace104.get │ │ │ ├── ExecutionTrace105.get │ │ │ ├── ExecutionTrace106.get │ │ │ ├── ExecutionTrace107.get │ │ │ ├── ExecutionTrace108.get │ │ │ ├── ExecutionTrace109.get │ │ │ ├── ExecutionTrace11.get │ │ │ ├── ExecutionTrace110.get │ │ │ ├── ExecutionTrace111.get │ │ │ ├── ExecutionTrace112.get │ │ │ ├── ExecutionTrace113.get │ │ │ ├── ExecutionTrace114.get │ │ │ ├── ExecutionTrace12.get │ │ │ ├── ExecutionTrace13.get │ │ │ ├── ExecutionTrace14.get │ │ │ ├── ExecutionTrace15.get │ │ │ ├── ExecutionTrace16.get │ │ │ ├── ExecutionTrace17.get │ │ │ ├── ExecutionTrace18.get │ │ │ ├── ExecutionTrace19.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace20.get │ │ │ ├── ExecutionTrace21.get │ │ │ ├── ExecutionTrace22.get │ │ │ ├── ExecutionTrace23.get │ │ │ ├── ExecutionTrace24.get │ │ │ ├── ExecutionTrace25.get │ │ │ ├── ExecutionTrace26.get │ │ │ ├── ExecutionTrace27.get │ │ │ ├── ExecutionTrace28.get │ │ │ ├── ExecutionTrace29.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace30.get │ │ │ ├── ExecutionTrace31.get │ │ │ ├── ExecutionTrace32.get │ │ │ ├── ExecutionTrace33.get │ │ │ ├── ExecutionTrace34.get │ │ │ ├── ExecutionTrace35.get │ │ │ ├── ExecutionTrace36.get │ │ │ ├── ExecutionTrace37.get │ │ │ ├── ExecutionTrace38.get │ │ │ ├── ExecutionTrace39.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace40.get │ │ │ ├── ExecutionTrace41.get │ │ │ ├── ExecutionTrace42.get │ │ │ ├── ExecutionTrace43.get │ │ │ ├── ExecutionTrace44.get │ │ │ ├── ExecutionTrace45.get │ │ │ ├── ExecutionTrace46.get │ │ │ ├── ExecutionTrace47.get │ │ │ ├── ExecutionTrace48.get │ │ │ ├── ExecutionTrace49.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace50.get │ │ │ ├── ExecutionTrace51.get │ │ │ ├── ExecutionTrace52.get │ │ │ ├── ExecutionTrace53.get │ │ │ ├── ExecutionTrace54.get │ │ │ ├── ExecutionTrace55.get │ │ │ ├── ExecutionTrace56.get │ │ │ ├── ExecutionTrace57.get │ │ │ ├── ExecutionTrace58.get │ │ │ ├── ExecutionTrace59.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace60.get │ │ │ ├── ExecutionTrace61.get │ │ │ ├── ExecutionTrace62.get │ │ │ ├── ExecutionTrace63.get │ │ │ ├── ExecutionTrace64.get │ │ │ ├── ExecutionTrace65.get │ │ │ ├── ExecutionTrace66.get │ │ │ ├── ExecutionTrace67.get │ │ │ ├── ExecutionTrace68.get │ │ │ ├── ExecutionTrace69.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace70.get │ │ │ ├── ExecutionTrace71.get │ │ │ ├── ExecutionTrace72.get │ │ │ ├── ExecutionTrace73.get │ │ │ ├── ExecutionTrace74.get │ │ │ ├── ExecutionTrace75.get │ │ │ ├── ExecutionTrace76.get │ │ │ ├── ExecutionTrace77.get │ │ │ ├── ExecutionTrace78.get │ │ │ ├── ExecutionTrace79.get │ │ │ ├── ExecutionTrace8.get │ │ │ ├── ExecutionTrace80.get │ │ │ ├── ExecutionTrace81.get │ │ │ ├── ExecutionTrace82.get │ │ │ ├── ExecutionTrace83.get │ │ │ ├── ExecutionTrace84.get │ │ │ ├── ExecutionTrace85.get │ │ │ ├── ExecutionTrace86.get │ │ │ ├── ExecutionTrace87.get │ │ │ ├── ExecutionTrace88.get │ │ │ ├── ExecutionTrace89.get │ │ │ ├── ExecutionTrace9.get │ │ │ ├── ExecutionTrace90.get │ │ │ ├── ExecutionTrace91.get │ │ │ ├── ExecutionTrace92.get │ │ │ ├── ExecutionTrace93.get │ │ │ ├── ExecutionTrace94.get │ │ │ ├── ExecutionTrace95.get │ │ │ ├── ExecutionTrace96.get │ │ │ ├── ExecutionTrace97.get │ │ │ ├── ExecutionTrace98.get │ │ │ └── ExecutionTrace99.get │ │ │ ├── trace-nuXmv-state-varsequence-2 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ ├── trace-nuXmv-state-varsequence-4 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ │ └── trace-nuXmv-state-varsequence-8 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ └── ExecutionTrace3.get │ │ └── XU │ │ ├── A │ │ ├── trace-UPPAAL-state-array-2 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ ├── trace-UPPAAL-state-array-4 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ └── trace-UPPAAL-state-array-8 │ │ │ ├── ExecutionTrace0.get │ │ │ ├── ExecutionTrace1.get │ │ │ ├── ExecutionTrace2.get │ │ │ ├── ExecutionTrace3.get │ │ │ ├── ExecutionTrace4.get │ │ │ ├── ExecutionTrace5.get │ │ │ ├── ExecutionTrace6.get │ │ │ ├── ExecutionTrace7.get │ │ │ ├── ExecutionTrace8.get │ │ │ └── ExecutionTrace9.get │ │ └── V │ │ ├── trace-UPPAAL-state-varsequence-2 │ │ ├── ExecutionTrace0.get │ │ ├── ExecutionTrace1.get │ │ ├── ExecutionTrace2.get │ │ ├── ExecutionTrace3.get │ │ ├── ExecutionTrace4.get │ │ ├── ExecutionTrace5.get │ │ ├── ExecutionTrace6.get │ │ ├── ExecutionTrace7.get │ │ ├── ExecutionTrace8.get │ │ └── ExecutionTrace9.get │ │ ├── trace-UPPAAL-state-varsequence-4 │ │ ├── ExecutionTrace0.get │ │ ├── ExecutionTrace1.get │ │ ├── ExecutionTrace2.get │ │ ├── ExecutionTrace3.get │ │ ├── ExecutionTrace4.get │ │ ├── ExecutionTrace5.get │ │ ├── ExecutionTrace6.get │ │ ├── ExecutionTrace7.get │ │ ├── ExecutionTrace8.get │ │ └── ExecutionTrace9.get │ │ └── trace-UPPAAL-state-varsequence-8 │ │ ├── ExecutionTrace0.get │ │ ├── ExecutionTrace1.get │ │ ├── ExecutionTrace2.get │ │ ├── ExecutionTrace3.get │ │ ├── ExecutionTrace4.get │ │ ├── ExecutionTrace5.get │ │ ├── ExecutionTrace6.get │ │ ├── ExecutionTrace7.get │ │ ├── ExecutionTrace8.get │ │ └── ExecutionTrace9.get ├── hu.bme.mit.gamma.smarthome.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── model │ │ ├── Adaptivity.ggen │ │ ├── Control │ │ │ ├── ContractAutomata │ │ │ │ ├── S1MotionThenDelay.gcd │ │ │ │ ├── S2MotionThenMotionThenVentilation.gcd │ │ │ │ └── _Control.ggen │ │ │ ├── Contracts │ │ │ │ └── Control.gsc │ │ │ ├── Controller.gcd │ │ │ └── Figures │ │ │ │ ├── Contract.txt │ │ │ │ └── Controller.txt │ │ ├── Interfaces │ │ │ ├── Constants.gcd │ │ │ └── Interfaces.gcd │ │ ├── Occupancy │ │ │ ├── Components │ │ │ │ ├── Camera.gcd │ │ │ │ └── MotionDetector.gcd │ │ │ ├── ContractAutomata │ │ │ │ ├── S3DelayThenMotions.gcd │ │ │ │ ├── S4MotionThenMotion.gcd │ │ │ │ ├── S5MotionThenTooEarlyMotion.gcd │ │ │ │ ├── S6DelayThenMotionThenPersonPresence.gcd │ │ │ │ ├── S7MaximumRelayedMotion.gcd │ │ │ │ └── _Occupancy.ggen │ │ │ ├── Contracts │ │ │ │ └── Occupancy.gsc │ │ │ └── Figures │ │ │ │ ├── Camera.txt │ │ │ │ └── MotionDetector.txt │ │ ├── TestGeneration.ggen │ │ ├── Transformation.ggen │ │ ├── Ventilation │ │ │ ├── Components │ │ │ │ ├── AdaptiveVentilator.gcd │ │ │ │ └── Switch.gcd │ │ │ ├── ContractAutomata │ │ │ │ ├── S10DelayThenMotion.gcd │ │ │ │ ├── S11MotionThenPersonCountThenDelay.gcd │ │ │ │ ├── S8MotionThenDelayThenMotion.gcd │ │ │ │ ├── S9Delay.gcd │ │ │ │ └── _Ventilation.ggen │ │ │ ├── Contracts │ │ │ │ └── Ventilation.gsc │ │ │ └── Figures │ │ │ │ ├── AdaptiveVentilator.txt │ │ │ │ └── Switch.txt │ │ └── Verification.ggen │ ├── src-gen │ │ └── .gitignore │ └── src │ │ └── .gitignore ├── hu.bme.mit.gamma.stpa.cofi.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── .gitignore │ ├── model │ │ └── TrainDoor │ │ │ ├── CoFi │ │ │ ├── Nominal.gcd │ │ │ └── NominalAdapter.gcd │ │ │ ├── Conformance │ │ │ ├── Conformance.gcd │ │ │ ├── Conformance.ggen │ │ │ └── Conformance.gpd │ │ │ ├── Door │ │ │ ├── Door.gcd │ │ │ └── DoorAdapter.gcd │ │ │ ├── Interface │ │ │ └── Interface.gcd │ │ │ ├── System.gcd │ │ │ ├── System.ggen │ │ │ ├── System.gpd │ │ │ └── TrainDoorController │ │ │ ├── TrainDoorController.gcd │ │ │ └── TrainDoorControllerAdapter.gcd │ ├── src-gen │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── test-gen │ │ └── .gitignore │ └── test │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── stpa │ │ └── cofi │ │ └── casestudy │ │ └── traindoorcontrol │ │ └── Tests.java └── hu.bme.mit.jpl.spacemission.casestudy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── measurement-results │ ├── test-generation-time.txt │ └── transformation-time.txt │ ├── model │ ├── Groundstation │ │ └── GroundStation.gcd │ ├── Interface │ │ └── Interfaces.gcd │ ├── Mission.ggen │ ├── Spacecraft │ │ ├── AsynchronousSpacecraft.gcd │ │ └── Spacecraft.gcd │ ├── System │ │ ├── Asynchronous │ │ │ ├── DU │ │ │ │ ├── All-Def │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── All-Use │ │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ ├── GroundstationAdapter │ │ │ │ ├── GroundStationAdapter.gcd │ │ │ │ └── GroundStationWrapper.gcd │ │ │ ├── Mission.gcd │ │ │ └── SpacecraftAdapter │ │ │ │ ├── SpacecraftAdapter.gcd │ │ │ │ └── SpacecraftWrapper.gcd │ │ ├── Cascade │ │ │ ├── DU │ │ │ │ ├── All-Def │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── All-Use │ │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ ├── DX │ │ │ │ ├── All-Def │ │ │ │ │ ├── _-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── All-Use │ │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ ├── Mission.gcd │ │ │ └── XU │ │ │ │ ├── All-Def │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── All-Use │ │ │ │ ├── _-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ └── Synchronous │ │ │ ├── DU │ │ │ ├── All-Def │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ └── All-Use │ │ │ │ ├── _-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ ├── DX │ │ │ ├── All-Def │ │ │ │ ├── _-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ │ └── MissionVerification.ggen │ │ │ └── All-Use │ │ │ │ ├── _-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ ├── _RS-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ │ └── _RS-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ ├── Mission.gcd │ │ │ └── XU │ │ │ ├── All-Def │ │ │ ├── _-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ ├── _-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ ├── _RS-Opt │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ └── _RS-_ │ │ │ │ ├── MissionTransformation.ggen │ │ │ │ └── MissionVerification.ggen │ │ │ └── All-Use │ │ │ ├── _-Opt │ │ │ ├── MissionTransformation.ggen │ │ │ └── MissionVerification.ggen │ │ │ ├── _-_ │ │ │ ├── MissionTransformation.ggen │ │ │ └── MissionVerification.ggen │ │ │ ├── _RS-Opt │ │ │ ├── MissionTransformation.ggen │ │ │ └── MissionVerification.ggen │ │ │ └── _RS-_ │ │ │ ├── MissionTransformation.ggen │ │ │ └── MissionVerification.ggen │ └── SystemAsynchronous │ │ └── Cascade │ │ ├── Mission.gcd │ │ └── XP │ │ └── All-Use │ │ └── _RS-Opt │ │ ├── MissionTransformation.ggen │ │ └── MissionVerification.ggen │ ├── src-gen │ └── .gitignore │ └── test-gen │ └── .gitignore ├── plugins ├── README.md ├── c │ ├── hu.bme.mit.gamma.xsts.codegeneration.c.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── codegeneration │ │ │ └── c │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ └── hu.bme.mit.gamma.xsts.codegeneration.c │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── codegeneration │ │ │ └── c │ │ │ ├── CodeBuilder.xtend │ │ │ ├── HavocBuilder.xtend │ │ │ ├── IStatechartCode.xtend │ │ │ ├── WrapperBuilder.xtend │ │ │ ├── model │ │ │ ├── CodeModel.xtend │ │ │ ├── FileModel.xtend │ │ │ └── HeaderModel.xtend │ │ │ ├── platforms │ │ │ ├── IPlatform.xtend │ │ │ ├── SupportedPlatforms.xtend │ │ │ └── UnixPlatform.xtend │ │ │ ├── serializer │ │ │ ├── ActionSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── HavocSerializer.xtend │ │ │ ├── TypeDeclarationSerializer.xtend │ │ │ └── VariableDeclarationSerializer.xtend │ │ │ └── util │ │ │ └── GeneratorUtil.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── core │ ├── .gitignore │ ├── de.uni_paderborn.uppaal │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── uppaal.aird │ │ │ ├── uppaal.ecore │ │ │ ├── uppaal.ecorediag │ │ │ └── uppaal.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── de │ │ │ └── uni_paderborn │ │ │ └── uppaal │ │ │ └── derivedfeatures │ │ │ └── UppaalModelDerivedFeatures.java │ ├── hu.bme.mit.gamma.action.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── action │ │ │ └── language │ │ │ └── ide │ │ │ ├── ActionLanguageIdeModule.java │ │ │ └── ActionLanguageIdeSetup.java │ ├── hu.bme.mit.gamma.action.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── action │ │ │ └── language │ │ │ └── ui │ │ │ ├── ActionLanguageUiModule.java │ │ │ ├── contentassist │ │ │ └── ActionLanguageProposalProvider.java │ │ │ ├── labeling │ │ │ ├── ActionLanguageDescriptionLabelProvider.java │ │ │ └── ActionLanguageLabelProvider.java │ │ │ ├── outline │ │ │ └── ActionLanguageOutlineTreeProvider.java │ │ │ └── quickfix │ │ │ └── ActionLanguageQuickfixProvider.java │ ├── hu.bme.mit.gamma.action.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .launch │ │ │ └── Generate ActionLanguage (gad) Language Infrastructure.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── action │ │ │ └── language │ │ │ ├── ActionLanguage.xtext │ │ │ ├── ActionLanguageRuntimeModule.java │ │ │ ├── ActionLanguageStandaloneSetup.java │ │ │ ├── GenerateActionLanguage.mwe2 │ │ │ ├── formatting │ │ │ ├── ActionLanguageFormatter.java │ │ │ └── ActionLanguageFormatterUtil.java │ │ │ ├── generator │ │ │ └── ActionLanguageGenerator.java │ │ │ ├── scoping │ │ │ └── ActionLanguageScopeProvider.java │ │ │ └── validation │ │ │ └── ActionLanguageValidator.java │ ├── hu.bme.mit.gamma.action.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── action.aird │ │ │ ├── action.ecore │ │ │ └── action.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── action │ │ │ ├── derivedfeatures │ │ │ └── ActionModelDerivedFeatures.java │ │ │ └── util │ │ │ ├── ActionModelValidator.java │ │ │ ├── ActionSerializer.java │ │ │ └── ActionUtil.java │ ├── hu.bme.mit.gamma.codegeneration.java.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── codegeneration │ │ │ └── java │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.codegeneration.java.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── codegeneration │ │ │ │ └── java │ │ │ │ └── util │ │ │ │ ├── EventCodeGenerator.xtend │ │ │ │ ├── ExpressionSerializer.xtend │ │ │ │ ├── InterfaceCodeGenerator.xtend │ │ │ │ ├── InternalEventHandlerCodeGenerator.xtend │ │ │ │ ├── Namings.xtend │ │ │ │ ├── ReflectiveComponentCodeGenerator.xtend │ │ │ │ ├── TimerCallbackInterfaceGenerator.xtend │ │ │ │ ├── TimerInterfaceGenerator.xtend │ │ │ │ ├── TimerServiceCodeGenerator.xtend │ │ │ │ ├── TimingDeterminer.xtend │ │ │ │ ├── TypeDeclarationGenerator.xtend │ │ │ │ ├── TypeDeclarationSerializer.xtend │ │ │ │ ├── TypeSerializer.xtend │ │ │ │ └── VirtualTimerServiceCodeGenerator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.codegeneration.java │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── codegeneration │ │ │ │ └── java │ │ │ │ ├── AsynchronousAdapterCodeGenerator.xtend │ │ │ │ ├── AsynchronousCompositeComponentCodeGenerator.xtend │ │ │ │ ├── ChannelCodeGenerator.xtend │ │ │ │ ├── ChannelInterfaceGenerator.xtend │ │ │ │ ├── ComponentCodeGenerator.xtend │ │ │ │ ├── ComponentInterfaceGenerator.xtend │ │ │ │ ├── CompositeComponentCodeGenerator.xtend │ │ │ │ ├── EventDeclarationHandler.xtend │ │ │ │ ├── ExpressionSerializer.xtend │ │ │ │ ├── GlueCodeGenerator.xtend │ │ │ │ ├── LinkedBlockingQueueSource.xtend │ │ │ │ ├── NameGenerator.xtend │ │ │ │ ├── PortInterfaceGenerator.xtend │ │ │ │ ├── ReflectiveComponentCodeGenerator.xtend │ │ │ │ ├── StatechartWrapperCodeGenerator.xtend │ │ │ │ ├── SynchronousCompositeComponentCodeGenerator.xtend │ │ │ │ ├── Trace.xtend │ │ │ │ ├── TypeTransformer.xtend │ │ │ │ └── queries │ │ │ │ └── Patterns.vql │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.composition.xsts.uppaal.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── composition │ │ │ │ └── xsts │ │ │ │ └── uppaal │ │ │ │ └── transformation │ │ │ │ └── Gamma2XstsUppaalTransformerSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.dialog │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── dialog │ │ │ │ └── DialogUtil.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.eventpriority.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── eventpriority │ │ │ │ └── transformation │ │ │ │ ├── EventPriorityDeterminer.xtend │ │ │ │ └── EventPriorityTransformer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.expression.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── expression │ │ │ └── language │ │ │ └── ide │ │ │ ├── ExpressionLanguageIdeModule.java │ │ │ └── ExpressionLanguageIdeSetup.java │ ├── hu.bme.mit.gamma.expression.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── expression │ │ │ └── language │ │ │ └── ui │ │ │ ├── ExpressionLanguageUiModule.java │ │ │ ├── contentassist │ │ │ └── ExpressionLanguageProposalProvider.java │ │ │ ├── labeling │ │ │ ├── ExpressionLanguageDescriptionLabelProvider.java │ │ │ └── ExpressionLanguageLabelProvider.java │ │ │ ├── outline │ │ │ └── ExpressionLanguageOutlineTreeProvider.java │ │ │ └── quickfix │ │ │ └── ExpressionLanguageQuickfixProvider.java │ ├── hu.bme.mit.gamma.expression.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .launch │ │ │ └── Generate ConstraintLanguage (gct) Language Infrastructure.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── expression │ │ │ └── language │ │ │ ├── ExpressionLanguage.xtext │ │ │ ├── ExpressionLanguageRuntimeModule.java │ │ │ ├── ExpressionLanguageStandaloneSetup.java │ │ │ ├── GenerateExpressionLanguage.mwe2 │ │ │ ├── formatting │ │ │ ├── ExpressionLanguageFormatter.java │ │ │ └── ExpressionLanguageFormatterUtil.java │ │ │ ├── generator │ │ │ └── ExpressionLanguageGenerator.java │ │ │ ├── parser │ │ │ ├── CustomExpressionLanguageParser.java │ │ │ └── ExpressionLanguageParserAndLinker.java │ │ │ ├── scoping │ │ │ └── ExpressionLanguageScopeProvider.java │ │ │ └── validation │ │ │ └── ExpressionLanguageValidator.java │ ├── hu.bme.mit.gamma.expression.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── expression.aird │ │ │ ├── expression.ecore │ │ │ └── expression.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── expression │ │ │ ├── derivedfeatures │ │ │ └── ExpressionModelDerivedFeatures.java │ │ │ └── util │ │ │ ├── ArgumentInliner.java │ │ │ ├── ComplexTypeUtil.java │ │ │ ├── ExpressionEvaluator.java │ │ │ ├── ExpressionModelValidator.java │ │ │ ├── ExpressionNegator.java │ │ │ ├── ExpressionSerializer.java │ │ │ ├── ExpressionTypeDeterminator2.java │ │ │ ├── ExpressionUtil.java │ │ │ ├── FieldHierarchy.java │ │ │ ├── IndexHierarchy.java │ │ │ ├── LiteralExpressionCreator.java │ │ │ ├── PredicateHandler.java │ │ │ └── TypeSerializer.java │ ├── hu.bme.mit.gamma.genmodel.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── genmodel │ │ │ └── commandhandler │ │ │ ├── CancelHandler.java │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.genmodel.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── genmodel │ │ │ │ └── language │ │ │ │ └── ide │ │ │ │ ├── GenModelIdeModule.xtend │ │ │ │ └── GenModelIdeSetup.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.genmodel.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-genmodel-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── genmodel │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── GenModelUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── GenModelProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── GenModelDescriptionLabelProvider.xtend │ │ │ │ └── GenModelLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── GenModelOutlineTreeProvider.xtend │ │ │ │ └── quickfix │ │ │ │ └── GenModelQuickfixProvider.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.genmodel.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── genmodel │ │ │ │ └── language │ │ │ │ ├── GenModel.xtext │ │ │ │ ├── GenModelRuntimeModule.xtend │ │ │ │ ├── GenModelStandaloneSetup.xtend │ │ │ │ ├── GenerateGenModel.mwe2 │ │ │ │ ├── formatting │ │ │ │ └── GenModelFormatter.java │ │ │ │ ├── generator │ │ │ │ └── GenModelGenerator.xtend │ │ │ │ ├── linking │ │ │ │ └── GenModelLinker.xtend │ │ │ │ ├── scoping │ │ │ │ └── GenModelScopeProvider.xtend │ │ │ │ └── validation │ │ │ │ └── GenModelValidator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.genmodel.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── genmodel.aird │ │ │ ├── genmodel.ecore │ │ │ └── genmodel.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── genmodel │ │ │ ├── derivedfeatures │ │ │ └── GenmodelDerivedFeatures.java │ │ │ └── util │ │ │ └── GenmodelValidator.java │ ├── hu.bme.mit.gamma.gui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── gamma-icon-16.png │ │ │ ├── gamma-tracemodel-icon-16.png │ │ │ ├── sample.png │ │ │ └── sample@2x.png │ │ ├── plugin.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── gui │ │ │ ├── perspectives │ │ │ └── GammaPerspectiveFactory.java │ │ │ └── wizards │ │ │ ├── NewGammaAsynchronousAdapterWizard.java │ │ │ ├── NewGammaAsynchronousAdapterWizardPage.java │ │ │ ├── NewGammaPropertyWizard.java │ │ │ ├── NewGammaPropertyWizardPage.java │ │ │ ├── NewGclInterfaceWizard.java │ │ │ ├── NewGclInterfaceWizardPage.java │ │ │ ├── NewGclStatechartWizard.java │ │ │ ├── NewGclStatechartWizardPage.java │ │ │ ├── NewGclWizard.java │ │ │ └── NewGclWizardPage.java │ ├── hu.bme.mit.gamma.language.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── language │ │ │ └── util │ │ │ ├── linking │ │ │ └── GammaLanguageLinker.java │ │ │ └── serialization │ │ │ ├── GammaLanguageCrossReferenceSerializer.java │ │ │ └── GammaLanguageSerializer.java │ ├── hu.bme.mit.gamma.property.concretization.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── property │ │ │ └── concretization │ │ │ ├── FormulaConcretizer.java │ │ │ ├── PropertyConcretizer.java │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.property.language.ide │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── property │ │ │ │ └── language │ │ │ │ └── ide │ │ │ │ ├── PropertyLanguageIdeModule.xtend │ │ │ │ └── PropertyLanguageIdeSetup.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.property.language.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── property │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── PropertyLanguageUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── PropertyLanguageProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── PropertyLanguageDescriptionLabelProvider.xtend │ │ │ │ └── PropertyLanguageLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── PropertyLanguageOutlineTreeProvider.xtend │ │ │ │ ├── quickfix │ │ │ │ └── PropertyLanguageQuickfixProvider.xtend │ │ │ │ └── serializer │ │ │ │ └── PropertyLanguageSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.property.language │ │ ├── .classpath │ │ ├── .launch │ │ │ ├── Generate PropertyLanguage (gpd) Language Infrastructure.launch │ │ │ └── Launch Runtime Eclipse.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── property │ │ │ │ └── language │ │ │ │ ├── GeneratePropertyLanguage.mwe2 │ │ │ │ ├── PropertyLanguage.xtext │ │ │ │ ├── PropertyLanguageRuntimeModule.xtend │ │ │ │ ├── PropertyLanguageStandaloneSetup.xtend │ │ │ │ ├── formatting │ │ │ │ └── PropertyLanguageFormatter.xtend │ │ │ │ ├── generator │ │ │ │ └── PropertyLanguageGenerator.xtend │ │ │ │ ├── linking │ │ │ │ └── PropertyLanguageLinker.xtend │ │ │ │ ├── scoping │ │ │ │ └── PropertyLanguageScopeProvider.xtend │ │ │ │ ├── serializing │ │ │ │ └── PropertyLanguageCrossReferenceSerializer.xtend │ │ │ │ └── validation │ │ │ │ └── PropertyLanguageValidator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.property.model │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── property.aird │ │ │ ├── property.ecore │ │ │ └── property.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── property │ │ │ ├── derivedfeatures │ │ │ └── PropertyModelDerivedFeatures.java │ │ │ └── util │ │ │ ├── ExpressionTypeDeterminator.java │ │ │ ├── PropertyModelValidator.java │ │ │ └── PropertyUtil.java │ ├── hu.bme.mit.gamma.querygenerator.gui.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── querygenerator │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.querygenerator.gui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── querygenerator │ │ │ ├── application │ │ │ ├── AppMain.java │ │ │ └── View.java │ │ │ ├── controller │ │ │ ├── AbstractController.java │ │ │ ├── ThetaController.java │ │ │ └── UppaalController.java │ │ │ └── gui │ │ │ └── util │ │ │ ├── GeneratedTestVerifier.java │ │ │ └── GuiVerifier.java │ ├── hu.bme.mit.gamma.querygenerator │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── querygenerator │ │ │ │ ├── AbstractQueryGenerator.xtend │ │ │ │ ├── ImlQueryGenerator.xtend │ │ │ │ ├── NuxmvQueryGenerator.xtend │ │ │ │ ├── PromelaQueryGenerator.xtend │ │ │ │ ├── ThetaQueryGenerator.xtend │ │ │ │ ├── UppaalQueryGenerator.xtend │ │ │ │ ├── XstsUppaalQueryGenerator.xtend │ │ │ │ ├── operators │ │ │ │ └── TemporalOperator.java │ │ │ │ ├── patterns │ │ │ │ ├── Patterns.vql │ │ │ │ └── TracePatterns.vql │ │ │ │ └── serializer │ │ │ │ ├── AbstractReferenceSerializer.xtend │ │ │ │ ├── ImlPropertyExpressionSerializer.xtend │ │ │ │ ├── ImlPropertySerializer.xtend │ │ │ │ ├── ImlReferenceSerializer.xtend │ │ │ │ ├── NuxmvPropertyExpressionSerializer.xtend │ │ │ │ ├── NuxmvPropertySerializer.xtend │ │ │ │ ├── NuxmvReferenceSerializer.xtend │ │ │ │ ├── OcraPropertyExpressionSerializer.xtend │ │ │ │ ├── OcraPropertySerializer.xtend │ │ │ │ ├── OcraReferenceSerializer.xtend │ │ │ │ ├── PromelaPropertyExpressionSerializer.xtend │ │ │ │ ├── PromelaPropertySerializer.xtend │ │ │ │ ├── PromelaReferenceSerializer.xtend │ │ │ │ ├── PropertyExpressionSerializer.xtend │ │ │ │ ├── PropertySerializer.xtend │ │ │ │ ├── ThetaPropertyExpressionSerializer.xtend │ │ │ │ ├── ThetaPropertySerializer.xtend │ │ │ │ ├── ThetaReferenceSerializer.xtend │ │ │ │ ├── UppaalPropertyExpressionSerializer.xtend │ │ │ │ ├── UppaalPropertySerializer.xtend │ │ │ │ ├── UppaalReferenceSerializer.xtend │ │ │ │ ├── XstsUppaalPropertySerializer.xtend │ │ │ │ └── XstsUppaalReferenceSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.serializer.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── serializer │ │ │ └── commandhandler │ │ │ ├── CommandHandler.java │ │ │ ├── ExecutionTraceMetricComputer.java │ │ │ └── TransitionIdAdder.java │ ├── hu.bme.mit.gamma.statechart.contract.testgeneration.java │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── statechart │ │ │ │ └── contract │ │ │ │ └── testgeneration │ │ │ │ └── java │ │ │ │ └── StatechartToTestTransformer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.statechart.contract.tracegeneration │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── statechart │ │ │ │ └── contract │ │ │ │ └── tracegeneration │ │ │ │ ├── StatechartContractToTraceTransformer.xtend │ │ │ │ └── TransitionToStepTransformer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.statechart.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── statechart │ │ │ └── language │ │ │ └── ide │ │ │ ├── StatechartLanguageIdeModule.java │ │ │ └── StatechartLanguageIdeSetup.java │ ├── hu.bme.mit.gamma.statechart.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ ├── gamma-icon-16.png │ │ │ ├── new_StatechartLanguage_proj.gif │ │ │ └── project_template.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── resources │ │ │ └── model │ │ │ │ ├── Controller │ │ │ │ └── Controller.gcd │ │ │ │ ├── Crossroads.gcd │ │ │ │ ├── Interfaces │ │ │ │ └── Interfaces.gcd │ │ │ │ └── TrafficLight │ │ │ │ └── TrafficLightCtrl.gcd │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── statechart │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── StatechartLanguageUiModule.java │ │ │ │ ├── contentassist │ │ │ │ └── StatechartLanguageProposalProvider.java │ │ │ │ ├── labeling │ │ │ │ ├── StatechartLanguageDescriptionLabelProvider.java │ │ │ │ └── StatechartLanguageLabelProvider.java │ │ │ │ ├── outline │ │ │ │ └── StatechartLanguageOutlineTreeProvider.java │ │ │ │ ├── quickfix │ │ │ │ └── StatechartLanguageQuickfixProvider.java │ │ │ │ ├── serializer │ │ │ │ └── StatechartLanguageSerializer.java │ │ │ │ └── wizard │ │ │ │ ├── Messages.java │ │ │ │ ├── StatechartLanguageProjectTemplateProvider.xtend │ │ │ │ └── messages.properties │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.statechart.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .launch │ │ │ └── Generate StatechartLanguage (gcd) Language Infrastructure.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── statechart │ │ │ └── language │ │ │ ├── GenerateStatechartLanguage.mwe2 │ │ │ ├── StatechartLanguage.xtext │ │ │ ├── StatechartLanguageRuntimeModule.java │ │ │ ├── StatechartLanguageStandaloneSetup.java │ │ │ ├── formatting │ │ │ └── StatechartLanguageFormatter.java │ │ │ ├── generator │ │ │ └── StatechartLanguageGenerator.java │ │ │ ├── linking │ │ │ └── StatechartLanguageLinker.java │ │ │ ├── parser │ │ │ ├── CustomStatechartExpressionLanguageParser.java │ │ │ └── StatechartExpressionLanguageParserAndLinker.java │ │ │ ├── scoping │ │ │ └── StatechartLanguageScopeProvider.java │ │ │ ├── serializing │ │ │ └── StatechartLanguageCrossReferenceSerializer.java │ │ │ └── validation │ │ │ └── StatechartLanguageValidator.java │ ├── hu.bme.mit.gamma.statechart.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── composite.ecore │ │ │ ├── contract.ecore │ │ │ ├── interface.ecore │ │ │ ├── phase.ecore │ │ │ ├── statechart.aird │ │ │ ├── statechart.ecore │ │ │ └── statechart.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── statechart │ │ │ ├── derivedfeatures │ │ │ └── StatechartModelDerivedFeatures.java │ │ │ └── util │ │ │ ├── ActionSerializer.java │ │ │ ├── ElementSerializer.java │ │ │ ├── ExpressionSerializer.java │ │ │ ├── ExpressionTypeDeterminator.java │ │ │ ├── StatechartModelValidator.java │ │ │ ├── StatechartUtil.java │ │ │ └── TriggerSerializer.java │ ├── hu.bme.mit.gamma.statechart.phase.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── statechart │ │ │ │ └── phase │ │ │ │ └── transformation │ │ │ │ ├── Namings.xtend │ │ │ │ └── PhaseStatechartTransformer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.statechart.traverser │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── statechart │ │ │ │ └── traverser │ │ │ │ ├── LooplessPathRetriever.xtend │ │ │ │ └── Path.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.environment.transformation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── trace │ │ │ │ └── environment │ │ │ │ └── transformation │ │ │ │ ├── EnvironmentModel.xtend │ │ │ │ ├── OriginalEnvironmentBehaviorCreator.xtend │ │ │ │ ├── Trace.xtend │ │ │ │ ├── TraceReplayModelGenerator.xtend │ │ │ │ ├── TraceToEnvironmentModelTransformer.xtend │ │ │ │ └── TriggerTransformer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-tracemodel-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── trace │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── TraceLanguageUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── TraceLanguageProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── TraceLanguageDescriptionLabelProvider.xtend │ │ │ │ └── TraceLanguageLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── TraceLanguageOutlineTreeProvider.xtend │ │ │ │ ├── quickfix │ │ │ │ └── TraceLanguageQuickfixProvider.xtend │ │ │ │ └── serializer │ │ │ │ └── TraceLanguageSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .launch │ │ │ └── Generate TraceLanguage (get) Language Infrastructure.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── trace │ │ │ │ └── language │ │ │ │ ├── GenerateTraceLanguage.mwe2 │ │ │ │ ├── TraceLanguage.xtext │ │ │ │ ├── TraceLanguageRuntimeModule.xtend │ │ │ │ ├── TraceLanguageStandaloneSetup.xtend │ │ │ │ ├── formatting │ │ │ │ └── TraceLanguageFormatter.xtend │ │ │ │ ├── generator │ │ │ │ └── TraceLanguageGenerator.xtend │ │ │ │ ├── linking │ │ │ │ └── TraceLanguageLinker.xtend │ │ │ │ ├── scoping │ │ │ │ └── TraceLanguageScopeProvider.xtend │ │ │ │ ├── serializing │ │ │ │ └── TraceLanguageCrossReferenceSerializer.xtend │ │ │ │ └── validation │ │ │ │ └── TraceLanguageValidator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── trace.aird │ │ │ ├── trace.ecore │ │ │ └── trace.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── trace │ │ │ ├── derivedfeatures │ │ │ └── TraceModelDerivedFeatures.java │ │ │ └── util │ │ │ ├── ExpressionTypeDeterminator.java │ │ │ ├── TraceModelValidator.java │ │ │ ├── TraceUtil.java │ │ │ └── UnsentEventAssertExtender.java │ ├── hu.bme.mit.gamma.trace.testgeneration.c │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── trace │ │ │ │ └── testgeneration │ │ │ │ └── c │ │ │ │ ├── ActSerializer.xtend │ │ │ │ ├── ExpressionSerializer.xtend │ │ │ │ ├── MakefileGenerator.xtend │ │ │ │ ├── TestGenerator.xtend │ │ │ │ ├── TypeSerializer.xtend │ │ │ │ └── util │ │ │ │ └── TestGeneratorUtil.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.trace.testgeneration.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── trace │ │ │ └── testgeneration │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.trace.testgeneration.java │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── trace │ │ │ │ └── testgeneration │ │ │ │ └── java │ │ │ │ ├── AbstractAssertionHandler.xtend │ │ │ │ ├── ActAndAssertSerializer.xtend │ │ │ │ ├── DefaultAssertionHandler.xtend │ │ │ │ ├── ExpressionSerializer.xtend │ │ │ │ ├── TestGenerator.xtend │ │ │ │ ├── WaitingAllowedHandler.xtend │ │ │ │ ├── WaitingAllowedInFunction.xtend │ │ │ │ └── util │ │ │ │ └── TestGeneratorUtil.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.transformation.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── transformation │ │ │ │ └── util │ │ │ │ ├── ComponentDeactivator.xtend │ │ │ │ ├── GammaFileNamer.xtend │ │ │ │ ├── ModelSlicer.xtend │ │ │ │ ├── ModelSlicerModelAnnotatorPropertyGenerator.xtend │ │ │ │ ├── Namings.xtend │ │ │ │ ├── PropertyUnfolder.xtend │ │ │ │ ├── PropertyUnfolderModelSlicer.xtend │ │ │ │ ├── StatechartEcoreUtil.xtend │ │ │ │ ├── UnfoldedExecutionTraceBackAnnotator.xtend │ │ │ │ ├── UnfoldingTraceability.xtend │ │ │ │ ├── annotations │ │ │ │ ├── AnnotatableElements.xtend │ │ │ │ ├── AnnotatablePreprocessableElements.xtend │ │ │ │ ├── AnnotationStructures.xtend │ │ │ │ ├── ModelAnnotatorPropertyGenerator.xtend │ │ │ │ ├── PropertyGenerator.xtend │ │ │ │ └── StatechartAnnotator.xtend │ │ │ │ ├── preprocessor │ │ │ │ ├── AnalysisModelPreprocessor.xtend │ │ │ │ ├── ModelUnfolder.xtend │ │ │ │ └── StatechartPreprocessor.xtend │ │ │ │ ├── queries │ │ │ │ └── Patterns.vql │ │ │ │ └── reducer │ │ │ │ ├── CoveredPropertyReducer.xtend │ │ │ │ ├── Reducer.xtend │ │ │ │ ├── SystemOutEventReducer.xtend │ │ │ │ ├── SystemReducer.xtend │ │ │ │ └── WrittenOnlyVariableReducer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── ui │ │ │ ├── GammaApi.java │ │ │ ├── taskhandler │ │ │ ├── AdaptiveBehaviorConformanceCheckingHandler.java │ │ │ ├── AdaptiveContractTestGenerationHandler.java │ │ │ ├── AnalysisModelTransformationAndVerificationHandler.java │ │ │ ├── AnalysisModelTransformationHandler.java │ │ │ ├── CodeGenerationHandler.java │ │ │ ├── EventPriorityTransformationHandler.java │ │ │ ├── FaultTreeGenerationHandler.java │ │ │ ├── FmeaTableGenerationHandler.java │ │ │ ├── InterfaceCompilationHandler.java │ │ │ ├── ModelMutationHandler.java │ │ │ ├── MutationBasedTestGenerationHandler.java │ │ │ ├── OptimizerAndVerificationHandler.java │ │ │ ├── PhaseGenerationHandler.java │ │ │ ├── RegionDecompositionHandler.java │ │ │ ├── SafetyAssessmentHandler.java │ │ │ ├── SemanticDiffHandler.java │ │ │ ├── SlicingHandler.java │ │ │ ├── StatechartCompilationHandler.java │ │ │ ├── StatechartContractGenerationHandler.java │ │ │ ├── StatechartContractTestGenerationHandler.java │ │ │ ├── TaskHandler.java │ │ │ ├── TestGenerationHandler.java │ │ │ ├── TraceGenerationHandler.java │ │ │ ├── TraceReplayModelGenerationHandler.java │ │ │ ├── VerificationHandler.java │ │ │ └── YakinduCompilationHandler.java │ │ │ └── util │ │ │ ├── Calculator.java │ │ │ ├── DefaultResourceSetCreator.java │ │ │ ├── DefaultTaskHook.java │ │ │ ├── MedianCalculator.java │ │ │ ├── ResourceSetCreator.java │ │ │ ├── TaskExecutionTimeMeasurer.java │ │ │ └── TaskHook.java │ ├── hu.bme.mit.gamma.uppaal.composition.transformation.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── uppaal │ │ │ └── composition │ │ │ └── transformation │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.uppaal.composition.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── uppaal │ │ │ │ └── composition │ │ │ │ └── transformation │ │ │ │ ├── AssignmentExpressionCreator.xtend │ │ │ │ ├── AsynchronousClockTemplateCreator.xtend │ │ │ │ ├── AsynchronousComponentHelper.xtend │ │ │ │ ├── AsynchronousConnectorTemplateCreator.xtend │ │ │ │ ├── AsynchronousConstantsCreator.xtend │ │ │ │ ├── AsynchronousSchedulerTemplateCreator.xtend │ │ │ │ ├── Cloner.xtend │ │ │ │ ├── CompareExpressionCreator.xtend │ │ │ │ ├── CompositeToUppaalTransformer.xtend │ │ │ │ ├── Constraint.xtend │ │ │ │ ├── EnvironmentCreator.xtend │ │ │ │ ├── ExpressionCopier.xtend │ │ │ │ ├── ExpressionEvaluator.xtend │ │ │ │ ├── ExpressionTransformer.xtend │ │ │ │ ├── InPlaceExpressionTransformer.xtend │ │ │ │ ├── MessageQueueCreator.xtend │ │ │ │ ├── ModelModifierForTestGeneration.xtend │ │ │ │ ├── OrchestratorCreator.xtend │ │ │ │ ├── SynchronousChannelCreatorOfAsynchronousInstances.xtend │ │ │ │ ├── TestQueryGenerationHandler.xtend │ │ │ │ ├── Trace.xtend │ │ │ │ ├── TriggerTransformer.xtend │ │ │ │ ├── VariableTransformer.xtend │ │ │ │ ├── api │ │ │ │ ├── Gamma2UppaalTransformerSerializer.xtend │ │ │ │ └── util │ │ │ │ │ ├── DefaultCompositionToUppaalTransformer.xtend │ │ │ │ │ ├── ElementCoverage.xtend │ │ │ │ │ ├── UnhandledTransitionTransformer.xtend │ │ │ │ │ └── UppaalModelPreprocessor.xtend │ │ │ │ └── queries │ │ │ │ ├── Patterns.vql │ │ │ │ └── UppaalPatterns.vql │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.uppaal.serializer │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── uppaal │ │ │ │ └── serializer │ │ │ │ ├── ExpressionTransformer.xtend │ │ │ │ └── UppaalModelSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.uppaal.transformation.traceability │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── traceability.ecore │ │ │ └── traceability.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.uppaal.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── uppaal │ │ │ │ └── transformation │ │ │ │ ├── ModelValidator.xtend │ │ │ │ └── queries │ │ │ │ ├── ErrorPatterns.vql │ │ │ │ ├── Patterns.vql │ │ │ │ └── TracePatterns.vql │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.uppaal.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── uppaal │ │ │ │ └── util │ │ │ │ ├── AssignmentExpressionCreator.xtend │ │ │ │ ├── ClockExpressionHandler.xtend │ │ │ │ ├── MultiaryExpressionCreator.xtend │ │ │ │ ├── Namings.xtend │ │ │ │ ├── NtaBuilder.xtend │ │ │ │ ├── NtaOptimizer.xtend │ │ │ │ ├── TypeTransformer.xtend │ │ │ │ └── XstsNamings.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.uppaal.verification │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── uppaal │ │ │ │ └── verification │ │ │ │ ├── AbstractUppaalBackAnnotator.xtend │ │ │ │ ├── AbstractUppaalVerification.xtend │ │ │ │ ├── NotBackannotatedException.xtend │ │ │ │ ├── UppaalArrayParser.xtend │ │ │ │ ├── UppaalBackAnnotator.xtend │ │ │ │ ├── UppaalVerification.xtend │ │ │ │ ├── UppaalVerifier.xtend │ │ │ │ ├── XstsUppaalBackAnnotator.xtend │ │ │ │ ├── XstsUppaalVerification.xtend │ │ │ │ ├── patterns │ │ │ │ ├── Patterns.vql │ │ │ │ └── TracePatterns.vql │ │ │ │ └── settings │ │ │ │ ├── UppaalSettings.xtend │ │ │ │ └── UppaalSettingsSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── util │ │ │ │ ├── DualConsoleHandler.xtend │ │ │ │ ├── ElementMatcher.xtend │ │ │ │ ├── FileUtil.xtend │ │ │ │ ├── GammaEcoreUtil.xtend │ │ │ │ ├── GammaRandom.xtend │ │ │ │ ├── InterruptableCallable.xtend │ │ │ │ ├── InterruptableRunnable.xtend │ │ │ │ ├── JavaUtil.xtend │ │ │ │ ├── PathEscaper.xtend │ │ │ │ ├── ReflectiveViatraMatcher.xtend │ │ │ │ ├── ScannerLogger.xtend │ │ │ │ ├── SubsequentPrimeGenerator.xtend │ │ │ │ ├── SystemChecker.xtend │ │ │ │ ├── ThreadRacer.xtend │ │ │ │ └── Triple.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.verification.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── verification │ │ │ ├── result │ │ │ └── ThreeStateBoolean.java │ │ │ └── util │ │ │ ├── AbstractVerification.xtend │ │ │ ├── AbstractVerifier.xtend │ │ │ ├── DeterminismCheckPostprocessor.xtend │ │ │ ├── TraceBuilder.xtend │ │ │ └── VerificationPostprocessor.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── deprecated │ ├── hu.bme.mit.gamma.validation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.pde.core.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ ├── derived │ │ │ └── DerivationPatterns.vql │ │ │ └── validation │ │ │ └── ErrorPatterns.vql │ ├── hu.bme.mit.gamma.yakindu.interface.transformation.commandhandler │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── yakinduif │ │ │ └── transformation │ │ │ └── commandhandler │ │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.yakindu.transformation.traceability │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── traceability.ecore │ │ │ └── traceability.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.yakindu.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src-gen │ │ └── .gitignore │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── yakindu │ │ │ └── transformation │ │ │ ├── batch │ │ │ ├── ExpressionTransformer.xtend │ │ │ ├── InterfaceTransformer.xtend │ │ │ ├── ModelValidator.xtend │ │ │ └── YakinduToGammaTransformer.xtend │ │ │ └── queries │ │ │ ├── ErrorPatterns.vql │ │ │ ├── Patterns.vql │ │ │ └── TargetPatterns.vql │ │ └── xtend-gen │ │ └── .gitignore ├── headless │ ├── README.md │ ├── docs │ │ ├── headless-gamma-docker.md │ │ ├── headless-gamma-eclipse.md │ │ ├── headless-gamma-webserver.md │ │ └── headless-gamma-workflow.md │ ├── hu.bme.mit.gamma.headless.api │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── win │ │ │ │ └── Dockerfile │ │ ├── docs │ │ │ ├── headless-gamma-docker.md │ │ │ └── headless-gamma-document.md │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── product │ │ │ ├── linux.product │ │ │ └── windows.product │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── api │ │ │ │ └── headless │ │ │ │ ├── AbstractEntryPoint.java │ │ │ │ ├── Application.java │ │ │ │ ├── GammaEntryPoint.java │ │ │ │ ├── HeadlessApplicationCommandHandler.java │ │ │ │ ├── ProjectImporter.java │ │ │ │ └── WorkspaceGenerator.java │ │ └── target-platform │ │ │ ├── linux.target │ │ │ └── windows.target │ └── hu.bme.mit.gamma.headless.server │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── README.md │ │ ├── headless_eclipse │ │ └── .gitignore │ │ ├── log │ │ └── .gitignore │ │ ├── pom.xml │ │ ├── resources │ │ ├── config.properties │ │ └── gamma-wrapper.yaml │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── headless │ │ │ └── server │ │ │ ├── OpenApiWebServer.java │ │ │ ├── service │ │ │ ├── ProcessBuilderCli.java │ │ │ ├── Provider.java │ │ │ └── Validator.java │ │ │ └── util │ │ │ ├── DirectoryFilter.java │ │ │ ├── EclipseProjectFilter.java │ │ │ ├── FileHandlerUtil.java │ │ │ └── ZipUtils.java │ │ └── workspaces │ │ └── .gitignore ├── iml │ ├── .gitignore │ ├── README.md │ ├── hu.bme.mit.gamma.iml.verification │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── iml │ │ │ │ └── verification │ │ │ │ ├── ImlApiHelper.xtend │ │ │ │ ├── ImlArrayParser.xtend │ │ │ │ ├── ImlComposerSemanticDiffer.xtend │ │ │ │ ├── ImlDoubleCallSemanticDiffer.xtend │ │ │ │ ├── ImlExpressionParser.xtend │ │ │ │ ├── ImlPythonApiHelper.xtend │ │ │ │ ├── ImlRegionDecomposer.xtend │ │ │ │ ├── ImlSemanticDiffer.xtend │ │ │ │ ├── ImlVerification.xtend │ │ │ │ ├── ImlVerifier.xtend │ │ │ │ └── TraceBackAnnotator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.xsts.iml.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── iml │ │ │ └── transformation │ │ │ ├── Gamma2XstsImlTransformerSerializer.xtend │ │ │ ├── XstsToImlTransformer.xtend │ │ │ ├── serialization │ │ │ ├── ActionSerializer.xtend │ │ │ ├── DeclarationSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── ModelSerializer.xtend │ │ │ └── TypeSerializer.xtend │ │ │ └── util │ │ │ ├── MessageQueueHandler.xtend │ │ │ └── Namings.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── mutation │ ├── .gitignore │ ├── hu.bme.mit.gamma.mutation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── mutation │ │ │ │ ├── ModelElementMutator.xtend │ │ │ │ └── ModelMutator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── mutation-bin │ │ └── .gitignore ├── nuxmv │ ├── .gitignore │ ├── .project │ ├── README.md │ ├── hu.bme.mit.gamma.nuxmv.verification │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── nuxmv │ │ │ │ └── verification │ │ │ │ ├── NuxmvArrayParser.xtend │ │ │ │ ├── NuxmvVerification.xtend │ │ │ │ ├── NuxmvVerifier.xtend │ │ │ │ └── TraceBackAnnotator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.xsts.nuxmv.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── nuxmv │ │ │ └── transformation │ │ │ ├── Gamma2XstsNuxmvTransformerSerializer.xtend │ │ │ ├── XstsToNuxmvTransformer.xtend │ │ │ ├── serializer │ │ │ ├── DeclarationSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── ModelSerializer.xtend │ │ │ └── TypeSerializer.xtend │ │ │ └── util │ │ │ ├── Configuration.xtend │ │ │ └── Namings.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── ocra │ ├── .gitignore │ ├── hu.bme.mit.gamma.ocra.verification │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── ocra │ │ │ │ └── verification │ │ │ │ ├── OcraVerification.xtend │ │ │ │ └── OcraVerifier.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.xsts.ocra.transformation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── ocra │ │ │ └── transformation │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── ModelSerializer.xtend │ │ │ ├── NamingSerializer.xtend │ │ │ ├── TypeSerializer.xtend │ │ │ ├── api │ │ │ └── Gamma2OcraTransformerSerializer.xtend │ │ │ └── util │ │ │ └── OcraUtil.java │ │ └── xtend-gen │ │ └── .gitignore ├── pom.xml ├── promela │ ├── .gitignore │ ├── README.md │ ├── hu.bme.mit.gamma.promela.verification │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── promela │ │ │ │ └── verification │ │ │ │ ├── PromelaArrayParser.xtend │ │ │ │ ├── PromelaVerification.xtend │ │ │ │ ├── PromelaVerifier.xtend │ │ │ │ └── TraceBackAnnotator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.xsts.promela.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── promela │ │ │ └── transformation │ │ │ ├── Gamma2XstsPromelaTransformerSerializer.xtend │ │ │ ├── XstsToPromelaTransformer.xtend │ │ │ ├── serializer │ │ │ ├── DeclarationSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── ModelSerializer.xtend │ │ │ └── TypeSerializer.xtend │ │ │ └── util │ │ │ ├── ArrayHandler.xtend │ │ │ ├── Configuration.xtend │ │ │ ├── HavocHandler.xtend │ │ │ ├── MessageQueueHandler.xtend │ │ │ ├── Namings.xtend │ │ │ └── ParallelActionHandler.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── rcp │ └── hu.bme.mit.gamma.rcp │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Application.e4xmi │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── css │ │ └── default.css │ │ ├── hu.bme.mit.gamma.rcp.product │ │ ├── icons │ │ ├── about.png │ │ ├── gamma-128.bmp │ │ ├── gamma-128.png │ │ ├── gamma-16.bmp │ │ ├── gamma-16.png │ │ ├── gamma-256.bmp │ │ ├── gamma-256.png │ │ ├── gamma-32.bmp │ │ ├── gamma-32.png │ │ ├── gamma-48.bmp │ │ ├── gamma-48.png │ │ ├── gamma-64.bmp │ │ ├── gamma-64.png │ │ ├── home.png │ │ ├── open_in_app.png │ │ ├── save_edit.png │ │ └── splash.png │ │ ├── plugin.xml │ │ ├── plugin_customization.ini │ │ ├── splash.bmp │ │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── rcp │ │ ├── handlers │ │ ├── AboutHandler.java │ │ ├── OpenHandler.java │ │ ├── QuitHandler.java │ │ └── SaveHandler.java │ │ └── parts │ │ └── SamplePart.java ├── safety │ ├── .gitignore │ ├── README.md │ ├── hu.bme.mit.gamma.fei.language.ide │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── fei │ │ │ │ └── language │ │ │ │ └── ide │ │ │ │ ├── FaultExtensionLanguageIdeModule.xtend │ │ │ │ └── FaultExtensionLanguageIdeSetup.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.fei.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── fei │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── FaultExtensionLanguageUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── FaultExtensionLanguageProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── FaultExtensionLanguageDescriptionLabelProvider.xtend │ │ │ │ └── FaultExtensionLanguageLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── FaultExtensionLanguageOutlineTreeProvider.xtend │ │ │ │ └── quickfix │ │ │ │ └── FaultExtensionLanguageQuickfixProvider.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.fei.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .launch │ │ │ └── Generate FaultExtensionLanguage (gfei) Language Infrastructure.launch │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── fei │ │ │ │ └── language │ │ │ │ ├── FaultExtensionLanguage.xtext │ │ │ │ ├── FaultExtensionLanguageRuntimeModule.xtend │ │ │ │ ├── FaultExtensionLanguageStandaloneSetup.xtend │ │ │ │ ├── GenerateFaultExtensionLanguage.mwe2 │ │ │ │ ├── formatting2 │ │ │ │ └── FaultExtensionLanguageFormatter.xtend │ │ │ │ ├── generator │ │ │ │ └── FaultExtensionLanguageGenerator.xtend │ │ │ │ ├── linking │ │ │ │ └── FaultExtensionLanguageLinker.xtend │ │ │ │ ├── scoping │ │ │ │ └── FaultExtensionLanguageScopeProvider.xtend │ │ │ │ ├── serializing │ │ │ │ └── FaultExtensionLanguageCrossReferenceSerializer.xtend │ │ │ │ └── validation │ │ │ │ └── FaultExtensionLanguageValidator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.fei.model │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── fei.ecore │ │ │ └── fei.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── fei │ │ │ └── util │ │ │ └── FaultExtensionModelValidator.java │ ├── hu.bme.mit.gamma.fei.xsap.transformation │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── fei │ │ │ │ └── xsap │ │ │ │ └── transformation │ │ │ │ └── serializer │ │ │ │ ├── CommonCausesSerializer.xtend │ │ │ │ ├── FaultEffectSerializer.xtend │ │ │ │ ├── GlobalDynamicsSerializer.xtend │ │ │ │ └── ModelSerializer.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.xsap.visualizer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsap │ │ │ └── visualizer │ │ │ └── FaultTreeVisualizer.xtend │ │ └── xtend-gen │ │ └── .gitignore ├── scenario │ ├── .gitignore │ ├── README.md │ ├── docs │ │ └── Scenario tutorial.docx │ ├── hu.bme.mit.gamma.scenario.language.ide │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── scenario │ │ │ │ └── language │ │ │ │ └── ide │ │ │ │ ├── ScenarioLanguageIdeModule.xtend │ │ │ │ └── ScenarioLanguageIdeSetup.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.scenario.language.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── icons │ │ │ └── gamma-icon-16.png │ │ ├── plugin.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── scenario │ │ │ │ └── language │ │ │ │ └── ui │ │ │ │ ├── ScenarioLanguageUiModule.xtend │ │ │ │ ├── contentassist │ │ │ │ └── ScenarioLanguageProposalProvider.xtend │ │ │ │ ├── labeling │ │ │ │ ├── ScenarioLanguageDescriptionLabelProvider.xtend │ │ │ │ └── ScenarioLanguageLabelProvider.xtend │ │ │ │ ├── outline │ │ │ │ └── ScenarioLanguageOutlineTreeProvider.xtend │ │ │ │ └── quickfix │ │ │ │ └── ScenarioLanguageQuickfixProvider.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.scenario.language │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src-gen │ │ │ └── .gitignore │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── scenario │ │ │ │ └── language │ │ │ │ ├── GenerateScenarioLanguage.mwe2 │ │ │ │ ├── ScenarioLanguage.xtext │ │ │ │ ├── ScenarioLanguageRuntimeModule.xtend │ │ │ │ ├── ScenarioLanguageStandaloneSetup.xtend │ │ │ │ ├── formatting │ │ │ │ └── ScenarioLanguageFormatter.xtend │ │ │ │ ├── generator │ │ │ │ └── ScenarioLanguageGenerator.xtend │ │ │ │ ├── linking │ │ │ │ └── ScenarioLanguageLinker.xtend │ │ │ │ ├── scoping │ │ │ │ └── ScenarioLanguageScopeProvider.xtend │ │ │ │ └── validation │ │ │ │ └── ScenarioLanguageValidator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.scenario.model │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── model │ │ │ ├── scenario.aird │ │ │ ├── scenario.ecore │ │ │ └── scenario.genmodel │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── src-gen │ │ │ └── .gitignore │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── scenario │ │ │ ├── model │ │ │ ├── derivedfeatures │ │ │ │ └── ScenarioModelDerivedFeatures.java │ │ │ ├── reduction │ │ │ │ ├── FragmentInteractionPair.java │ │ │ │ ├── ScenarioReductionUtil.java │ │ │ │ ├── ScenarioReferenceResolver.java │ │ │ │ └── SimpleScenarioGenerator.java │ │ │ └── sorter │ │ │ │ └── ScenarioContentSorter.java │ │ │ └── util │ │ │ ├── ExpressionSerializer.java │ │ │ └── ScenarioModelValidator.java │ ├── hu.bme.mit.gamma.scenario.statechart.generator │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── scenario │ │ │ │ └── statechart │ │ │ │ └── generator │ │ │ │ ├── AbstractContractStatechartGeneration.xtend │ │ │ │ ├── MonitorStatechartGenerator.xtend │ │ │ │ ├── TestGeneratorStatechartGenerator.xtend │ │ │ │ └── serializer │ │ │ │ └── StatechartSerializer.java │ │ └── xtend-gen │ │ │ └── .gitignore │ ├── hu.bme.mit.gamma.scenario.statechart.util │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ │ └── hu │ │ │ │ └── bme │ │ │ │ └── mit │ │ │ │ └── gamma │ │ │ │ └── scenario │ │ │ │ └── statechart │ │ │ │ └── util │ │ │ │ ├── ScenarioStatechartUtil.java │ │ │ │ └── transformation │ │ │ │ └── AutomatonDeterminizator.xtend │ │ └── xtend-gen │ │ │ └── .gitignore │ └── hu.bme.mit.gamma.scenario.trace.generator │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── scenario │ │ │ └── trace │ │ │ └── generator │ │ │ ├── ScenarioStatechartTraceGenerator.xtend │ │ │ └── util │ │ │ ├── ExecutionTraceBackAnnotator.xtend │ │ │ └── TraceGenUtil.xtend │ │ └── xtend-gen │ │ ├── .gitignore │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── scenario │ │ └── trace │ │ └── generator │ │ └── util │ │ └── .gitignore ├── setup │ └── hu.bme.mit.gamma.setup │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── setup │ │ ├── CleanAll.mwe2 │ │ ├── CleanAllLanguages.mwe2 │ │ ├── CleanAllModels.mwe2 │ │ ├── GenerateAllLanguages.mwe2 │ │ ├── GenerateAllModels.mwe2 │ │ ├── cleaners │ │ ├── languages │ │ │ ├── CleanActionLanguage.mwe2 │ │ │ ├── CleanExpressionLanguage.mwe2 │ │ │ ├── CleanFaultExtensionLanguage.mwe2 │ │ │ ├── CleanGenmodelLanguage.mwe2 │ │ │ ├── CleanPropertyLanguage.mwe2 │ │ │ ├── CleanScenarioLanguage.mwe2 │ │ │ ├── CleanStatechartLanguage.mwe2 │ │ │ └── CleanTraceLanguage.mwe2 │ │ └── models │ │ │ ├── CleanActionModel.mwe2 │ │ │ ├── CleanExpressionModel.mwe2 │ │ │ ├── CleanFaultExtensionModel.mwe2 │ │ │ ├── CleanGenmodelModel.mwe2 │ │ │ ├── CleanLowlevelModel.mwe2 │ │ │ ├── CleanLowlevelXstsTraceabilityModel.mwe2 │ │ │ ├── CleanPropertyModel.mwe2 │ │ │ ├── CleanScenarioModel.mwe2 │ │ │ ├── CleanStatechartModel.mwe2 │ │ │ ├── CleanTraceModel.mwe2 │ │ │ ├── CleanUppaalModel.mwe2 │ │ │ ├── CleanUppaalTraceabilityModel.mwe2 │ │ │ ├── CleanXstsModel.mwe2 │ │ │ └── CleanYakinduTraceabilityModel.mwe2 │ │ └── generators │ │ ├── languages │ │ ├── GenerateActionLanguage.mwe2 │ │ ├── GenerateExpressionLanguage.mwe2 │ │ ├── GenerateFaultExtensionLanguage.mwe2 │ │ ├── GenerateGenmodelLanguage.mwe2 │ │ ├── GeneratePropertyLanguage.mwe2 │ │ ├── GenerateScenarioLanguage.mwe2 │ │ ├── GenerateStatechartLanguage.mwe2 │ │ └── GenerateTraceLanguage.mwe2 │ │ └── models │ │ ├── GenerateActionModel.mwe2 │ │ ├── GenerateExpressionModel.mwe2 │ │ ├── GenerateFaultExtensionModel.mwe2 │ │ ├── GenerateGenmodelModel.mwe2 │ │ ├── GenerateLowlevelModel.mwe2 │ │ ├── GenerateLowlevelXstsTraceabilityModel.mwe2 │ │ ├── GeneratePropertyModel.mwe2 │ │ ├── GenerateScenarioModel.mwe2 │ │ ├── GenerateStatechartModel.mwe2 │ │ ├── GenerateTraceModel.mwe2 │ │ ├── GenerateUppaalModel.mwe2 │ │ ├── GenerateUppaalTraceabilityModel.mwe2 │ │ ├── GenerateXstsModel.mwe2 │ │ └── GenerateYakinduTraceabilityModel.mwe2 ├── vis │ ├── .gitignore │ ├── README.md │ ├── hu.bme.mit.gamma.plantuml.textprovider │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── plantuml │ │ │ └── commandhandler │ │ │ ├── GammaPlantUmlDiagramIntent.java │ │ │ └── TextProvider.java │ └── hu.bme.mit.gamma.plantuml.transformation │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── plantuml │ │ │ ├── serialization │ │ │ ├── ExpressionSerializer.xtend │ │ │ └── SvgSerializer.xtend │ │ │ └── transformation │ │ │ ├── AdapterToPlantUmlTransformer.xtend │ │ │ ├── CompositeToPlantUmlTransformer.xtend │ │ │ ├── InterfaceToPlantUmlTransformer.xtend │ │ │ ├── StatechartToPlantUmlTransformer.xtend │ │ │ └── TraceToPlantUmlTransformer.xtend │ │ └── xtend-gen │ │ └── .gitignore └── xsts │ ├── .gitignore │ ├── README.md │ ├── hu.bme.mit.gamma.lowlevel.xsts.transformation.traceability │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── model │ │ ├── traceability.aird │ │ ├── traceability.ecore │ │ └── traceability.genmodel │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ └── src-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.lowlevel.xsts.transformation │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── pom.xml │ ├── src-gen │ │ └── .gitignore │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── lowlevel │ │ │ └── xsts │ │ │ └── transformation │ │ │ ├── AbstractTransitionMerger.xtend │ │ │ ├── ActionToExpressionTransformer.xtend │ │ │ ├── ActionTransformer.xtend │ │ │ ├── AnnotationTransformer.xtend │ │ │ ├── EntryActionRetriever.xtend │ │ │ ├── ExitActionRetriever.xtend │ │ │ ├── ExpressionTransformer.xtend │ │ │ ├── FlatTransitionMerger.xtend │ │ │ ├── HierarchicalTransitionMerger.xtend │ │ │ ├── LowlevelToXstsTransformer.xtend │ │ │ ├── LowlevelTransitionToActionTransformer.xtend │ │ │ ├── LowlevelTransitionToXTransitionTransformer.xtend │ │ │ ├── Namings.xtend │ │ │ ├── PrecursoryTransitionToXTransitionTransformer.xtend │ │ │ ├── PseudoStateHandler.xtend │ │ │ ├── RegionActivator.xtend │ │ │ ├── RegionDeactivator.xtend │ │ │ ├── RegionInitialStateLocator.xtend │ │ │ ├── SimpleTransitionToXTransitionTransformer.xtend │ │ │ ├── StateAssumptionCreator.xtend │ │ │ ├── TerminalTransitionToXTransitionTransformer.xtend │ │ │ ├── Trace.xtend │ │ │ ├── TransitionMerging.xtend │ │ │ ├── TransitionPreconditionCreator.xtend │ │ │ ├── VariableDeclarationTransformer.xtend │ │ │ ├── actionprimer │ │ │ ├── ActionPrimer.xtend │ │ │ ├── ChoiceInliner.xtend │ │ │ ├── StaticSingleAssignmentTransformer.xtend │ │ │ └── VariableCommonizer.xtend │ │ │ ├── optimizer │ │ │ ├── ActionOptimizer.xtend │ │ │ ├── ArrayOptimizer.xtend │ │ │ ├── RemovableVariableRemover.xtend │ │ │ ├── ResettableVariableResetter.xtend │ │ │ ├── VariableInliner.xtend │ │ │ └── XstsOptimizer.xtend │ │ │ └── patterns │ │ │ ├── ComplexTransitionPatterns.vql │ │ │ ├── OptimizationPatterns.vql │ │ │ ├── Patterns.vql │ │ │ ├── TargetPatterns.vql │ │ │ └── TracePatterns.vql │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.statechart.lowlevel.model │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── model │ │ ├── model.aird │ │ ├── model.ecore │ │ └── model.genmodel │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ ├── src-gen │ │ └── .gitignore │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── statechart │ │ └── lowlevel │ │ ├── derivedfeatures │ │ └── LowlevelStatechartModelDerivedFeatures.java │ │ └── util │ │ └── LowlevelStatechartUtil.java │ ├── hu.bme.mit.gamma.statechart.lowlevel.transformation.commandhandler │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ └── gamma-icon-16.png │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── statechart │ │ └── lowlevel │ │ └── transformation │ │ └── commandhandler │ │ └── CommandHandler.java │ ├── hu.bme.mit.gamma.statechart.lowlevel.transformation │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── statechart │ │ │ └── lowlevel │ │ │ └── transformation │ │ │ ├── ActionTransformer.xtend │ │ │ ├── EventAttributeTransformer.xtend │ │ │ ├── ExpressionPreconditionTransformer.xtend │ │ │ ├── ExpressionTransformer.xtend │ │ │ ├── GammaToLowlevelTransformer.xtend │ │ │ ├── MergeStateEliminator.xtend │ │ │ ├── PseudoStateTransformer.xtend │ │ │ ├── StatechartToLowlevelTransformer.xtend │ │ │ ├── Trace.xtend │ │ │ ├── TriggerTransformer.xtend │ │ │ ├── TypeTransformer.xtend │ │ │ └── ValueDeclarationTransformer.xtend │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.theta.verification │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── theta │ │ │ └── verification │ │ │ ├── ThetaArrayParser.xtend │ │ │ ├── ThetaTraceGenerator.xtend │ │ │ ├── ThetaVerification.xtend │ │ │ ├── ThetaVerifier.xtend │ │ │ ├── TraceBackAnnotator.xtend │ │ │ ├── XstsArrayParser.xtend │ │ │ └── XstsBackAnnotator.xtend │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.xsts.codegeneration.java │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── codegeneration │ │ │ └── java │ │ │ ├── ActionSerializer.xtend │ │ │ ├── CommonizedVariableActionSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ ├── InlinedChoiceActionSerializer.xtend │ │ │ ├── PortDiagnoser.xtend │ │ │ ├── StatechartCodeGenerator.xtend │ │ │ ├── StatechartInterfaceCodeGenerator.xtend │ │ │ ├── StatechartToJavaCodeGenerator.xtend │ │ │ ├── StatechartWrapperCodeGenerator.xtend │ │ │ ├── ValueDeclarationAccessor.xtend │ │ │ └── VariableDiagnoser.xtend │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.xsts.model │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── model │ │ ├── model.aird │ │ ├── model.ecore │ │ └── model.genmodel │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ ├── src-gen │ │ └── .gitignore │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── xsts │ │ ├── derivedfeatures │ │ └── XstsDerivedFeatures.java │ │ └── util │ │ ├── PredicateHandler.java │ │ └── XstsActionUtil.java │ ├── hu.bme.mit.gamma.xsts.transformation.util │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── transformation │ │ │ ├── serializer │ │ │ ├── ActionSerializer.xtend │ │ │ ├── DeclarationSerializer.xtend │ │ │ ├── ExpressionSerializer.xtend │ │ │ └── SerializationValidator.xtend │ │ │ └── util │ │ │ ├── Configuration.xtend │ │ │ ├── LoopActionUnroller.xtend │ │ │ ├── LowlevelNamings.xtend │ │ │ ├── MessageQueueHandler.xtend │ │ │ ├── MessageQueueOptimizer.xtend │ │ │ ├── MessageQueueUtil.xtend │ │ │ ├── Namings.xtend │ │ │ ├── OrthogonalActionTransformer.xtend │ │ │ ├── QueueNamings.xtend │ │ │ ├── UnorderedActionTransformer.xtend │ │ │ ├── VariableGroupRetriever.xtend │ │ │ └── XstsNamings.xtend │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.xsts.transformation │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── transformation │ │ │ ├── ComponentTransformer.xtend │ │ │ ├── EnvironmentalActionFilter.xtend │ │ │ ├── EventConnector.xtend │ │ │ ├── GammaToXstsTransformer.xtend │ │ │ ├── InitialStateHandler.xtend │ │ │ ├── InitialStateSetting.xtend │ │ │ ├── InternalEventHandler.xtend │ │ │ ├── MessageQueueMapping.xtend │ │ │ ├── MessageQueueStruct.xtend │ │ │ ├── MessageQueueTraceability.xtend │ │ │ ├── MessageRetrievalCount.xtend │ │ │ ├── ReferenceToXstsVariableMapper.xtend │ │ │ ├── SystemReducer.xtend │ │ │ ├── Traceability.xtend │ │ │ └── api │ │ │ └── Gamma2XstsTransformerSerializer.xtend │ └── xtend-gen │ │ └── .gitignore │ ├── hu.bme.mit.gamma.xsts.uppaal.transformation │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ ├── src │ │ └── hu │ │ │ └── bme │ │ │ └── mit │ │ │ └── gamma │ │ │ └── xsts │ │ │ └── uppaal │ │ │ └── transformation │ │ │ ├── CfaActionTransformer.xtend │ │ │ ├── ExpressionTransformer.xtend │ │ │ ├── FunctionActionTransformer.xtend │ │ │ ├── HavocHandler.xtend │ │ │ ├── Traceability.xtend │ │ │ ├── VariableTransformer.xtend │ │ │ ├── XstsToUppaalTransformer.xtend │ │ │ └── api │ │ │ └── Xsts2UppaalTransformerSerializer.xtend │ └── xtend-gen │ │ └── .gitignore │ └── theta-bin │ ├── .gitignore │ ├── Get-Theta.ps1 │ └── get-theta.sh ├── tests ├── .gitignore ├── hu.bme.mit.gamma.expression.validation.test │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ └── model │ │ ├── ActionLanguage │ │ ├── ActionValidationError.gcd │ │ ├── ActionValidationInfo.gcd │ │ └── ActionValidationWarning.gcd │ │ ├── ExpressionLanguage │ │ ├── ExpressionValidationError.gcd │ │ ├── ExpressionValidationInfo.gcd │ │ └── ExpressionValidationWarning.gcd │ │ └── Types │ │ └── Types.gcd ├── hu.bme.mit.gamma.statechart.lowlevel.transformation.test │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ └── src │ │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── statechart │ │ └── lowlevel │ │ └── transformation │ │ └── test │ │ └── ActionTransformerTest.java └── hu.bme.mit.gamma.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── conformance-check │ ├── ConformanceCheck-TraceCheck.ggen │ └── ConformanceCheck-TraceGeneration.ggen │ ├── model │ ├── Asynchronous │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── Statechart │ │ │ ├── Adder.gcd │ │ │ ├── Counter.gcd │ │ │ └── Subtractor.gcd │ │ └── System │ │ │ ├── AsynchronousSystem.gcd │ │ │ └── AsynchronousSystem.ggen │ ├── COID │ │ ├── Antivalence │ │ │ ├── MO_ANTIVAL_CHK.gcd │ │ │ └── MO_ANTIVAL_CHK.ggen │ │ ├── COID.ggen │ │ ├── Interface │ │ │ └── Interfaces.gcd │ │ ├── Jelzo │ │ │ ├── COID.gcd │ │ │ └── COID.ggen │ │ ├── System │ │ │ ├── ANTIVAL_CHK_COID │ │ │ │ ├── ANTIVAL_CHK_COID_System-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── ANTIVAL_CHK_COID_System-LTL.gpd │ │ │ │ ├── ANTIVAL_CHK_COID_System.gcd │ │ │ │ ├── ANTIVAL_CHK_COID_System.ggen │ │ │ │ ├── ANTIVAL_CHK_COID_System.prop │ │ │ │ ├── ANTIVAL_CHK_COID_System.q │ │ │ │ └── CustomQuery_ANTIVAL_CHK_COID_System.prop │ │ │ ├── ANTIVAL_CHK_COID_ADAPTER │ │ │ │ ├── AntivalenceChecker_System_Wrapper-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── AntivalenceChecker_System_Wrapper.gcd │ │ │ │ ├── AntivalenceChecker_System_Wrapper.ggen │ │ │ │ ├── AntivalenceChecker_System_Wrapper.prop │ │ │ │ └── AntivalenceChecker_System_Wrapper.q │ │ │ ├── OAK_FALSE │ │ │ │ ├── VALTO_OAK_System.gcd │ │ │ │ ├── VALTO_OAK_System.ggen │ │ │ │ └── VALTO_OAK_System.q │ │ │ └── OAK_TRUE │ │ │ │ ├── VALTO_OAK_System.gcd │ │ │ │ ├── VALTO_OAK_System.ggen │ │ │ │ └── VALTO_OAK_System.q │ │ ├── Types │ │ │ └── Types.gcd │ │ └── Valto │ │ │ ├── VALTO_OAK.gcd │ │ │ └── VALTO_OAK.ggen │ ├── ChoiceMerge │ │ ├── ChoiceMerge-ConformanceCheck-TraceGeneration.ggen │ │ ├── ChoiceMerge.ggen │ │ ├── ChoiceMergeMachine │ │ │ └── ChoiceMergeMachine.gcd │ │ └── Interfaces │ │ │ └── Interfaces.gcd │ ├── Clock │ │ ├── Adapter │ │ │ ├── Adder.gcd │ │ │ ├── Counter.gcd │ │ │ └── Subtractor.gcd │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── Statechart │ │ │ ├── Adder.gcd │ │ │ ├── Counter.gcd │ │ │ └── Subtractor.gcd │ │ └── System │ │ │ ├── ClockSystem-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── ClockSystem.gcd │ │ │ └── ClockSystem.ggen │ ├── ComplexStatechart │ │ ├── ComplexStatechart.ggen │ │ ├── ComplexStatechart │ │ │ ├── BottomUpComplexStatechart.gcd │ │ │ ├── BottomUpComplexStatechart.ggen │ │ │ ├── BottomUpComplexStatechart.prop │ │ │ ├── BottomUpComplexStatechart.q │ │ │ ├── ComplexStatechart-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── TopDownComplexStatechart.gcd │ │ │ ├── TopDownComplexStatechart.ggen │ │ │ ├── TopDownComplexStatechart.prop │ │ │ └── TopDownComplexStatechart.q │ │ └── Interfaces │ │ │ └── Interfaces.gcd │ ├── Crossroads │ │ ├── Controller │ │ │ ├── Controller.gcd │ │ │ ├── Controller.ggen │ │ │ ├── Controller.sct │ │ │ ├── Controller.sgen │ │ │ ├── ControllerAdapter.gcd │ │ │ └── ControllerCode.ggen │ │ ├── Crossroad.ggen │ │ ├── Interfaces │ │ │ ├── Interfaces.gcd │ │ │ ├── Interfaces.ggen │ │ │ └── Interfaces.sct │ │ ├── Monitor │ │ │ ├── Monitor.gcd │ │ │ ├── Monitor.ggen │ │ │ ├── Monitor.sct │ │ │ ├── Monitor.sgen │ │ │ └── MonitorCode.ggen │ │ ├── System │ │ │ ├── Cascade │ │ │ │ ├── Crossroad-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── Crossroad-LTL.gpd │ │ │ │ ├── Crossroad-XSTS.q │ │ │ │ ├── Crossroad.gcd │ │ │ │ ├── Crossroad.ggen │ │ │ │ ├── Crossroad.q │ │ │ │ ├── CustomQueries.q │ │ │ │ └── ThetaCustomQueries.prop │ │ │ ├── Monitored │ │ │ │ ├── CustomQueries.q │ │ │ │ ├── MonitoredCrossroad-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── MonitoredCrossroad.gcd │ │ │ │ ├── MonitoredCrossroad.ggen │ │ │ │ └── MonitoredCrossroad.q │ │ │ ├── ScheduledAsynchronous │ │ │ │ ├── Crossroad-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── Crossroad.gcd │ │ │ │ └── Crossroad.ggen │ │ │ └── Synchronous │ │ │ │ ├── Crossroad-XSTS.q │ │ │ │ ├── Crossroad.gcd │ │ │ │ ├── Crossroad.ggen │ │ │ │ ├── Crossroad.q │ │ │ │ └── CustomQueries.q │ │ └── TrafficLight │ │ │ ├── AsynchronousTrafficLightCtrl.gcd │ │ │ ├── AsynchronousTrafficLightCtrl.ggen │ │ │ ├── Test.gcd │ │ │ ├── Test.get │ │ │ ├── Test.ggen │ │ │ ├── Tests.gcd │ │ │ ├── TrafficLightCtrl.gcd │ │ │ ├── TrafficLightCtrl.ggen │ │ │ ├── TrafficLightCtrl.sct │ │ │ ├── TrafficLightCtrl.sgen │ │ │ ├── TrafficLightCtrlAdapter.gcd │ │ │ └── TrafficLightCtrlCode.ggen │ ├── EventPassing │ │ ├── EventPassing.ggen │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── Statechart │ │ │ ├── Adder.gcd │ │ │ ├── Counter.gcd │ │ │ └── Subtractor.gcd │ │ └── System │ │ │ ├── AdapterSystem-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── AdapterSystem.gcd │ │ │ ├── AdapterSystem.ggen │ │ │ └── SystemComponents.gcd │ ├── ForkJoin │ │ ├── ForkJoin-ConformanceCheck-TraceGeneration.ggen │ │ ├── ForkJoin.ggen │ │ ├── ForkJoinMachine │ │ │ └── ForkJoinMachine.gcd │ │ └── Interfaces │ │ │ └── Interfaces.gcd │ ├── INPE │ │ ├── INPE.ggen │ │ ├── Interface │ │ │ ├── Interfaces.gcd │ │ │ ├── Interfaces.ggen │ │ │ └── Interfaces.sct │ │ ├── OBC │ │ │ ├── OBC.gcd │ │ │ ├── OBC.ggen │ │ │ ├── OBC.sct │ │ │ ├── OBC.sgen │ │ │ └── OBCCode.ggen │ │ ├── SLP │ │ │ ├── SLP.gcd │ │ │ ├── SLP.ggen │ │ │ ├── SLP.sct │ │ │ ├── SLP.sgen │ │ │ └── SLPCode.ggen │ │ └── System │ │ │ ├── CustomQueries.prop │ │ │ ├── Mission-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── Mission.gcd │ │ │ ├── Mission.ggen │ │ │ ├── Mission.prop │ │ │ └── Mission.q │ ├── InternalEvents │ │ ├── Interface │ │ │ └── Interfaces.gcd │ │ ├── InternalEvents.ggen │ │ ├── Statechart │ │ │ └── Synchronous.gcd │ │ └── System │ │ │ ├── Asynchronous.gcd │ │ │ ├── InternalEvents-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── Synchronous.prop │ │ │ ├── System.gcd │ │ │ └── System.ggen │ ├── LoopAction │ │ ├── LoopAction-ConformanceCheck-TraceGeneration.ggen │ │ ├── LoopActionStatechart.gcd │ │ └── LoopActionStatechart.ggen │ ├── Manual │ │ ├── Tests.ggen │ │ ├── model │ │ │ ├── ComplexFunctionMachine │ │ │ │ ├── ComplexFunctionMachine.gcd │ │ │ │ ├── ComplexFunctionMachineDeclarations.gcd │ │ │ │ └── ComplexFunctionMachineWrapper.gcd │ │ │ ├── ComplexInitMachine │ │ │ │ ├── ComplexInitMachine.gcd │ │ │ │ ├── ComplexInitMachineDeclarations.gcd │ │ │ │ └── ComplexInitMachineWrapper.gcd │ │ │ ├── ComplexRegionMachine │ │ │ │ ├── ComplexRegionMachine.gcd │ │ │ │ ├── ComplexRegionMachineDeclarations.gcd │ │ │ │ └── ComplexRegionMachineWrapper.gcd │ │ │ ├── EmbeddedStructMachineVarMachine │ │ │ │ ├── EmbeddedStructMachineVarMachine.gcd │ │ │ │ ├── EmbeddedStructMachineVarMachineDeclarations.gcd │ │ │ │ └── EmbeddedStructMachineVarMachineWrapper.gcd │ │ │ ├── GuardMachine │ │ │ │ ├── GuardMachine.gcd │ │ │ │ ├── GuardMachineDeclarations.gcd │ │ │ │ └── GuardMachineWrapper.gcd │ │ │ ├── InnerStateMachine │ │ │ │ ├── InnerStateMachine.gcd │ │ │ │ ├── InnerStateMachineDeclarations.gcd │ │ │ │ └── InnerStateMachineWrapper.gcd │ │ │ ├── MachineVarMachine │ │ │ │ ├── MachineVarMachine.gcd │ │ │ │ ├── MachineVarMachineDeclarations.gcd │ │ │ │ └── MachineVarMachineWrapper.gcd │ │ │ ├── NondetMachine │ │ │ │ ├── Interface.gcd │ │ │ │ ├── NondetMachine.gcd │ │ │ │ ├── NondetMachine.gpd │ │ │ │ └── NondetMachineWrapper.gcd │ │ │ ├── RegionMachine │ │ │ │ ├── RegionMachine.gcd │ │ │ │ ├── RegionMachineDeclarations.gcd │ │ │ │ └── RegionMachineWrapper.gcd │ │ │ ├── ReturnFunctionMachine │ │ │ │ ├── ReturnFunctionMachine.gcd │ │ │ │ ├── ReturnFunctionMachineDeclarations.gcd │ │ │ │ └── ReturnFunctionMachineWrapper.gcd │ │ │ ├── SameMachineInstancesMachine │ │ │ │ ├── SameMachineInstancesMachine.gcd │ │ │ │ ├── SameMachineInstancesMachineDeclarations.gcd │ │ │ │ └── SameMachineInstancesMachineWrapper.gcd │ │ │ ├── StateMachine │ │ │ │ ├── StateMachine.gcd │ │ │ │ ├── StateMachineDeclarations.gcd │ │ │ │ └── StateMachineWrapper.gcd │ │ │ ├── StructMachineVarMachine │ │ │ │ ├── StructMachineVarMachine.gcd │ │ │ │ ├── StructMachineVarMachineDeclarations.gcd │ │ │ │ └── StructMachineVarMachineWrapper.gcd │ │ │ ├── StructRecieverGuardMachine │ │ │ │ ├── StructRecieverGuardMachine.gcd │ │ │ │ ├── StructRecieverGuardMachineDeclarations.gcd │ │ │ │ └── StructRecieverGuardMachineWrapper.gcd │ │ │ ├── StructRecieverMachine │ │ │ │ ├── StructRecieverMachine.gcd │ │ │ │ ├── StructRecieverMachineDeclarations.gcd │ │ │ │ └── StructRecieverMachineWrapper.gcd │ │ │ └── TimedMachine │ │ │ │ ├── TimedMachine.gcd │ │ │ │ ├── TimedMachineDeclarations.gcd │ │ │ │ └── TimedMachineWrapper.gcd │ │ └── test │ │ │ ├── ComplexFunctionMachine │ │ │ ├── ComplexFunctionMachine.ggen │ │ │ └── ComplexFunctionMachineTest.get │ │ │ ├── ComplexInitMachine │ │ │ ├── ComplexInitMachine.ggen │ │ │ └── ComplexInitMachineTest.get │ │ │ ├── ComplexRegionMachine │ │ │ ├── ComplexRegionMachine.ggen │ │ │ └── ComplexRegionMachineTest.get │ │ │ ├── EmbeddedStructMachineVarMachine │ │ │ ├── EmbeddedStructMachineVarMachine.ggen │ │ │ └── EmbeddedStructMachineVarMachineTest.get │ │ │ ├── GuardMachine │ │ │ ├── GuardMachine.ggen │ │ │ └── GuardMachineTest.get │ │ │ ├── InnerStateMachine │ │ │ ├── InnerStateMachine.ggen │ │ │ └── InnerStateMachineTest.get │ │ │ ├── MachineVarMachine │ │ │ ├── MachineVarMachine.ggen │ │ │ └── MachineVarMachineTest.get │ │ │ ├── NondetMachine │ │ │ └── NondetMachine.ggen │ │ │ ├── RegionMachine │ │ │ ├── RegionMachine.ggen │ │ │ └── RegionMachineTest.get │ │ │ ├── ReturnFunctionMachine │ │ │ ├── ReturnFunctionMachine.ggen │ │ │ └── ReturnFunctionMachineTest.get │ │ │ ├── SameMachineInstancesMachine │ │ │ ├── SameMachineInstancesMachine.ggen │ │ │ └── SameMachineInstancesMachineTest.get │ │ │ ├── StateMachine │ │ │ ├── StateMachine.ggen │ │ │ └── StateMachineTest.get │ │ │ ├── StructMachineVarMachine │ │ │ ├── StructMachineVarMachine.ggen │ │ │ └── StructMachineVarMachineTest.get │ │ │ ├── StructRecieverGuardMachine │ │ │ ├── StructRecieverGuardMachine.ggen │ │ │ └── StructRecieverGuardMachineTest.get │ │ │ ├── StructRecieverMachine │ │ │ ├── StructRecieverMachine.ggen │ │ │ └── StructRecieverMachineTest.get │ │ │ └── TimedMachine │ │ │ ├── TimedMachine.ggen │ │ │ └── TimedMachineTest.get │ ├── PIL │ │ ├── Interfaces │ │ │ ├── Interfaces.gcd │ │ │ └── TransientInterfaces.gcd │ │ ├── Jelzo │ │ │ ├── Jelzo.gcd │ │ │ ├── Jelzo.ggen │ │ │ ├── TransientJelzo.gcd │ │ │ └── TransientJelzo.ggen │ │ ├── PIL.ggen │ │ ├── System │ │ │ ├── Oldalvedelem │ │ │ │ ├── CustomQueriesOldalvedelem_a.prop │ │ │ │ ├── CustomQueriesOldalvedelem_b.prop │ │ │ │ ├── CustomQueriesOldalvedelem_c.prop │ │ │ │ ├── CustomQueriesOldalvedelem_d.prop │ │ │ │ ├── Oldalvedelem-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── Oldalvedelem_a.gcd │ │ │ │ ├── Oldalvedelem_a.ggen │ │ │ │ ├── Oldalvedelem_b.gcd │ │ │ │ ├── Oldalvedelem_b.ggen │ │ │ │ ├── Oldalvedelem_b.q │ │ │ │ ├── Oldalvedelem_c.gcd │ │ │ │ ├── Oldalvedelem_c.ggen │ │ │ │ ├── Oldalvedelem_c.q │ │ │ │ ├── Oldalvedelem_d.gcd │ │ │ │ ├── Oldalvedelem_d.ggen │ │ │ │ └── Oldalvedelem_d.q │ │ │ └── Vaganyut │ │ │ │ ├── Cascade │ │ │ │ ├── CustomQueries.prop │ │ │ │ ├── CustomQueries.q │ │ │ │ ├── Vaganyut-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── Vaganyut.gcd │ │ │ │ ├── Vaganyut.ggen │ │ │ │ └── Vaganyut.q │ │ │ │ └── Synchronous │ │ │ │ ├── CustomQueries.prop │ │ │ │ ├── CustomQueries.q │ │ │ │ ├── Vaganyut-ConformanceCheck-TraceGeneration.ggen │ │ │ │ ├── Vaganyut.gcd │ │ │ │ ├── Vaganyut.ggen │ │ │ │ └── Vaganyut.q │ │ ├── Types │ │ │ └── Types.gcd │ │ └── Valto │ │ │ ├── TransientValto.gcd │ │ │ ├── TransientValto.ggen │ │ │ ├── Valto.gcd │ │ │ └── Valto.ggen │ ├── ParallelRegion │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── ParallelMachine │ │ │ ├── ParallelMachine.gcd │ │ │ └── ParallelMachineAdapter.gcd │ │ ├── ParallelRegion-ConformanceCheck-TraceGeneration.ggen │ │ ├── ParallelRegion.ggen │ │ └── ParallelRegion.gpd │ ├── PortInvariants │ │ ├── Interfaces.gcd │ │ ├── PortInvariants.ggen │ │ ├── StatechartWithPortInvariants.gcd │ │ └── System.gcd │ ├── RIS │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── RIS.ggen │ │ ├── StateMachines │ │ │ ├── Diszpecser │ │ │ │ ├── CustomRigelDiszpecserAdapter.gcd │ │ │ │ ├── RigelDiszpecser.gcd │ │ │ │ ├── RigelDiszpecserAdapter.gcd │ │ │ │ ├── RigelDiszpecserInternal.gcd │ │ │ │ └── RigelDiszpecser_TeljesAdat.gcd │ │ │ ├── ObjektumKezelo │ │ │ │ ├── CustomRigelObjektumKezeloAdapter.gcd │ │ │ │ ├── RigelObjektumKezelo.gcd │ │ │ │ ├── RigelObjektumKezeloAdapter.gcd │ │ │ │ └── RigelObjektumKezeloInternal.gcd │ │ │ └── VezerloKozpont │ │ │ │ ├── CustomRigelVezerloKozpontAdapter.gcd │ │ │ │ ├── RigelVezerloKozpont.gcd │ │ │ │ ├── RigelVezerloKozpontAdapter.gcd │ │ │ │ ├── RigelVezerloKozpontInternal.gcd │ │ │ │ └── RigelVezerloKozpont_TeljesAdat.gcd │ │ ├── SystemGlobalQueue │ │ │ ├── RigelSystem-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── RigelSystem.gcd │ │ │ ├── RigelSystem.ggen │ │ │ ├── RigelSystem.gpd │ │ │ └── RigelSystemComponentSet.gcd │ │ └── SystemLocalQueue │ │ │ ├── RigelSystem-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── RigelSystem-Original.gcd │ │ │ ├── RigelSystem.gcd │ │ │ ├── RigelSystem.ggen │ │ │ └── RigelSystem.gpd │ ├── SSM │ │ ├── GroundStation │ │ │ └── GroundStation.gcd │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── SSM.ggen │ │ ├── Spacecraft │ │ │ └── Spacecraft.gcd │ │ └── System │ │ │ ├── Mission-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── Mission-LTL.gpd │ │ │ ├── Mission.gcd │ │ │ ├── Mission.ggen │ │ │ └── Mission.q │ ├── Spacecraft │ │ ├── Spacecraft.ggen │ │ └── System │ │ │ ├── Spacecraft-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── Spacecraft.ggen │ │ │ ├── Spacecraft.gpm │ │ │ ├── Spacecraft.gsm │ │ │ └── SpacecraftComponent.gsm │ ├── StatechartInvariants │ │ ├── Interfaces.gcd │ │ ├── StatechartInvariants.ggen │ │ ├── StatechartWithStatechartInvariants.gcd │ │ └── System.gcd │ ├── TMT │ │ ├── System │ │ │ ├── TMT-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── TMT.ggen │ │ │ ├── TMT.gpm │ │ │ ├── TMT.gsm │ │ │ └── TMTComponent.gsm │ │ └── TMT.ggen │ ├── Tests.ggen │ ├── TrafficLight │ │ ├── Interfaces │ │ │ └── Interfaces.gcd │ │ ├── System │ │ │ ├── CustomQueries.prop │ │ │ ├── TrafficLightWrapper-ConformanceCheck-TraceGeneration.ggen │ │ │ ├── TrafficLightWrapper-LTL.gpd │ │ │ ├── TrafficLightWrapper.gcd │ │ │ ├── TrafficLightWrapper.ggen │ │ │ ├── TrafficLightWrapper.prop │ │ │ └── TrafficLightWrapper.q │ │ ├── TrafficLight.ggen │ │ └── TrafficLight │ │ │ └── TrafficLight.gcd │ └── XSML │ │ ├── DispatcherMachine │ │ ├── DispatcherMachine.ggen │ │ ├── DispatcherMachineAdapter.gcd │ │ └── DispatcherMachine_Manual.gcd │ │ ├── Interfaces │ │ └── DispatcherMachineDeclarations.gcd │ │ ├── System │ │ ├── CustomQueries.prop │ │ ├── Dispatcher-ConformanceCheck-TraceGeneration.ggen │ │ ├── DispatcherMachineScheduledComposite.gcd │ │ └── DispatcherMachineScheduledComposite.ggen │ │ └── XSML.ggen │ ├── src-gen │ └── .gitignore │ ├── test-gen │ └── .gitignore │ ├── trace │ └── .gitignore │ └── validation-model-suite │ └── model │ ├── Interfaces.gcd │ ├── Tests-ConformanceCheck-TraceGeneration.ggen │ ├── Tests.ggen │ ├── packageA │ ├── model01 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model02 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model03 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model04 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model05 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model06 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model07 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── model08 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── packageB │ ├── model09 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── model10 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── packageC │ ├── model11 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── model22 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── packageD │ ├── model12 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model13 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model14 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model15 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── model23 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── packageE │ ├── model16 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model17 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model18 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ ├── model20 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── model21 │ │ ├── default-ConformanceCheck-TraceGeneration.ggen │ │ ├── default.ggen │ │ └── stm.gcd │ └── packageF │ ├── model24 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model25 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model26 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model27 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model28 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model30 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ ├── model31 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd │ └── model32 │ ├── default-ConformanceCheck-TraceGeneration.ggen │ ├── default.ggen │ └── stm.gcd └── tutorial ├── README.md ├── docs ├── CTL.jpg └── Gamma-core-tutorial.docx ├── hu.bme.mit.gamma.tutorial.contract.finish ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── contract │ ├── Crossroads.ggen │ ├── adaptive │ │ └── Crossroads.gcd │ ├── environment │ │ └── Environment.gcd │ ├── phase │ │ ├── Blinking.gcd │ │ ├── Init.gcd │ │ └── Normal.gcd │ └── scenario │ │ ├── Contracts.gsc │ │ ├── MonitorGeneration.ggen │ │ └── automaton │ │ ├── Blinking.gcd │ │ ├── Init.gcd │ │ └── Normal.gcd ├── model │ ├── .Crossroad.gsm │ ├── Controller │ │ ├── Controller.gcd │ │ ├── Controller.ggen │ │ ├── Controller.sct │ │ └── Controller.sgen │ ├── Crossroad.gcd │ ├── Crossroad.q │ ├── Crossroad.xml │ ├── Interfaces │ │ ├── Interfaces.gcd │ │ └── Interfaces.sct │ ├── Monitor │ │ ├── Monitor.sct │ │ └── Monitor.sgen │ ├── TrafficLight │ │ ├── TrafficLightCtrl.gcd │ │ ├── TrafficLightCtrl.ggen │ │ ├── TrafficLightCtrl.sct │ │ └── TrafficLightCtrl.sgen │ ├── adaptive │ │ ├── .AdaptiveContractCrossroad.gsm │ │ ├── .Blinking.gsm │ │ ├── .Init.gsm │ │ ├── .Normal.gsm │ │ ├── AdaptiveContractCrossroad.gcd │ │ ├── AdaptiveContractCrossroad.prop │ │ ├── AdaptiveContractCrossroad.xsts │ │ ├── Blinking.xsts │ │ ├── BlinkingStatechart.gcd │ │ ├── Contracts.gsc │ │ ├── Init.xsts │ │ ├── InitStatechart.gcd │ │ ├── Normal.xsts │ │ ├── NormalStatechart.gcd │ │ ├── adaptiveTestGeneration.ggen │ │ ├── b │ │ │ ├── BlinkingTrace0.get │ │ │ └── BlinkingTrace1.get │ │ ├── i │ │ │ ├── InitTrace0.get │ │ │ └── InitTrace4.get │ │ ├── n │ │ │ ├── NormalTrace0.get │ │ │ ├── NormalTrace1.get │ │ │ ├── NormalTrace25.get │ │ │ ├── NormalTrace27.get │ │ │ ├── NormalTrace35.get │ │ │ └── NormalTrace9.get │ │ └── statechartGeneration.ggen │ ├── parameters │ │ ├── PoliceInterruptionStatechart.gcd │ │ ├── PoliceInterupt.gsc │ │ └── testGeneration.ggen │ ├── scenario │ │ ├── .policeBehaviour.gsm │ │ ├── Examples.gsc │ │ ├── PoliceBehaviour.xsts │ │ ├── PoliceBehaviourStatechart.gcd │ │ ├── PoliceInterupt.gsc │ │ ├── abstractTestFolderForPoliceBehaviour │ │ │ ├── PoliceBehaviourTrace0.get │ │ │ └── PoliceBehaviourTrace1.get │ │ ├── test │ │ │ ├── loopTestStatechart.gcd │ │ │ ├── optTestStatechart.gcd │ │ │ └── sortTestStatechart.gcd │ │ └── testGeneration.ggen │ └── test │ │ ├── Alternative.gsc │ │ ├── Complex.gsc │ │ ├── Delay.gsc │ │ ├── DelayAlone.gsc │ │ ├── DelayWithReceives.gsc │ │ ├── InitialBlock.gsc │ │ ├── Loop.gsc │ │ ├── NegBlockSendsPermissive.gsc │ │ ├── NegSendsPermissive.gsc │ │ ├── Optional.gsc │ │ ├── ReceivesPermissive.gsc │ │ ├── ReceivesStrict.gsc │ │ ├── SendsPermissive.gsc │ │ ├── SendsStrict.gsc │ │ ├── StatechartGenerator.ggen │ │ ├── StatechartTestGenerator.ggen │ │ ├── inputStatecharts │ │ ├── AlternativeStatechart.gcd │ │ ├── ComplexStatechart.gcd │ │ ├── DelayAloneStatechart.gcd │ │ ├── DelayStatechart.gcd │ │ ├── DelayWithReceivesStatechart.gcd │ │ ├── InitialOutputsStatechart.gcd │ │ ├── LoopStatechart.gcd │ │ ├── NegBlockSendsPermissiveStatechart.gcd │ │ ├── NegSendsStrictStatechart.gcd │ │ ├── OptionalStatechart.gcd │ │ ├── ReceivesPermissiveStatechart.gcd │ │ ├── ReceivesStrictStatechart.gcd │ │ ├── SendsPermissiveStatechart.gcd │ │ └── SendsStrictStatechart.gcd │ │ └── referenceStatecharts │ │ ├── .Alternative.gsm │ │ ├── .Alternative.prop │ │ ├── AlternativeStatechart.gcd │ │ ├── ComplexStatechart.gcd │ │ ├── DelayAloneStatechart.gcd │ │ ├── DelayStatechart.gcd │ │ ├── DelayWithReceivesStatechart.gcd │ │ ├── InitialOutputsStatechart.gcd │ │ ├── LoopStatechart.gcd │ │ ├── NegBlockSendsPermissiveStatechart.gcd │ │ ├── NegSendsStrictStatechart.gcd │ │ ├── OptionalStatechart.gcd │ │ ├── ReceivesPermissiveStatechart.gcd │ │ ├── ReceivesStrictStatechart.gcd │ │ ├── SendsPermissiveStatechart.gcd │ │ └── SendsStrictStatechart.gcd ├── src-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── contract │ │ └── finish │ │ ├── Event.java │ │ ├── ITimer.java │ │ ├── ITimerCallback.java │ │ ├── OneThreadedTimer.java │ │ ├── ReflectiveComponentInterface.java │ │ ├── TimerInterface.java │ │ ├── TimerService.java │ │ ├── UnifiedTimer.java │ │ ├── UnifiedTimerInterface.java │ │ ├── VirtualTimerService.java │ │ ├── controller │ │ ├── Controller.java │ │ ├── ControllerInterface.java │ │ ├── ControllerStatemachine.java │ │ └── ReflectiveController.java │ │ ├── interfaces │ │ ├── ControlInterface.java │ │ ├── ExecutableInterface.java │ │ ├── LightCommandsInterface.java │ │ └── PoliceInterruptInterface.java │ │ ├── trafficlightctrl │ │ ├── ReflectiveTrafficLightCtrl.java │ │ ├── TrafficLightCtrl.java │ │ ├── TrafficLightCtrlInterface.java │ │ └── TrafficLightCtrlStatemachine.java │ │ └── tutorial │ │ ├── Crossroad.java │ │ ├── CrossroadInterface.java │ │ └── ReflectiveCrossroad.java ├── src │ └── .keep ├── test-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── contract │ │ └── finish │ │ └── tutorial │ │ ├── ExecutionTraceSimulation0.java │ │ ├── ExecutionTraceSimulation1.java │ │ ├── ExecutionTraceSimulation2.java │ │ ├── ExecutionTraceSimulation3.java │ │ ├── ExecutionTraceSimulation4.java │ │ ├── ExecutionTraceSimulation5.java │ │ ├── ExecutionTraceSimulation6.java │ │ ├── ExecutionTraceSimulation7.java │ │ ├── ExecutionTraceSimulation8.java │ │ └── ExecutionTraceSimulation9.java └── test │ └── hu │ └── bme │ └── mit │ └── gamma │ └── tutorial │ └── contract │ └── finish │ ├── StatechartComparator.java │ └── StatechartGenerationTest.java ├── hu.bme.mit.gamma.tutorial.extra ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── model │ ├── .MonitoredCrossroad.g2u │ ├── .MonitoredCrossroad.gsm │ ├── .MonitoredCrossroad.uppaal │ ├── .temporary_query.q │ ├── Controller │ │ ├── .Controller.y2g │ │ ├── Controller.gcd │ │ ├── Controller.ggen │ │ ├── Controller.sct │ │ └── Controller.sgen │ ├── Crossroad.gcd │ ├── Interfaces │ │ ├── .Interfaces.y2g │ │ ├── Interfaces.gcd │ │ └── Interfaces.sct │ ├── Monitor │ │ ├── .Monitor.y2g │ │ ├── Monitor.gcd │ │ ├── Monitor.ggen │ │ ├── Monitor.sct │ │ └── Monitor.sgen │ ├── MonitoredCrossroad.gcd │ ├── MonitoredCrossroad.q │ ├── MonitoredCrossroad.xml │ └── TrafficLight │ │ ├── .TrafficLightCtrl.y2g │ │ ├── TrafficLightCtrl.gcd │ │ ├── TrafficLightCtrl.ggen │ │ ├── TrafficLightCtrl.sct │ │ └── TrafficLightCtrl.sgen ├── src-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── extra │ │ ├── Event.java │ │ ├── IStatemachine.java │ │ ├── ITimer.java │ │ ├── ITimerCallback.java │ │ ├── OneThreadedTimer.java │ │ ├── ReflectiveComponentInterface.java │ │ ├── RuntimeService.java │ │ ├── TimerInterface.java │ │ ├── TimerService.java │ │ ├── UnifiedTimer.java │ │ ├── UnifiedTimerInterface.java │ │ ├── VirtualTimerService.java │ │ ├── controller │ │ ├── Controller.java │ │ ├── ControllerInterface.java │ │ ├── ControllerStatemachine.java │ │ ├── IControllerStatemachine.java │ │ └── ReflectiveController.java │ │ ├── interfaces │ │ ├── ControlInterface.java │ │ ├── ErrorInterface.java │ │ ├── LightCommandsInterface.java │ │ └── PoliceInterruptInterface.java │ │ ├── monitor │ │ ├── IMonitorStatemachine.java │ │ ├── Monitor.java │ │ ├── MonitorInterface.java │ │ ├── MonitorStatemachine.java │ │ └── ReflectiveMonitor.java │ │ ├── monitoredcrossroad │ │ ├── MonitoredCrossroad.java │ │ ├── MonitoredCrossroadInterface.java │ │ └── ReflectiveMonitoredCrossroad.java │ │ ├── trafficlightctrl │ │ ├── ITrafficLightCtrlStatemachine.java │ │ ├── ReflectiveTrafficLightCtrl.java │ │ ├── TrafficLightCtrl.java │ │ ├── TrafficLightCtrlInterface.java │ │ └── TrafficLightCtrlStatemachine.java │ │ └── tutorial │ │ ├── Crossroad.java │ │ ├── CrossroadInterface.java │ │ └── ReflectiveCrossroad.java ├── src │ └── .keep ├── test-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── extra │ │ ├── monitoredcrossroad │ │ └── ExecutionTraceSimulation1.java │ │ └── tutorial │ │ └── ExecutionTraceSimulation0.java ├── test │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── extra │ │ └── crossroad │ │ └── CrossroadTest.java └── trace │ └── ExecutionTrace1.get ├── hu.bme.mit.gamma.tutorial.finish ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── model │ ├── .Crossroad.g2u │ ├── .Crossroad.gsm │ ├── .Crossroad.uppaal │ ├── Controller │ │ ├── .Controller.y2g │ │ ├── Controller.gcd │ │ ├── Controller.ggen │ │ ├── Controller.sct │ │ └── Controller.sgen │ ├── Crossroad.gcd │ ├── Crossroad.q │ ├── Crossroad.xml │ ├── Interfaces │ │ ├── .Interfaces.y2g │ │ ├── Interfaces.gcd │ │ └── Interfaces.sct │ ├── Monitor │ │ ├── Monitor.sct │ │ └── Monitor.sgen │ └── TrafficLight │ │ ├── .TrafficLightCtrl.y2g │ │ ├── TrafficLightCtrl.gcd │ │ ├── TrafficLightCtrl.ggen │ │ ├── TrafficLightCtrl.sct │ │ └── TrafficLightCtrl.sgen ├── src-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── finish │ │ ├── Event.java │ │ ├── IStatemachine.java │ │ ├── ITimer.java │ │ ├── ITimerCallback.java │ │ ├── OneThreadedTimer.java │ │ ├── ReflectiveComponentInterface.java │ │ ├── RuntimeService.java │ │ ├── TimerInterface.java │ │ ├── TimerService.java │ │ ├── UnifiedTimer.java │ │ ├── UnifiedTimerInterface.java │ │ ├── VirtualTimerService.java │ │ ├── controller │ │ ├── Controller.java │ │ ├── ControllerInterface.java │ │ ├── ControllerStatemachine.java │ │ ├── IControllerStatemachine.java │ │ └── ReflectiveController.java │ │ ├── interfaces │ │ ├── ControlInterface.java │ │ ├── ExecutableInterface.java │ │ ├── LightCommandsInterface.java │ │ └── PoliceInterruptInterface.java │ │ ├── trafficlightctrl │ │ ├── ITrafficLightCtrlStatemachine.java │ │ ├── ReflectiveTrafficLightCtrl.java │ │ ├── TrafficLightCtrl.java │ │ ├── TrafficLightCtrlInterface.java │ │ └── TrafficLightCtrlStatemachine.java │ │ └── tutorial │ │ ├── Crossroad.java │ │ ├── CrossroadInterface.java │ │ └── ReflectiveCrossroad.java ├── src │ └── .keep ├── test-gen │ └── hu │ │ └── bme │ │ └── mit │ │ └── gamma │ │ └── tutorial │ │ └── finish │ │ └── tutorial │ │ └── ExecutionTraceSimulation0.java └── test │ └── hu │ └── bme │ └── mit │ └── gamma │ └── impl │ └── tutorial │ └── CrossroadTest.java ├── hu.bme.mit.gamma.tutorial.start ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── model │ ├── Controller │ │ ├── Controller.ggen │ │ ├── Controller.sct │ │ └── Controller.sgen │ ├── Crossroad.gcd │ ├── Interfaces │ │ └── Interfaces.sct │ ├── Monitor │ │ ├── Monitor.sct │ │ └── Monitor.sgen │ └── TrafficLight │ │ ├── TrafficLightCtrl.ggen │ │ ├── TrafficLightCtrl.sct │ │ └── TrafficLightCtrl.sgen ├── src-gen │ └── .keep ├── src │ └── .keep ├── test-gen │ └── .keep └── test │ └── hu │ └── bme │ └── mit │ └── gamma │ └── tutorial │ └── start │ └── tutorial │ └── CrossroadTest.java ├── hu.bme.mit.gamma.xsap.tutorial ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── model │ └── Crossroads │ │ ├── Controller │ │ ├── Controller.gcd │ │ └── ControllerFixed.gcd │ │ ├── Interfaces │ │ └── Interfaces.gcd │ │ ├── Monitor │ │ └── Monitor.gcd │ │ ├── TrafficLight │ │ ├── TrafficLightCtrl.gcd │ │ └── TrafficLightCtrlTimeouts.gcd │ │ ├── nuXmv │ │ ├── Crossroad.gcd │ │ ├── Crossroad.ggen │ │ └── Crossroad.gpd │ │ ├── xSAP-1 │ │ ├── .generate_ft_Crossroad_manual.cmd │ │ ├── Crossroad.gcd │ │ ├── Crossroad.gfei │ │ ├── Crossroad.ggen │ │ └── Crossroad.gpd │ │ └── xSAP-2 │ │ ├── .generate_fmea_Crossroad_manual.cmd │ │ ├── Crossroad.gcd │ │ ├── Crossroad.gfei │ │ ├── Crossroad.ggen │ │ └── Crossroad.gpd ├── src-gen │ └── .keep ├── src │ └── .keep └── test-gen │ └── .keep └── images ├── crossroad-component.emf ├── crossroad-component.png ├── crossroad-states.png ├── import.png ├── java-code-generation.png ├── java-statechart-code-generation.png ├── menu-compile-interface.png ├── query-generator-gui.png ├── start-project.png ├── viatra-update-site.png ├── workspace-settings.png └── yakindu-update-site.png /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /developer-resources/hu.bme.mit.gamma.plugintemplate.transformation.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /developer-resources/hu.bme.mit.gamma.plugintemplate.transformation.traceability/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /developer-resources/hu.bme.mit.gamma.plugintemplate.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /developer-resources/hu.bme.mit.gamma.plugintemplate.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /docs/Coding-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/docs/Coding-conventions.md -------------------------------------------------------------------------------- /docs/Specific-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/docs/Specific-descriptions.md -------------------------------------------------------------------------------- /docs/architecture/gamma-architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/docs/architecture/gamma-architecture.pptx -------------------------------------------------------------------------------- /eclipse-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/README.md -------------------------------------------------------------------------------- /eclipse-environment/hu.bme.mit.gamma.oomph/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/hu.bme.mit.gamma.oomph/.project -------------------------------------------------------------------------------- /eclipse-environment/hu.bme.mit.gamma.oomph/gamma.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/hu.bme.mit.gamma.oomph/gamma.setup -------------------------------------------------------------------------------- /eclipse-environment/images/eclipse-add-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/images/eclipse-add-project.png -------------------------------------------------------------------------------- /eclipse-environment/images/eclipse-add-user-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/images/eclipse-add-user-project.png -------------------------------------------------------------------------------- /eclipse-environment/images/eclipse-dsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/images/eclipse-dsl.png -------------------------------------------------------------------------------- /eclipse-environment/images/eclipse-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/images/eclipse-installer.png -------------------------------------------------------------------------------- /eclipse-environment/images/eclipse-select-gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/eclipse-environment/images/eclipse-select-gamma.png -------------------------------------------------------------------------------- /epl-v10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/epl-v10.html -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/bin/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/src-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/src/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.emmn.casestudy/test-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.emmn.casestudy/test-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.industrial.protocol.casestudy/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.industrial.protocol.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.industrial.protocol.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.modes3.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.modes3.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.modes3.casestudy/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.modes3.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.modes3.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.modes3.casestudy/model/System/MediumLevel/Async/AsyncMediumLevelSystem.q: -------------------------------------------------------------------------------- 1 | A[] not deadlock 2 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/model/COID/COID.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/model/COID/COID.ggen -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/src-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.railway.casestudy/test-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.railway.casestudy/test-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.ris.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.ris.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.ris.casestudy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.ris.casestudy/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.ris.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.ris.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.ris.casestudy/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.ris.casestudy/original/Rigel.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.ris.casestudy/original/Rigel.xsml -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.smarthome.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.smarthome.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.smarthome.casestudy/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.smarthome.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.smarthome.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.smarthome.casestudy/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.smarthome.casestudy/src-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.smarthome.casestudy/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.smarthome.casestudy/src/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/bin/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/src-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/src/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.gamma.stpa.cofi.casestudy/test-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.gamma.stpa.cofi.casestudy/test-gen/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.jpl.spacemission.casestudy/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.jpl.spacemission.casestudy/.classpath -------------------------------------------------------------------------------- /examples/hu.bme.mit.jpl.spacemission.casestudy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.jpl.spacemission.casestudy/.gitignore -------------------------------------------------------------------------------- /examples/hu.bme.mit.jpl.spacemission.casestudy/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.jpl.spacemission.casestudy/.project -------------------------------------------------------------------------------- /examples/hu.bme.mit.jpl.spacemission.casestudy/model/Mission.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.jpl.spacemission.casestudy/model/Mission.ggen -------------------------------------------------------------------------------- /examples/hu.bme.mit.jpl.spacemission.casestudy/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/examples/hu.bme.mit.jpl.spacemission.casestudy/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.classpath -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.project -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/c/hu.bme.mit.gamma.xsts.codegeneration.c/build.properties -------------------------------------------------------------------------------- /plugins/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/.gitignore -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/.classpath -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/.project -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/build.properties -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/model/uppaal.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/model/uppaal.aird -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/model/uppaal.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/model/uppaal.ecore -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/model/uppaal.ecorediag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/model/uppaal.ecorediag -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/model/uppaal.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/model/uppaal.genmodel -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/plugin.properties -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/plugin.xml -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/pom.xml -------------------------------------------------------------------------------- /plugins/core/de.uni_paderborn.uppaal/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/de.uni_paderborn.uppaal/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ui/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.language/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.language/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/model/action.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/model/action.aird -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/model/action.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/model/action.ecore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/model/action.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/model/action.genmodel -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.action.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.action.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java.util/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.codegeneration.java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.codegeneration.java/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.composition.xsts.uppaal.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.composition.xsts.uppaal.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.dialog/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.dialog/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.eventpriority.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.eventpriority.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.expression.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.expression.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.commandhandler/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/model/genmodel.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/model/genmodel.aird -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/model/genmodel.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/model/genmodel.ecore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.genmodel.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.genmodel.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/icons/gamma-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/icons/gamma-icon-16.png -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/icons/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/icons/sample.png -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/icons/sample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/icons/sample@2x.png -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.gui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.gui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.language.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.language.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.language.util/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.language.util/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.language.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.language.util/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.concretization.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.concretization.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/model/property.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/model/property.aird -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/model/property.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/model/property.ecore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.property.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.property.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator.gui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator.gui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator.gui/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator.gui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator.gui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.querygenerator/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.querygenerator/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.serializer.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.serializer.commandhandler/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.serializer.commandhandler/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.serializer.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.contract.testgeneration.java/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.contract.testgeneration.java/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.contract.tracegeneration/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.contract.tracegeneration/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/model/phase.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/model/phase.ecore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.phase.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.phase.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.traverser/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.traverser/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.traverser/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.traverser/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.traverser/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.traverser/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.statechart.traverser/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.statechart.traverser/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.environment.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /src/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ide/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ide/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ide/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ide/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ui/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.language/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.language/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/model/trace.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/model/trace.aird -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/model/trace.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/model/trace.ecore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/model/trace.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/model/trace.genmodel -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/plugin.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.c/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.testgeneration.c/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.c/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.testgeneration.c/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.c/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.commandhandler/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.trace.testgeneration.java/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.transformation.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.transformation.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.transformation.util/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.transformation.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.transformation.util/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.ui/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.ui/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.ui/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.ui/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.composition.transformation.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.composition.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.composition.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.serializer/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.serializer/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.serializer/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.serializer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.serializer/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation.traceability/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation.traceability/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.transformation/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.transformation/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.transformation/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.transformation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.transformation/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.util/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.util/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.verification/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.verification/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.verification/plugin.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.uppaal.verification/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.uppaal.verification/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/pom.xml -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.util/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.util/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.verification.util/.classpath -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.verification.util/.project -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.verification.util/build.properties -------------------------------------------------------------------------------- /plugins/core/hu.bme.mit.gamma.verification.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/core/hu.bme.mit.gamma.verification.util/pom.xml -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/.classpath -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/.project -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/build.properties -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/plugin.xml -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/pom.xml -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.validation/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/deprecated/hu.bme.mit.gamma.validation/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.yakindu.interface.transformation.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.yakindu.transformation.traceability/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.yakindu.transformation.traceability/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.yakindu.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/deprecated/hu.bme.mit.gamma.yakindu.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/headless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/README.md -------------------------------------------------------------------------------- /plugins/headless/docs/headless-gamma-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/docs/headless-gamma-docker.md -------------------------------------------------------------------------------- /plugins/headless/docs/headless-gamma-eclipse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/docs/headless-gamma-eclipse.md -------------------------------------------------------------------------------- /plugins/headless/docs/headless-gamma-webserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/docs/headless-gamma-webserver.md -------------------------------------------------------------------------------- /plugins/headless/docs/headless-gamma-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/docs/headless-gamma-workflow.md -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/.classpath -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/.project -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/build.properties -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/docker/Dockerfile -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/plugin.xml -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.api/pom.xml -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/.classpath -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/.gitignore -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/.project -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/README.md -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/log/.gitignore -------------------------------------------------------------------------------- /plugins/headless/hu.bme.mit.gamma.headless.server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/headless/hu.bme.mit.gamma.headless.server/pom.xml -------------------------------------------------------------------------------- /plugins/iml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/.gitignore -------------------------------------------------------------------------------- /plugins/iml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/README.md -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.iml.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/hu.bme.mit.gamma.iml.verification/.classpath -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.iml.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.iml.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/hu.bme.mit.gamma.iml.verification/.project -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.iml.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.iml.verification/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/hu.bme.mit.gamma.iml.verification/build.properties -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.classpath -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.project -------------------------------------------------------------------------------- /plugins/iml/hu.bme.mit.gamma.xsts.iml.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/mutation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/.gitignore -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/hu.bme.mit.gamma.mutation/.classpath -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/hu.bme.mit.gamma.mutation/.project -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/hu.bme.mit.gamma.mutation/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/hu.bme.mit.gamma.mutation/build.properties -------------------------------------------------------------------------------- /plugins/mutation/hu.bme.mit.gamma.mutation/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/hu.bme.mit.gamma.mutation/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/mutation/mutation-bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/mutation/mutation-bin/.gitignore -------------------------------------------------------------------------------- /plugins/nuxmv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/.gitignore -------------------------------------------------------------------------------- /plugins/nuxmv/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/.project -------------------------------------------------------------------------------- /plugins/nuxmv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/README.md -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.classpath -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.project -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.nuxmv.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.xsts.nuxmv.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.xsts.nuxmv.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/nuxmv/hu.bme.mit.gamma.xsts.nuxmv.transformation/.project -------------------------------------------------------------------------------- /plugins/nuxmv/hu.bme.mit.gamma.xsts.nuxmv.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/ocra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/.gitignore -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.ocra.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/hu.bme.mit.gamma.ocra.verification/.classpath -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.ocra.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.ocra.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/hu.bme.mit.gamma.ocra.verification/.project -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.ocra.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.ocra.verification/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/hu.bme.mit.gamma.ocra.verification/build.properties -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.xsts.ocra.transformation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/hu.bme.mit.gamma.xsts.ocra.transformation/.classpath -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.xsts.ocra.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/ocra/hu.bme.mit.gamma.xsts.ocra.transformation/.project -------------------------------------------------------------------------------- /plugins/ocra/hu.bme.mit.gamma.xsts.ocra.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/pom.xml -------------------------------------------------------------------------------- /plugins/promela/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/promela/.gitignore -------------------------------------------------------------------------------- /plugins/promela/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/promela/README.md -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.promela.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/promela/hu.bme.mit.gamma.promela.verification/.classpath -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.promela.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.promela.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/promela/hu.bme.mit.gamma.promela.verification/.project -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.promela.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.xsts.promela.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/promela/hu.bme.mit.gamma.xsts.promela.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/.classpath -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/.project -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/Application.e4xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/Application.e4xmi -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/build.properties -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/css/default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/hu.bme.mit.gamma.rcp.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/hu.bme.mit.gamma.rcp.product -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/about.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-128.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-128.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-16.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-16.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-256.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-256.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-32.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-32.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-48.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-48.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-64.bmp -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/gamma-64.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/home.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/open_in_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/open_in_app.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/save_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/save_edit.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/icons/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/icons/splash.png -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/plugin.xml -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/plugin_customization.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/plugin_customization.ini -------------------------------------------------------------------------------- /plugins/rcp/hu.bme.mit.gamma.rcp/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/rcp/hu.bme.mit.gamma.rcp/splash.bmp -------------------------------------------------------------------------------- /plugins/safety/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/.gitignore -------------------------------------------------------------------------------- /plugins/safety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/README.md -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ide/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ide/.classpath -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ide/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ide/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ide/build.properties -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ui/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ui/build.properties -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/.classpath -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator*.jar 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/build.properties -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.language/xtend-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.language/xtend-gen/.gitignore -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/.classpath -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/build.properties -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/model/fei.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/model/fei.ecore -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/model/fei.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/model/fei.genmodel -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/plugin.properties -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/plugin.xml -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.xsap.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.fei.xsap.transformation/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.fei.xsap.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.xsap.visualizer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.xsap.visualizer/.classpath -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.xsap.visualizer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.xsap.visualizer/.project -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.xsap.visualizer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/safety/hu.bme.mit.gamma.xsap.visualizer/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/safety/hu.bme.mit.gamma.xsap.visualizer/build.properties -------------------------------------------------------------------------------- /plugins/scenario/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/.gitignore -------------------------------------------------------------------------------- /plugins/scenario/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/README.md -------------------------------------------------------------------------------- /plugins/scenario/docs/Scenario tutorial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/docs/Scenario tutorial.docx -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ide/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ide/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language.ide/.project -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ide/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.classpath -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.xml_gen 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.project -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language/.classpath -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /.antlr-generator-3.2.0-patch.jar 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.language/.project -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.language/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.model/.classpath -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.model/.project -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.model/build.properties -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/scenario/hu.bme.mit.gamma.scenario.model/plugin.xml -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.statechart.generator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.statechart.generator/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.statechart.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.statechart.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.trace.generator/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.trace.generator/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/scenario/hu.bme.mit.gamma.scenario.trace.generator/xtend-gen/hu/bme/mit/gamma/scenario/trace/generator/util/.gitignore: -------------------------------------------------------------------------------- 1 | /.TraceBackAnnotatorUtil.java._trace 2 | -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/setup/hu.bme.mit.gamma.setup/.classpath -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | /.antlr-generator*.jar -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/setup/hu.bme.mit.gamma.setup/.project -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/setup/hu.bme.mit.gamma.setup/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/setup/hu.bme.mit.gamma.setup/build.properties -------------------------------------------------------------------------------- /plugins/setup/hu.bme.mit.gamma.setup/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/setup/hu.bme.mit.gamma.setup/pom.xml -------------------------------------------------------------------------------- /plugins/vis/.gitignore: -------------------------------------------------------------------------------- 1 | */bin/ 2 | */target/ 3 | 4 | *.tests/ 5 | -------------------------------------------------------------------------------- /plugins/vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/README.md -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.classpath -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.project -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/plugin.xml -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.textprovider/pom.xml -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.classpath -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.project -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.transformation/plugin.xml -------------------------------------------------------------------------------- /plugins/vis/hu.bme.mit.gamma.plantuml.transformation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/vis/hu.bme.mit.gamma.plantuml.transformation/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/.gitignore -------------------------------------------------------------------------------- /plugins/xsts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/README.md -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.lowlevel.xsts.transformation.traceability/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.lowlevel.xsts.transformation.traceability/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.lowlevel.xsts.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.lowlevel.xsts.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.model/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.transformation.commandhandler/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.statechart.lowlevel.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.theta.verification/.classpath -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.theta.verification/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.theta.verification/build.properties -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.theta.verification/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.theta.verification/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.classpath -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.codegeneration.java/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/.classpath -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/build.properties -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.aird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.aird -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.ecore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.ecore -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.genmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/model/model.genmodel -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/plugin.properties -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/plugin.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.model/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.model/src-gen/.gitignore -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.classpath -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation.util/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.classpath -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.transformation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.transformation/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.uppaal.transformation/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.uppaal.transformation/.project -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.uppaal.transformation/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/xsts/hu.bme.mit.gamma.xsts.uppaal.transformation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/hu.bme.mit.gamma.xsts.uppaal.transformation/pom.xml -------------------------------------------------------------------------------- /plugins/xsts/theta-bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.jar 3 | *.so -------------------------------------------------------------------------------- /plugins/xsts/theta-bin/Get-Theta.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/theta-bin/Get-Theta.ps1 -------------------------------------------------------------------------------- /plugins/xsts/theta-bin/get-theta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/plugins/xsts/theta-bin/get-theta.sh -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | */bin/ -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.expression.validation.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.expression.validation.test/.classpath -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.expression.validation.test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.expression.validation.test/.gitignore -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.expression.validation.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.expression.validation.test/.project -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.expression.validation.test/model/ActionLanguage/ActionValidationInfo.gcd: -------------------------------------------------------------------------------- 1 | package actionlanguage 2 | 3 | // INFO -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.expression.validation.test/model/ExpressionLanguage/ExpressionValidationWarning.gcd: -------------------------------------------------------------------------------- 1 | package expressionlanguage 2 | 3 | // WARNING -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/.classpath -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/.gitignore -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/.project -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Antivalence/MO_ANTIVAL_CHK.ggen: -------------------------------------------------------------------------------- 1 | import "MO_ANTIVAL_CHK.gcd" 2 | 3 | code { 4 | component : AntivalenceChecker 5 | language : java 6 | } -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/COID.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/COID.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Interface/Interfaces.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Interface/Interfaces.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Jelzo/COID.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Jelzo/COID.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Jelzo/COID.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Jelzo/COID.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/System/ANTIVAL_CHK_COID/CustomQuery_ANTIVAL_CHK_COID_System.prop: -------------------------------------------------------------------------------- 1 | E<> ((Oldas_Exit_coid)) -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Types/Types.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Types/Types.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Valto/VALTO_OAK.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Valto/VALTO_OAK.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/COID/Valto/VALTO_OAK.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/COID/Valto/VALTO_OAK.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/ChoiceMerge/ChoiceMerge.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/ChoiceMerge/ChoiceMerge.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Adder.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Adder.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Counter.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Counter.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Subtractor.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/Adapter/Subtractor.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/Statechart/Adder.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/Statechart/Adder.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/Statechart/Counter.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/Statechart/Counter.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/System/ClockSystem.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/System/ClockSystem.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Clock/System/ClockSystem.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Clock/System/ClockSystem.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Crossroads/Crossroad.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Crossroads/Crossroad.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Crossroads/Monitor/Monitor.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Crossroads/Monitor/Monitor.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Crossroads/Monitor/Monitor.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Crossroads/Monitor/Monitor.sct -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/EventPassing/EventPassing.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/EventPassing/EventPassing.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/ForkJoin/ForkJoin.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/ForkJoin/ForkJoin.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/INPE.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/INPE.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/Interface/Interfaces.sct -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.sct -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.sgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBC.sgen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBCCode.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/OBC/OBCCode.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.sct -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.sgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLP.sgen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLPCode.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/SLP/SLPCode.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/System/CustomQueries.prop: -------------------------------------------------------------------------------- 1 | E<> ((main_region_slp == SLP_Read_Experiment)) -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.prop -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/INPE/System/Mission.q -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Manual/Tests.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Manual/Tests.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Interfaces/Interfaces.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Interfaces/Interfaces.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/Jelzo.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/Jelzo.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/Jelzo.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/Jelzo.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/TransientJelzo.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/TransientJelzo.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/TransientJelzo.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Jelzo/TransientJelzo.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/PIL.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/PIL.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/System/Vaganyut/Cascade/Vaganyut.q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/System/Vaganyut/Synchronous/Vaganyut.q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Types/Types.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Types/Types.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Valto/TransientValto.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Valto/TransientValto.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Valto/Valto.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Valto/Valto.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PIL/Valto/Valto.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PIL/Valto/Valto.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/PortInvariants/System.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/PortInvariants/System.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/RIS/RIS.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/RIS/RIS.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/SSM/SSM.ggen: -------------------------------------------------------------------------------- 1 | include "System/Mission.ggen" -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission-LTL.gpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission-LTL.gpd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.gcd -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/SSM/System/Mission.q -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Spacecraft/Spacecraft.ggen: -------------------------------------------------------------------------------- 1 | include "System/Spacecraft.ggen" -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.gpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.gpm -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.gsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/TMT/System/TMT.gsm -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TMT/System/TMTComponent.gsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/TMT/System/TMTComponent.gsm -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TMT/TMT.ggen: -------------------------------------------------------------------------------- 1 | include "System/TMT.ggen" -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/Tests.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/Tests.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TrafficLight/System/CustomQueries.prop: -------------------------------------------------------------------------------- 1 | E<> _transition_TrafficLight == 10 -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/TrafficLight/TrafficLight.ggen: -------------------------------------------------------------------------------- 1 | include "System/TrafficLightWrapper.ggen" -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/model/XSML/XSML.ggen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/model/XSML/XSML.ggen -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/src-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/src-gen/.gitignore -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/test-gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/test-gen/.gitignore -------------------------------------------------------------------------------- /tests/hu.bme.mit.gamma.tests/trace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tests/hu.bme.mit.gamma.tests/trace/.gitignore -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/docs/CTL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/docs/CTL.jpg -------------------------------------------------------------------------------- /tutorial/docs/Gamma-core-tutorial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/docs/Gamma-core-tutorial.docx -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.classpath -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.gitignore -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.contract.finish/.project -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/model/Crossroad.q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/model/test/referenceStatecharts/.Alternative.prop: -------------------------------------------------------------------------------- 1 | prop { 2 | !( ((region_Alternative == AcceptingState))) 3 | } 4 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.contract.finish/src/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.extra/.classpath -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.extra/.project -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/model/Crossroad.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.extra/model/Crossroad.gcd -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/model/MonitoredCrossroad.q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.extra/src/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/.classpath -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/.project -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/model/.Crossroad.g2u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/model/.Crossroad.g2u -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/model/.Crossroad.gsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/model/.Crossroad.gsm -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/model/Crossroad.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/model/Crossroad.gcd -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/model/Crossroad.q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/model/Crossroad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.finish/model/Crossroad.xml -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.finish/src/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.start/.classpath -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.start/.project -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/model/Crossroad.gcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.tutorial.start/model/Crossroad.gcd -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/src-gen/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/src/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.tutorial.start/test-gen/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.xsap.tutorial/.classpath -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.xsap.tutorial/.gitignore -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/hu.bme.mit.gamma.xsap.tutorial/.project -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/src-gen/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/src/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/hu.bme.mit.gamma.xsap.tutorial/test-gen/.keep: -------------------------------------------------------------------------------- 1 | Keeping the directory. -------------------------------------------------------------------------------- /tutorial/images/crossroad-component.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/crossroad-component.emf -------------------------------------------------------------------------------- /tutorial/images/crossroad-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/crossroad-component.png -------------------------------------------------------------------------------- /tutorial/images/crossroad-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/crossroad-states.png -------------------------------------------------------------------------------- /tutorial/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/import.png -------------------------------------------------------------------------------- /tutorial/images/java-code-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/java-code-generation.png -------------------------------------------------------------------------------- /tutorial/images/java-statechart-code-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/java-statechart-code-generation.png -------------------------------------------------------------------------------- /tutorial/images/menu-compile-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/menu-compile-interface.png -------------------------------------------------------------------------------- /tutorial/images/query-generator-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/query-generator-gui.png -------------------------------------------------------------------------------- /tutorial/images/start-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/start-project.png -------------------------------------------------------------------------------- /tutorial/images/viatra-update-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/viatra-update-site.png -------------------------------------------------------------------------------- /tutorial/images/workspace-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/workspace-settings.png -------------------------------------------------------------------------------- /tutorial/images/yakindu-update-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/gamma/HEAD/tutorial/images/yakindu-update-site.png --------------------------------------------------------------------------------