-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathQuantifiedFormulaManager.java
75 lines (65 loc) · 2.75 KB
/
QuantifiedFormulaManager.java
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
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.api;
import com.google.common.collect.ImmutableList;
import java.util.List;
/**
* This interface contains methods for working with any theory with quantifiers.
*
* <p>ATTENTION: Not every theory has a quantifier elimination property!
*/
public interface QuantifiedFormulaManager {
enum Quantifier {
FORALL,
EXISTS
}
/**
* @return An existentially quantified formula.
* @param pVariables The variables that will get bound (variables) by the quantification.
* @param pBody The {@link BooleanFormula}} within that the binding will be performed.
* @throws IllegalArgumentException If the list {@code pVariables} is empty.
*/
default BooleanFormula exists(List<? extends Formula> pVariables, BooleanFormula pBody) {
return mkQuantifier(Quantifier.EXISTS, pVariables, pBody);
}
/**
* @return A universally quantified formula.
* @param pVariables The variables that will get bound (variables) by the quantification.
* @param pBody The {@link BooleanFormula}} within that the binding will be performed.
* @throws IllegalArgumentException If the list {@code pVariables} is empty.
*/
default BooleanFormula forall(List<? extends Formula> pVariables, BooleanFormula pBody) {
return mkQuantifier(Quantifier.FORALL, pVariables, pBody);
}
/** Syntax sugar, see {@link #forall(List, BooleanFormula)}. */
default BooleanFormula forall(Formula quantifiedArg, BooleanFormula pBody) {
return forall(ImmutableList.of(quantifiedArg), pBody);
}
/** Syntax sugar, see {@link #exists(List, BooleanFormula)}. */
default BooleanFormula exists(Formula quantifiedArg, BooleanFormula pBody) {
return exists(ImmutableList.of(quantifiedArg), pBody);
}
/**
* @return A quantified formula
* @param q Quantifier type
* @param pVariables The variables that will get bound (variables) by the quantification.
* @param pBody The {@link BooleanFormula}} within that the binding will be performed.
* @throws IllegalArgumentException If the list {@code pVariables} is empty.
*/
BooleanFormula mkQuantifier(
Quantifier q, List<? extends Formula> pVariables, BooleanFormula pBody);
/**
* Eliminate the quantifiers for a given formula. If this is not possible, it will return the
* input formula. Note that CVC4 only supports this for LIA and LRA.
*
* @param pF Formula with quantifiers.
* @return New formula without quantifiers.
*/
BooleanFormula eliminateQuantifiers(BooleanFormula pF)
throws InterruptedException, SolverException;
}