aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java
diff options
context:
space:
mode:
Diffstat (limited to 'Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java')
-rw-r--r--Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java105
1 files changed, 105 insertions, 0 deletions
diff --git a/Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java b/Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java
new file mode 100644
index 00000000..7de32c41
--- /dev/null
+++ b/Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/SMTOutput.java
@@ -0,0 +1,105 @@
1/**
2 */
3package hu.bme.mit.inf.dslreasoner.smtLanguage;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>SMT Output</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * <ul>
15 * <li>{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getSatResult <em>Sat Result</em>}</li>
16 * <li>{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getGetModelResult <em>Get Model Result</em>}</li>
17 * <li>{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getStatistics <em>Statistics</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput()
22 * @model
23 * @generated
24 */
25public interface SMTOutput extends EObject
26{
27 /**
28 * Returns the value of the '<em><b>Sat Result</b></em>' containment reference.
29 * <!-- begin-user-doc -->
30 * <p>
31 * If the meaning of the '<em>Sat Result</em>' containment reference isn't clear,
32 * there really should be more of a description here...
33 * </p>
34 * <!-- end-user-doc -->
35 * @return the value of the '<em>Sat Result</em>' containment reference.
36 * @see #setSatResult(SMTResult)
37 * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_SatResult()
38 * @model containment="true"
39 * @generated
40 */
41 SMTResult getSatResult();
42
43 /**
44 * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getSatResult <em>Sat Result</em>}' containment reference.
45 * <!-- begin-user-doc -->
46 * <!-- end-user-doc -->
47 * @param value the new value of the '<em>Sat Result</em>' containment reference.
48 * @see #getSatResult()
49 * @generated
50 */
51 void setSatResult(SMTResult value);
52
53 /**
54 * Returns the value of the '<em><b>Get Model Result</b></em>' containment reference.
55 * <!-- begin-user-doc -->
56 * <p>
57 * If the meaning of the '<em>Get Model Result</em>' containment reference isn't clear,
58 * there really should be more of a description here...
59 * </p>
60 * <!-- end-user-doc -->
61 * @return the value of the '<em>Get Model Result</em>' containment reference.
62 * @see #setGetModelResult(SMTResult)
63 * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_GetModelResult()
64 * @model containment="true"
65 * @generated
66 */
67 SMTResult getGetModelResult();
68
69 /**
70 * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getGetModelResult <em>Get Model Result</em>}' containment reference.
71 * <!-- begin-user-doc -->
72 * <!-- end-user-doc -->
73 * @param value the new value of the '<em>Get Model Result</em>' containment reference.
74 * @see #getGetModelResult()
75 * @generated
76 */
77 void setGetModelResult(SMTResult value);
78
79 /**
80 * Returns the value of the '<em><b>Statistics</b></em>' containment reference.
81 * <!-- begin-user-doc -->
82 * <p>
83 * If the meaning of the '<em>Statistics</em>' containment reference isn't clear,
84 * there really should be more of a description here...
85 * </p>
86 * <!-- end-user-doc -->
87 * @return the value of the '<em>Statistics</em>' containment reference.
88 * @see #setStatistics(SMTStatisticsSection)
89 * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTOutput_Statistics()
90 * @model containment="true"
91 * @generated
92 */
93 SMTStatisticsSection getStatistics();
94
95 /**
96 * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTOutput#getStatistics <em>Statistics</em>}' containment reference.
97 * <!-- begin-user-doc -->
98 * <!-- end-user-doc -->
99 * @param value the new value of the '<em>Statistics</em>' containment reference.
100 * @see #getStatistics()
101 * @generated
102 */
103 void setStatistics(SMTStatisticsSection value);
104
105} // SMTOutput