aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/SMT-Solver/hu.bme.mit.inf.dslreasoner.smt.language/src-gen/hu/bme/mit/inf/dslreasoner/smtLanguage/impl/SmtLanguageFactoryImpl.java
blob: b284ade3ab26532b07d276fe0481436ec545eddf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
/**
 */
package hu.bme.mit.inf.dslreasoner.smtLanguage.impl;

import hu.bme.mit.inf.dslreasoner.smtLanguage.*;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EPackage;

import org.eclipse.emf.ecore.impl.EFactoryImpl;

import org.eclipse.emf.ecore.plugin.EcorePlugin;

/**
 * <!-- begin-user-doc -->
 * An implementation of the model <b>Factory</b>.
 * <!-- end-user-doc -->
 * @generated
 */
public class SmtLanguageFactoryImpl extends EFactoryImpl implements SmtLanguageFactory
{
  /**
   * Creates the default factory implementation.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public static SmtLanguageFactory init()
  {
    try
    {
      SmtLanguageFactory theSmtLanguageFactory = (SmtLanguageFactory)EPackage.Registry.INSTANCE.getEFactory(SmtLanguagePackage.eNS_URI);
      if (theSmtLanguageFactory != null)
      {
        return theSmtLanguageFactory;
      }
    }
    catch (Exception exception)
    {
      EcorePlugin.INSTANCE.log(exception);
    }
    return new SmtLanguageFactoryImpl();
  }

  /**
   * Creates an instance of the factory.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SmtLanguageFactoryImpl()
  {
    super();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public EObject create(EClass eClass)
  {
    switch (eClass.getClassifierID())
    {
      case SmtLanguagePackage.SMT_DOCUMENT: return createSMTDocument();
      case SmtLanguagePackage.SMT_INPUT: return createSMTInput();
      case SmtLanguagePackage.SMT_OUTPUT: return createSMTOutput();
      case SmtLanguagePackage.SMT_OPTION: return createSMTOption();
      case SmtLanguagePackage.SMT_TYPE: return createSMTType();
      case SmtLanguagePackage.SMT_ENUM_LITERAL: return createSMTEnumLiteral();
      case SmtLanguagePackage.SMT_ENUMERATED_TYPE_DECLARATION: return createSMTEnumeratedTypeDeclaration();
      case SmtLanguagePackage.SMT_SET_TYPE_DECLARATION: return createSMTSetTypeDeclaration();
      case SmtLanguagePackage.SMT_TYPE_REFERENCE: return createSMTTypeReference();
      case SmtLanguagePackage.SMT_COMPLEX_TYPE_REFERENCE: return createSMTComplexTypeReference();
      case SmtLanguagePackage.SMT_PRIMITIVE_TYPE_REFERENCE: return createSMTPrimitiveTypeReference();
      case SmtLanguagePackage.SMT_INT_TYPE_REFERENCE: return createSMTIntTypeReference();
      case SmtLanguagePackage.SMT_BOOL_TYPE_REFERENCE: return createSMTBoolTypeReference();
      case SmtLanguagePackage.SMT_REAL_TYPE_REFERENCE: return createSMTRealTypeReference();
      case SmtLanguagePackage.SMT_FUNCTION_DECLARATION: return createSMTFunctionDeclaration();
      case SmtLanguagePackage.SMT_FUNCTION_DEFINITION: return createSMTFunctionDefinition();
      case SmtLanguagePackage.SMT_TERM: return createSMTTerm();
      case SmtLanguagePackage.SMT_SYMBOLIC_DECLARATION: return createSMTSymbolicDeclaration();
      case SmtLanguagePackage.SMT_SYMBOLIC_VALUE: return createSMTSymbolicValue();
      case SmtLanguagePackage.SMT_ATOMIC_TERM: return createSMTAtomicTerm();
      case SmtLanguagePackage.SMT_INT_LITERAL: return createSMTIntLiteral();
      case SmtLanguagePackage.SMT_BOOL_LITERAL: return createSMTBoolLiteral();
      case SmtLanguagePackage.SMT_REAL_LITERAL: return createSMTRealLiteral();
      case SmtLanguagePackage.SMT_SORTED_VARIABLE: return createSMTSortedVariable();
      case SmtLanguagePackage.SMT_QUANTIFIED_EXPRESSION: return createSMTQuantifiedExpression();
      case SmtLanguagePackage.SMT_EXISTS: return createSMTExists();
      case SmtLanguagePackage.SMT_FORALL: return createSMTForall();
      case SmtLanguagePackage.SMT_BOOL_OPERATION: return createSMTBoolOperation();
      case SmtLanguagePackage.SMT_AND: return createSMTAnd();
      case SmtLanguagePackage.SMT_OR: return createSMTOr();
      case SmtLanguagePackage.SMT_IMPL: return createSMTImpl();
      case SmtLanguagePackage.SMT_NOT: return createSMTNot();
      case SmtLanguagePackage.SMT_IFF: return createSMTIff();
      case SmtLanguagePackage.SMTITE: return createSMTITE();
      case SmtLanguagePackage.SMT_LET: return createSMTLet();
      case SmtLanguagePackage.SMT_INLINE_CONSTANT_DEFINITION: return createSMTInlineConstantDefinition();
      case SmtLanguagePackage.SMT_RELATION: return createSMTRelation();
      case SmtLanguagePackage.SMT_EQUALS: return createSMTEquals();
      case SmtLanguagePackage.SMT_DISTINCT: return createSMTDistinct();
      case SmtLanguagePackage.SMTLT: return createSMTLT();
      case SmtLanguagePackage.SMTMT: return createSMTMT();
      case SmtLanguagePackage.SMTLEQ: return createSMTLEQ();
      case SmtLanguagePackage.SMTMEQ: return createSMTMEQ();
      case SmtLanguagePackage.SMT_INT_OPERATION: return createSMTIntOperation();
      case SmtLanguagePackage.SMT_PLUS: return createSMTPlus();
      case SmtLanguagePackage.SMT_MINUS: return createSMTMinus();
      case SmtLanguagePackage.SMT_MULTIPLY: return createSMTMultiply();
      case SmtLanguagePackage.SMT_DIVISON: return createSMTDivison();
      case SmtLanguagePackage.SMT_DIV: return createSMTDiv();
      case SmtLanguagePackage.SMT_MOD: return createSMTMod();
      case SmtLanguagePackage.SMT_ASSERTION: return createSMTAssertion();
      case SmtLanguagePackage.SMT_CARDINALITY_CONSTRAINT: return createSMTCardinalityConstraint();
      case SmtLanguagePackage.SMT_SAT_COMMAND: return createSMTSatCommand();
      case SmtLanguagePackage.SMT_SIMPLE_SAT_COMMAND: return createSMTSimpleSatCommand();
      case SmtLanguagePackage.SMT_COMPLEX_SAT_COMMAND: return createSMTComplexSatCommand();
      case SmtLanguagePackage.SMT_GET_MODEL_COMMAND: return createSMTGetModelCommand();
      case SmtLanguagePackage.SMT_REASONING_TACTIC: return createSMTReasoningTactic();
      case SmtLanguagePackage.SMT_BUILTIN_TACTIC: return createSMTBuiltinTactic();
      case SmtLanguagePackage.SMT_REASONING_COMBINATOR: return createSMTReasoningCombinator();
      case SmtLanguagePackage.SMT_AND_THEN_COMBINATOR: return createSMTAndThenCombinator();
      case SmtLanguagePackage.SMT_OR_ELSE_COMBINATOR: return createSMTOrElseCombinator();
      case SmtLanguagePackage.SMT_PAR_OR_COMBINATOR: return createSMTParOrCombinator();
      case SmtLanguagePackage.SMT_PAR_THEN_COMBINATOR: return createSMTParThenCombinator();
      case SmtLanguagePackage.SMT_TRY_FOR_COMBINATOR: return createSMTTryForCombinator();
      case SmtLanguagePackage.SMT_IF_COMBINATOR: return createSMTIfCombinator();
      case SmtLanguagePackage.SMT_WHEN_COMBINATOR: return createSMTWhenCombinator();
      case SmtLanguagePackage.SMT_FAIL_IF_COMBINATOR: return createSMTFailIfCombinator();
      case SmtLanguagePackage.SMT_USING_PARAM_COMBINATOR: return createSMTUsingParamCombinator();
      case SmtLanguagePackage.REASONING_PROBE: return createReasoningProbe();
      case SmtLanguagePackage.REASONING_TACTIC_PARAMETER: return createReasoningTacticParameter();
      case SmtLanguagePackage.SMT_RESULT: return createSMTResult();
      case SmtLanguagePackage.SMT_ERROR_RESULT: return createSMTErrorResult();
      case SmtLanguagePackage.SMT_UNSUPPORTED_RESULT: return createSMTUnsupportedResult();
      case SmtLanguagePackage.SMT_SAT_RESULT: return createSMTSatResult();
      case SmtLanguagePackage.SMT_MODEL_RESULT: return createSMTModelResult();
      case SmtLanguagePackage.SMT_STATISTIC_VALUE: return createSMTStatisticValue();
      case SmtLanguagePackage.SMT_STATISTIC_INT_VALUE: return createSMTStatisticIntValue();
      case SmtLanguagePackage.SMT_STATISTIC_DOUBLE_VALUE: return createSMTStatisticDoubleValue();
      case SmtLanguagePackage.SMT_STATISTICS_SECTION: return createSMTStatisticsSection();
      default:
        throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
    }
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTDocument createSMTDocument()
  {
    SMTDocumentImpl smtDocument = new SMTDocumentImpl();
    return smtDocument;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTInput createSMTInput()
  {
    SMTInputImpl smtInput = new SMTInputImpl();
    return smtInput;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTOutput createSMTOutput()
  {
    SMTOutputImpl smtOutput = new SMTOutputImpl();
    return smtOutput;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTOption createSMTOption()
  {
    SMTOptionImpl smtOption = new SMTOptionImpl();
    return smtOption;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTType createSMTType()
  {
    SMTTypeImpl smtType = new SMTTypeImpl();
    return smtType;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTEnumLiteral createSMTEnumLiteral()
  {
    SMTEnumLiteralImpl smtEnumLiteral = new SMTEnumLiteralImpl();
    return smtEnumLiteral;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTEnumeratedTypeDeclaration createSMTEnumeratedTypeDeclaration()
  {
    SMTEnumeratedTypeDeclarationImpl smtEnumeratedTypeDeclaration = new SMTEnumeratedTypeDeclarationImpl();
    return smtEnumeratedTypeDeclaration;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSetTypeDeclaration createSMTSetTypeDeclaration()
  {
    SMTSetTypeDeclarationImpl smtSetTypeDeclaration = new SMTSetTypeDeclarationImpl();
    return smtSetTypeDeclaration;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTTypeReference createSMTTypeReference()
  {
    SMTTypeReferenceImpl smtTypeReference = new SMTTypeReferenceImpl();
    return smtTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTComplexTypeReference createSMTComplexTypeReference()
  {
    SMTComplexTypeReferenceImpl smtComplexTypeReference = new SMTComplexTypeReferenceImpl();
    return smtComplexTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTPrimitiveTypeReference createSMTPrimitiveTypeReference()
  {
    SMTPrimitiveTypeReferenceImpl smtPrimitiveTypeReference = new SMTPrimitiveTypeReferenceImpl();
    return smtPrimitiveTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTIntTypeReference createSMTIntTypeReference()
  {
    SMTIntTypeReferenceImpl smtIntTypeReference = new SMTIntTypeReferenceImpl();
    return smtIntTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTBoolTypeReference createSMTBoolTypeReference()
  {
    SMTBoolTypeReferenceImpl smtBoolTypeReference = new SMTBoolTypeReferenceImpl();
    return smtBoolTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTRealTypeReference createSMTRealTypeReference()
  {
    SMTRealTypeReferenceImpl smtRealTypeReference = new SMTRealTypeReferenceImpl();
    return smtRealTypeReference;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTFunctionDeclaration createSMTFunctionDeclaration()
  {
    SMTFunctionDeclarationImpl smtFunctionDeclaration = new SMTFunctionDeclarationImpl();
    return smtFunctionDeclaration;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTFunctionDefinition createSMTFunctionDefinition()
  {
    SMTFunctionDefinitionImpl smtFunctionDefinition = new SMTFunctionDefinitionImpl();
    return smtFunctionDefinition;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTTerm createSMTTerm()
  {
    SMTTermImpl smtTerm = new SMTTermImpl();
    return smtTerm;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSymbolicDeclaration createSMTSymbolicDeclaration()
  {
    SMTSymbolicDeclarationImpl smtSymbolicDeclaration = new SMTSymbolicDeclarationImpl();
    return smtSymbolicDeclaration;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSymbolicValue createSMTSymbolicValue()
  {
    SMTSymbolicValueImpl smtSymbolicValue = new SMTSymbolicValueImpl();
    return smtSymbolicValue;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTAtomicTerm createSMTAtomicTerm()
  {
    SMTAtomicTermImpl smtAtomicTerm = new SMTAtomicTermImpl();
    return smtAtomicTerm;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTIntLiteral createSMTIntLiteral()
  {
    SMTIntLiteralImpl smtIntLiteral = new SMTIntLiteralImpl();
    return smtIntLiteral;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTBoolLiteral createSMTBoolLiteral()
  {
    SMTBoolLiteralImpl smtBoolLiteral = new SMTBoolLiteralImpl();
    return smtBoolLiteral;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTRealLiteral createSMTRealLiteral()
  {
    SMTRealLiteralImpl smtRealLiteral = new SMTRealLiteralImpl();
    return smtRealLiteral;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSortedVariable createSMTSortedVariable()
  {
    SMTSortedVariableImpl smtSortedVariable = new SMTSortedVariableImpl();
    return smtSortedVariable;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTQuantifiedExpression createSMTQuantifiedExpression()
  {
    SMTQuantifiedExpressionImpl smtQuantifiedExpression = new SMTQuantifiedExpressionImpl();
    return smtQuantifiedExpression;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTExists createSMTExists()
  {
    SMTExistsImpl smtExists = new SMTExistsImpl();
    return smtExists;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTForall createSMTForall()
  {
    SMTForallImpl smtForall = new SMTForallImpl();
    return smtForall;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTBoolOperation createSMTBoolOperation()
  {
    SMTBoolOperationImpl smtBoolOperation = new SMTBoolOperationImpl();
    return smtBoolOperation;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTAnd createSMTAnd()
  {
    SMTAndImpl smtAnd = new SMTAndImpl();
    return smtAnd;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTOr createSMTOr()
  {
    SMTOrImpl smtOr = new SMTOrImpl();
    return smtOr;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTImpl createSMTImpl()
  {
    SMTImplImpl smtImpl = new SMTImplImpl();
    return smtImpl;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTNot createSMTNot()
  {
    SMTNotImpl smtNot = new SMTNotImpl();
    return smtNot;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTIff createSMTIff()
  {
    SMTIffImpl smtIff = new SMTIffImpl();
    return smtIff;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTITE createSMTITE()
  {
    SMTITEImpl smtite = new SMTITEImpl();
    return smtite;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTLet createSMTLet()
  {
    SMTLetImpl smtLet = new SMTLetImpl();
    return smtLet;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTInlineConstantDefinition createSMTInlineConstantDefinition()
  {
    SMTInlineConstantDefinitionImpl smtInlineConstantDefinition = new SMTInlineConstantDefinitionImpl();
    return smtInlineConstantDefinition;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTRelation createSMTRelation()
  {
    SMTRelationImpl smtRelation = new SMTRelationImpl();
    return smtRelation;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTEquals createSMTEquals()
  {
    SMTEqualsImpl smtEquals = new SMTEqualsImpl();
    return smtEquals;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTDistinct createSMTDistinct()
  {
    SMTDistinctImpl smtDistinct = new SMTDistinctImpl();
    return smtDistinct;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTLT createSMTLT()
  {
    SMTLTImpl smtlt = new SMTLTImpl();
    return smtlt;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTMT createSMTMT()
  {
    SMTMTImpl smtmt = new SMTMTImpl();
    return smtmt;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTLEQ createSMTLEQ()
  {
    SMTLEQImpl smtleq = new SMTLEQImpl();
    return smtleq;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTMEQ createSMTMEQ()
  {
    SMTMEQImpl smtmeq = new SMTMEQImpl();
    return smtmeq;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTIntOperation createSMTIntOperation()
  {
    SMTIntOperationImpl smtIntOperation = new SMTIntOperationImpl();
    return smtIntOperation;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTPlus createSMTPlus()
  {
    SMTPlusImpl smtPlus = new SMTPlusImpl();
    return smtPlus;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTMinus createSMTMinus()
  {
    SMTMinusImpl smtMinus = new SMTMinusImpl();
    return smtMinus;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTMultiply createSMTMultiply()
  {
    SMTMultiplyImpl smtMultiply = new SMTMultiplyImpl();
    return smtMultiply;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTDivison createSMTDivison()
  {
    SMTDivisonImpl smtDivison = new SMTDivisonImpl();
    return smtDivison;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTDiv createSMTDiv()
  {
    SMTDivImpl smtDiv = new SMTDivImpl();
    return smtDiv;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTMod createSMTMod()
  {
    SMTModImpl smtMod = new SMTModImpl();
    return smtMod;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTAssertion createSMTAssertion()
  {
    SMTAssertionImpl smtAssertion = new SMTAssertionImpl();
    return smtAssertion;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTCardinalityConstraint createSMTCardinalityConstraint()
  {
    SMTCardinalityConstraintImpl smtCardinalityConstraint = new SMTCardinalityConstraintImpl();
    return smtCardinalityConstraint;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSatCommand createSMTSatCommand()
  {
    SMTSatCommandImpl smtSatCommand = new SMTSatCommandImpl();
    return smtSatCommand;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSimpleSatCommand createSMTSimpleSatCommand()
  {
    SMTSimpleSatCommandImpl smtSimpleSatCommand = new SMTSimpleSatCommandImpl();
    return smtSimpleSatCommand;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTComplexSatCommand createSMTComplexSatCommand()
  {
    SMTComplexSatCommandImpl smtComplexSatCommand = new SMTComplexSatCommandImpl();
    return smtComplexSatCommand;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTGetModelCommand createSMTGetModelCommand()
  {
    SMTGetModelCommandImpl smtGetModelCommand = new SMTGetModelCommandImpl();
    return smtGetModelCommand;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTReasoningTactic createSMTReasoningTactic()
  {
    SMTReasoningTacticImpl smtReasoningTactic = new SMTReasoningTacticImpl();
    return smtReasoningTactic;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTBuiltinTactic createSMTBuiltinTactic()
  {
    SMTBuiltinTacticImpl smtBuiltinTactic = new SMTBuiltinTacticImpl();
    return smtBuiltinTactic;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTReasoningCombinator createSMTReasoningCombinator()
  {
    SMTReasoningCombinatorImpl smtReasoningCombinator = new SMTReasoningCombinatorImpl();
    return smtReasoningCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTAndThenCombinator createSMTAndThenCombinator()
  {
    SMTAndThenCombinatorImpl smtAndThenCombinator = new SMTAndThenCombinatorImpl();
    return smtAndThenCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTOrElseCombinator createSMTOrElseCombinator()
  {
    SMTOrElseCombinatorImpl smtOrElseCombinator = new SMTOrElseCombinatorImpl();
    return smtOrElseCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTParOrCombinator createSMTParOrCombinator()
  {
    SMTParOrCombinatorImpl smtParOrCombinator = new SMTParOrCombinatorImpl();
    return smtParOrCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTParThenCombinator createSMTParThenCombinator()
  {
    SMTParThenCombinatorImpl smtParThenCombinator = new SMTParThenCombinatorImpl();
    return smtParThenCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTTryForCombinator createSMTTryForCombinator()
  {
    SMTTryForCombinatorImpl smtTryForCombinator = new SMTTryForCombinatorImpl();
    return smtTryForCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTIfCombinator createSMTIfCombinator()
  {
    SMTIfCombinatorImpl smtIfCombinator = new SMTIfCombinatorImpl();
    return smtIfCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTWhenCombinator createSMTWhenCombinator()
  {
    SMTWhenCombinatorImpl smtWhenCombinator = new SMTWhenCombinatorImpl();
    return smtWhenCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTFailIfCombinator createSMTFailIfCombinator()
  {
    SMTFailIfCombinatorImpl smtFailIfCombinator = new SMTFailIfCombinatorImpl();
    return smtFailIfCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTUsingParamCombinator createSMTUsingParamCombinator()
  {
    SMTUsingParamCombinatorImpl smtUsingParamCombinator = new SMTUsingParamCombinatorImpl();
    return smtUsingParamCombinator;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public ReasoningProbe createReasoningProbe()
  {
    ReasoningProbeImpl reasoningProbe = new ReasoningProbeImpl();
    return reasoningProbe;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public ReasoningTacticParameter createReasoningTacticParameter()
  {
    ReasoningTacticParameterImpl reasoningTacticParameter = new ReasoningTacticParameterImpl();
    return reasoningTacticParameter;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTResult createSMTResult()
  {
    SMTResultImpl smtResult = new SMTResultImpl();
    return smtResult;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTErrorResult createSMTErrorResult()
  {
    SMTErrorResultImpl smtErrorResult = new SMTErrorResultImpl();
    return smtErrorResult;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTUnsupportedResult createSMTUnsupportedResult()
  {
    SMTUnsupportedResultImpl smtUnsupportedResult = new SMTUnsupportedResultImpl();
    return smtUnsupportedResult;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTSatResult createSMTSatResult()
  {
    SMTSatResultImpl smtSatResult = new SMTSatResultImpl();
    return smtSatResult;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTModelResult createSMTModelResult()
  {
    SMTModelResultImpl smtModelResult = new SMTModelResultImpl();
    return smtModelResult;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTStatisticValue createSMTStatisticValue()
  {
    SMTStatisticValueImpl smtStatisticValue = new SMTStatisticValueImpl();
    return smtStatisticValue;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTStatisticIntValue createSMTStatisticIntValue()
  {
    SMTStatisticIntValueImpl smtStatisticIntValue = new SMTStatisticIntValueImpl();
    return smtStatisticIntValue;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTStatisticDoubleValue createSMTStatisticDoubleValue()
  {
    SMTStatisticDoubleValueImpl smtStatisticDoubleValue = new SMTStatisticDoubleValueImpl();
    return smtStatisticDoubleValue;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SMTStatisticsSection createSMTStatisticsSection()
  {
    SMTStatisticsSectionImpl smtStatisticsSection = new SMTStatisticsSectionImpl();
    return smtStatisticsSection;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public SmtLanguagePackage getSmtLanguagePackage()
  {
    return (SmtLanguagePackage)getEPackage();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @deprecated
   * @generated
   */
  @Deprecated
  public static SmtLanguagePackage getPackage()
  {
    return SmtLanguagePackage.eINSTANCE;
  }

} //SmtLanguageFactoryImpl