aboutsummaryrefslogtreecommitdiffstats
path: root/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java
diff options
context:
space:
mode:
Diffstat (limited to 'Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java')
-rw-r--r--Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java42
1 files changed, 28 insertions, 14 deletions
diff --git a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java
index e2750467..3830e0eb 100644
--- a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java
+++ b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/Solver.java
@@ -1,5 +1,5 @@
1/** 1/**
2 * generated by Xtext 2.12.0 2 * generated by Xtext 2.21.0
3 */ 3 */
4package hu.bme.mit.inf.dslreasoner.application.applicationConfiguration; 4package hu.bme.mit.inf.dslreasoner.application.applicationConfiguration;
5 5
@@ -48,15 +48,21 @@ public enum Solver implements Enumerator
48 * @generated 48 * @generated
49 * @ordered 49 * @ordered
50 */ 50 */
51 VIATRA_SOLVER(2, "ViatraSolver", "ViatraSolver"); 51 VIATRA_SOLVER(2, "ViatraSolver", "ViatraSolver"),
52
53 /**
54 * The '<em><b>TPTP Solver</b></em>' literal object.
55 * <!-- begin-user-doc -->
56 * <!-- end-user-doc -->
57 * @see #TPTP_SOLVER_VALUE
58 * @generated
59 * @ordered
60 */
61 TPTP_SOLVER(3, "TPTPSolver", "TPTPSolver");
52 62
53 /** 63 /**
54 * The '<em><b>SMT Solver</b></em>' literal value. 64 * The '<em><b>SMT Solver</b></em>' literal value.
55 * <!-- begin-user-doc --> 65 * <!-- begin-user-doc -->
56 * <p>
57 * If the meaning of '<em><b>SMT Solver</b></em>' literal object isn't clear,
58 * there really should be more of a description here...
59 * </p>
60 * <!-- end-user-doc --> 66 * <!-- end-user-doc -->
61 * @see #SMT_SOLVER 67 * @see #SMT_SOLVER
62 * @model name="SMTSolver" 68 * @model name="SMTSolver"
@@ -68,10 +74,6 @@ public enum Solver implements Enumerator
68 /** 74 /**
69 * The '<em><b>Alloy Solver</b></em>' literal value. 75 * The '<em><b>Alloy Solver</b></em>' literal value.
70 * <!-- begin-user-doc --> 76 * <!-- begin-user-doc -->
71 * <p>
72 * If the meaning of '<em><b>Alloy Solver</b></em>' literal object isn't clear,
73 * there really should be more of a description here...
74 * </p>
75 * <!-- end-user-doc --> 77 * <!-- end-user-doc -->
76 * @see #ALLOY_SOLVER 78 * @see #ALLOY_SOLVER
77 * @model name="AlloySolver" 79 * @model name="AlloySolver"
@@ -83,10 +85,6 @@ public enum Solver implements Enumerator
83 /** 85 /**
84 * The '<em><b>Viatra Solver</b></em>' literal value. 86 * The '<em><b>Viatra Solver</b></em>' literal value.
85 * <!-- begin-user-doc --> 87 * <!-- begin-user-doc -->
86 * <p>
87 * If the meaning of '<em><b>Viatra Solver</b></em>' literal object isn't clear,
88 * there really should be more of a description here...
89 * </p>
90 * <!-- end-user-doc --> 88 * <!-- end-user-doc -->
91 * @see #VIATRA_SOLVER 89 * @see #VIATRA_SOLVER
92 * @model name="ViatraSolver" 90 * @model name="ViatraSolver"
@@ -96,6 +94,17 @@ public enum Solver implements Enumerator
96 public static final int VIATRA_SOLVER_VALUE = 2; 94 public static final int VIATRA_SOLVER_VALUE = 2;
97 95
98 /** 96 /**
97 * The '<em><b>TPTP Solver</b></em>' literal value.
98 * <!-- begin-user-doc -->
99 * <!-- end-user-doc -->
100 * @see #TPTP_SOLVER
101 * @model name="TPTPSolver"
102 * @generated
103 * @ordered
104 */
105 public static final int TPTP_SOLVER_VALUE = 3;
106
107 /**
99 * An array of all the '<em><b>Solver</b></em>' enumerators. 108 * An array of all the '<em><b>Solver</b></em>' enumerators.
100 * <!-- begin-user-doc --> 109 * <!-- begin-user-doc -->
101 * <!-- end-user-doc --> 110 * <!-- end-user-doc -->
@@ -107,6 +116,7 @@ public enum Solver implements Enumerator
107 SMT_SOLVER, 116 SMT_SOLVER,
108 ALLOY_SOLVER, 117 ALLOY_SOLVER,
109 VIATRA_SOLVER, 118 VIATRA_SOLVER,
119 TPTP_SOLVER,
110 }; 120 };
111 121
112 /** 122 /**
@@ -174,6 +184,7 @@ public enum Solver implements Enumerator
174 case SMT_SOLVER_VALUE: return SMT_SOLVER; 184 case SMT_SOLVER_VALUE: return SMT_SOLVER;
175 case ALLOY_SOLVER_VALUE: return ALLOY_SOLVER; 185 case ALLOY_SOLVER_VALUE: return ALLOY_SOLVER;
176 case VIATRA_SOLVER_VALUE: return VIATRA_SOLVER; 186 case VIATRA_SOLVER_VALUE: return VIATRA_SOLVER;
187 case TPTP_SOLVER_VALUE: return TPTP_SOLVER;
177 } 188 }
178 return null; 189 return null;
179 } 190 }
@@ -217,6 +228,7 @@ public enum Solver implements Enumerator
217 * <!-- end-user-doc --> 228 * <!-- end-user-doc -->
218 * @generated 229 * @generated
219 */ 230 */
231 @Override
220 public int getValue() 232 public int getValue()
221 { 233 {
222 return value; 234 return value;
@@ -227,6 +239,7 @@ public enum Solver implements Enumerator
227 * <!-- end-user-doc --> 239 * <!-- end-user-doc -->
228 * @generated 240 * @generated
229 */ 241 */
242 @Override
230 public String getName() 243 public String getName()
231 { 244 {
232 return name; 245 return name;
@@ -237,6 +250,7 @@ public enum Solver implements Enumerator
237 * <!-- end-user-doc --> 250 * <!-- end-user-doc -->
238 * @generated 251 * @generated
239 */ 252 */
253 @Override
240 public String getLiteral() 254 public String getLiteral()
241 { 255 {
242 return literal; 256 return literal;