-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathArrayFormulaManager.java
96 lines (84 loc) · 3.76 KB
/
ArrayFormulaManager.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.api;
import org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType;
/**
* This interface represents the theory of (arbitrarily nested) arrays. (as defined in the SMTLIB2
* standard)
*/
@SuppressWarnings("MethodTypeParameterName")
public interface ArrayFormulaManager {
/**
* Read a value that is stored in the array at the specified position.
*
* @param pArray The array from which to read
* @param pIndex The position from which to read
* @return A formula that represents the result of the "read"
*/
<TI extends Formula, TE extends Formula> TE select(ArrayFormula<TI, TE> pArray, TI pIndex);
/**
* Store a value into a cell of the specified array.
*
* @param pArray The array to which to write
* @param pIndex The position to which to write
* @param pValue The value that should be written
* @return A formula that represents the "write"
*/
<TI extends Formula, TE extends Formula> ArrayFormula<TI, TE> store(
ArrayFormula<TI, TE> pArray, TI pIndex, TE pValue);
/**
* Declare a new array with exactly the given name.
*
* <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at {@link
* FormulaManager#isValidName} for further information.
*
* <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
* {@link Formula#toString} can return a different String than the given one.
*
* @param pIndexType The type of the array index
* @param pElementType The type of the array elements
*/
<TI extends Formula, TE extends Formula, FTI extends FormulaType<TI>, FTE extends FormulaType<TE>>
ArrayFormula<TI, TE> makeArray(String pName, FTI pIndexType, FTE pElementType);
/**
* Declare a new array with exactly the given name.
*
* <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at {@link
* FormulaManager#isValidName} for further information.
*
* <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
* {@link Formula#toString} can return a different String than the given one.
*
* @param type The type of the array, consisting of index type and element type
*/
default <TI extends Formula, TE extends Formula> ArrayFormula<TI, TE> makeArray(
String pName, ArrayFormulaType<TI, TE> type) {
return makeArray(pName, type.getIndexType(), type.getElementType());
}
/**
* Create a new array constant with values initialized to defaultElement.
*
* @param defaultElement The default value of all entries in the array.
*/
<TI extends Formula, TE extends Formula, FTI extends FormulaType<TI>, FTE extends FormulaType<TE>>
ArrayFormula<TI, TE> makeArray(FTI pIndexType, FTE pElementType, TE defaultElement);
/**
* Create a new array constant with values initialized to defaultElement.
*
* @param defaultElement The default value of all entries in the array.
*/
default <TI extends Formula, TE extends Formula> ArrayFormula<TI, TE> makeArray(
ArrayFormulaType<TI, TE> type, TE defaultElement) {
return makeArray(type.getIndexType(), type.getElementType(), defaultElement);
}
/** Make a {@link BooleanFormula} that represents the equality of two {@link ArrayFormula}. */
<TI extends Formula, TE extends Formula> BooleanFormula equivalence(
ArrayFormula<TI, TE> pArray1, ArrayFormula<TI, TE> pArray2);
<TI extends Formula> FormulaType<TI> getIndexType(ArrayFormula<TI, ?> pArray);
<TE extends Formula> FormulaType<TE> getElementType(ArrayFormula<?, TE> pArray);
}