aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/Vampire-Solver/ca.mcgill.ecse.dslreasoner.vampire.reasoner/queries/ca/mcgill/ecse/dslreasoner/vampire/reasoner/queries/vampireQueries.vql
blob: be5a7c1f6228140a798edde866d6fabdcff67be6 (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
package ca.mcgill.ecse.dslreasoner.vampire.reasoner.queries

import "http://www.mcgill.ca/ecse/dslreasoner/VampireLanguage"

pattern VLSComment(term: VLSComment){
	VLSComment(term);
}

pattern VLSFofFormula(term: VLSFofFormula){
	VLSFofFormula(term);
}

pattern VLSAnnotation(term: VLSAnnotation){
	VLSAnnotation(term);
}


//VLSFormula
pattern VLSOr(term: VLSOr){
	VLSOr(term);
}

pattern VLSAnd(term: VLSAnd){
	VLSAnd(term);
}

pattern VLSEquivalent(term: VLSEquivalent){
	VLSEquivalent(term);
}

pattern VLSFunction(term: VLSFunction){
	VLSFunction(term);
}

pattern VLSExistentialQuantifier(term: VLSExistentialQuantifier){
	VLSExistentialQuantifier(term);
}

pattern VLSUniversalQuantifier(term: VLSUniversalQuantifier){
	VLSUniversalQuantifier(term);
}

pattern VLSUnaryNegation(term: VLSUnaryNegation){
	VLSUnaryNegation(term);
}

pattern VLSInequality(term: VLSInequality){
	VLSInequality(term);
}

pattern VLSFunctionFof(term: VLSFunctionAsTerm){
	VLSFunctionAsTerm(term);
}

//pattern VLSFofTerm(term: VLSFofTerm){
//	VLSFofTerm(term);
//}