aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java
diff options
context:
space:
mode:
authorLibravatar ArenBabikian <aren.babikian@mail.mcgill.ca>2019-10-07 00:35:42 -0400
committerLibravatar ArenBabikian <aren.babikian@mail.mcgill.ca>2020-06-07 19:42:47 -0400
commitb503c81bee920c18806af25393d0a90b8f77dba6 (patch)
tree9b70f606bfa7fa450457c04714e045e5ac5f6199 /Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java
parentVAMPIRE: fix model generation (diff)
downloadVIATRA-Generator-b503c81bee920c18806af25393d0a90b8f77dba6.tar.gz
VIATRA-Generator-b503c81bee920c18806af25393d0a90b8f77dba6.tar.zst
VIATRA-Generator-b503c81bee920c18806af25393d0a90b8f77dba6.zip
VAMPIRE: Implement Vampire measurement code
Diffstat (limited to 'Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java')
-rw-r--r--Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java37
1 files changed, 34 insertions, 3 deletions
diff --git a/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java b/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java
index c84261e9..2548f383 100644
--- a/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java
+++ b/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.language/src-gen/ca/mcgill/ecse/dslreasoner/services/VampireLanguageGrammarAccess.java
@@ -700,15 +700,16 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
700 private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1); 700 private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
701 private final RuleCall cVLSTermParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0); 701 private final RuleCall cVLSTermParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
702 private final RuleCall cVLSDeclarationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1); 702 private final RuleCall cVLSDeclarationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
703 private final RuleCall cVLSCommentTermParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
703 704
704 //////////////////////////////////// 705 ////////////////////////////////////
705 //// VLS Terms 706 //// VLS Terms
706 //////////////////////////////////// 707 ////////////////////////////////////
707 //VLSTffTerm: 708 //VLSTffTerm:
708 // VLSTerm | VLSDeclaration; 709 // VLSTerm | VLSDeclaration | VLSCommentTerm;
709 @Override public ParserRule getRule() { return rule; } 710 @Override public ParserRule getRule() { return rule; }
710 711
711 //VLSTerm | VLSDeclaration 712 //VLSTerm | VLSDeclaration | VLSCommentTerm
712 public Alternatives getAlternatives() { return cAlternatives; } 713 public Alternatives getAlternatives() { return cAlternatives; }
713 714
714 //VLSTerm 715 //VLSTerm
@@ -716,6 +717,24 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
716 717
717 //VLSDeclaration 718 //VLSDeclaration
718 public RuleCall getVLSDeclarationParserRuleCall_1() { return cVLSDeclarationParserRuleCall_1; } 719 public RuleCall getVLSDeclarationParserRuleCall_1() { return cVLSDeclarationParserRuleCall_1; }
720
721 //VLSCommentTerm
722 public RuleCall getVLSCommentTermParserRuleCall_2() { return cVLSCommentTermParserRuleCall_2; }
723 }
724 public class VLSCommentTermElements extends AbstractParserRuleElementFinder {
725 private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "ca.mcgill.ecse.dslreasoner.VampireLanguage.VLSCommentTerm");
726 private final Assignment cCommentAssignment = (Assignment)rule.eContents().get(1);
727 private final RuleCall cCommentSINGLE_COMMENTTerminalRuleCall_0 = (RuleCall)cCommentAssignment.eContents().get(0);
728
729 //VLSCommentTerm VLSTerm:
730 // comment=SINGLE_COMMENT;
731 @Override public ParserRule getRule() { return rule; }
732
733 //comment=SINGLE_COMMENT
734 public Assignment getCommentAssignment() { return cCommentAssignment; }
735
736 //SINGLE_COMMENT
737 public RuleCall getCommentSINGLE_COMMENTTerminalRuleCall_0() { return cCommentSINGLE_COMMENTTerminalRuleCall_0; }
719 } 738 }
720 public class VLSDeclarationElements extends AbstractParserRuleElementFinder { 739 public class VLSDeclarationElements extends AbstractParserRuleElementFinder {
721 private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "ca.mcgill.ecse.dslreasoner.VampireLanguage.VLSDeclaration"); 740 private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "ca.mcgill.ecse.dslreasoner.VampireLanguage.VLSDeclaration");
@@ -1791,6 +1810,7 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
1791 private final VLSAnnotationElements pVLSAnnotation; 1810 private final VLSAnnotationElements pVLSAnnotation;
1792 private final VLSAnnotationTermsElements pVLSAnnotationTerms; 1811 private final VLSAnnotationTermsElements pVLSAnnotationTerms;
1793 private final VLSTffTermElements pVLSTffTerm; 1812 private final VLSTffTermElements pVLSTffTerm;
1813 private final VLSCommentTermElements pVLSCommentTerm;
1794 private final VLSDeclarationElements pVLSDeclaration; 1814 private final VLSDeclarationElements pVLSDeclaration;
1795 private final VLSOtherDeclarationElements pVLSOtherDeclaration; 1815 private final VLSOtherDeclarationElements pVLSOtherDeclaration;
1796 private final VLSVariableDeclarationElements pVLSVariableDeclaration; 1816 private final VLSVariableDeclarationElements pVLSVariableDeclaration;
@@ -1844,6 +1864,7 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
1844 this.pVLSAnnotation = new VLSAnnotationElements(); 1864 this.pVLSAnnotation = new VLSAnnotationElements();
1845 this.pVLSAnnotationTerms = new VLSAnnotationTermsElements(); 1865 this.pVLSAnnotationTerms = new VLSAnnotationTermsElements();
1846 this.pVLSTffTerm = new VLSTffTermElements(); 1866 this.pVLSTffTerm = new VLSTffTermElements();
1867 this.pVLSCommentTerm = new VLSCommentTermElements();
1847 this.pVLSDeclaration = new VLSDeclarationElements(); 1868 this.pVLSDeclaration = new VLSDeclarationElements();
1848 this.pVLSOtherDeclaration = new VLSOtherDeclarationElements(); 1869 this.pVLSOtherDeclaration = new VLSOtherDeclarationElements();
1849 this.pVLSVariableDeclaration = new VLSVariableDeclarationElements(); 1870 this.pVLSVariableDeclaration = new VLSVariableDeclarationElements();
@@ -2182,7 +2203,7 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
2182 //// VLS Terms 2203 //// VLS Terms
2183 //////////////////////////////////// 2204 ////////////////////////////////////
2184 //VLSTffTerm: 2205 //VLSTffTerm:
2185 // VLSTerm | VLSDeclaration; 2206 // VLSTerm | VLSDeclaration | VLSCommentTerm;
2186 public VLSTffTermElements getVLSTffTermAccess() { 2207 public VLSTffTermElements getVLSTffTermAccess() {
2187 return pVLSTffTerm; 2208 return pVLSTffTerm;
2188 } 2209 }
@@ -2191,6 +2212,16 @@ public class VampireLanguageGrammarAccess extends AbstractGrammarElementFinder {
2191 return getVLSTffTermAccess().getRule(); 2212 return getVLSTffTermAccess().getRule();
2192 } 2213 }
2193 2214
2215 //VLSCommentTerm VLSTerm:
2216 // comment=SINGLE_COMMENT;
2217 public VLSCommentTermElements getVLSCommentTermAccess() {
2218 return pVLSCommentTerm;
2219 }
2220
2221 public ParserRule getVLSCommentTermRule() {
2222 return getVLSCommentTermAccess().getRule();
2223 }
2224
2194 /////////////////// 2225 ///////////////////
2195 ////TFF Specific 2226 ////TFF Specific
2196 // VLSDeclaration: 2227 // VLSDeclaration: