summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-20 20:15:43 -0700
committerGitHub <noreply@github.com>2021-04-21 03:15:43 +0000
commita364163505e91b5d5fcecc8af4c7ad75c50e29a2 (patch)
tree940864fd4b75481a32d7b6510d3409c5e5cd5f61 /src/theory/arrays
parent4e9cef3063ca0155d4d97714d288ab7d88df5c30 (diff)
Arrays: Move implementation of type rules to cpp. (#6407)
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/theory_arrays_type_rules.cpp312
-rw-r--r--src/theory/arrays/theory_arrays_type_rules.h269
2 files changed, 343 insertions, 238 deletions
diff --git a/src/theory/arrays/theory_arrays_type_rules.cpp b/src/theory/arrays/theory_arrays_type_rules.cpp
new file mode 100644
index 000000000..e0c27419f
--- /dev/null
+++ b/src/theory/arrays/theory_arrays_type_rules.cpp
@@ -0,0 +1,312 @@
+/******************************************************************************
+ * Top contributors (to current version):
+ * Morgan Deters, Clark Barrett, Mathias Preiner
+ *
+ * This file is part of the cvc5 project.
+ *
+ * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
+ * in the top-level source directory and their institutional affiliations.
+ * All rights reserved. See the file COPYING in the top-level source
+ * directory for licensing information.
+ * ****************************************************************************
+ *
+ * Typing and cardinality rules for the theory of arrays.
+ */
+
+#include "theory/arrays/theory_arrays_type_rules.h"
+
+#include "theory/arrays/theory_arrays_rewriter.h" // for array-constant attributes
+#include "theory/type_enumerator.h"
+
+namespace cvc5 {
+namespace theory {
+namespace arrays {
+
+TypeNode ArraySelectTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ Assert(n.getKind() == kind::SELECT);
+ TypeNode arrayType = n[0].getType(check);
+ if (check)
+ {
+ if (!arrayType.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(n,
+ "array select operating on non-array");
+ }
+ TypeNode indexType = n[1].getType(check);
+ if (!indexType.isSubtypeOf(arrayType.getArrayIndexType()))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "array select not indexed with correct type for array");
+ }
+ }
+ return arrayType.getArrayConstituentType();
+}
+
+TypeNode ArrayStoreTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ if (n.getKind() == kind::STORE)
+ {
+ TypeNode arrayType = n[0].getType(check);
+ if (check)
+ {
+ if (!arrayType.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "array store operating on non-array");
+ }
+ TypeNode indexType = n[1].getType(check);
+ TypeNode valueType = n[2].getType(check);
+ if (!indexType.isSubtypeOf(arrayType.getArrayIndexType()))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "array store not indexed with correct type for array");
+ }
+ if (!valueType.isSubtypeOf(arrayType.getArrayConstituentType()))
+ {
+ Debug("array-types")
+ << "array type: " << arrayType.getArrayConstituentType()
+ << std::endl;
+ Debug("array-types") << "value types: " << valueType << std::endl;
+ throw TypeCheckingExceptionPrivate(
+ n, "array store not assigned with correct type for array");
+ }
+ }
+ return arrayType;
+ }
+ else
+ {
+ Assert(n.getKind() == kind::STORE_ALL);
+ ArrayStoreAll storeAll = n.getConst<ArrayStoreAll>();
+ return storeAll.getType();
+ }
+}
+
+bool ArrayStoreTypeRule::computeIsConst(NodeManager* nodeManager, TNode n)
+{
+ Assert(n.getKind() == kind::STORE);
+ NodeManagerScope nms(nodeManager);
+
+ TNode store = n[0];
+ TNode index = n[1];
+ TNode value = n[2];
+
+ // A constant must have only constant children and be in normal form
+ // If any child is non-const, this is not a constant
+ if (!store.isConst() || !index.isConst() || !value.isConst())
+ {
+ return false;
+ }
+
+ // Normal form for nested stores is just ordering by index but also need to
+ // check that we are not writing to default value
+ if (store.getKind() == kind::STORE && (!(store[1] < index)))
+ {
+ return false;
+ }
+
+ unsigned depth = 1;
+ unsigned valCount = 1;
+ while (store.getKind() == kind::STORE)
+ {
+ depth += 1;
+ if (store[2] == value)
+ {
+ valCount += 1;
+ }
+ store = store[0];
+ }
+ Assert(store.getKind() == kind::STORE_ALL);
+ ArrayStoreAll storeAll = store.getConst<ArrayStoreAll>();
+ Node defaultValue = storeAll.getValue();
+ if (value == defaultValue)
+ {
+ return false;
+ }
+
+ // Get the cardinality of the index type
+ Cardinality indexCard = index.getType().getCardinality();
+
+ if (indexCard.isInfinite())
+ {
+ return true;
+ }
+
+ // When index sort is finite, we have to check whether there is any value
+ // that is written to more than the default value. If so, it is not in
+ // normal form.
+
+ // Get the most frequently written value for n[0]
+ TNode mostFrequentValue;
+ unsigned mostFrequentValueCount = 0;
+ store = n[0];
+ if (store.getKind() == kind::STORE)
+ {
+ mostFrequentValue = getMostFrequentValue(store);
+ mostFrequentValueCount = getMostFrequentValueCount(store);
+ }
+
+ // Compute the most frequently written value for n
+ if (valCount > mostFrequentValueCount
+ || (valCount == mostFrequentValueCount && value < mostFrequentValue))
+ {
+ mostFrequentValue = value;
+ mostFrequentValueCount = valCount;
+ }
+
+ // Need to make sure the default value count is larger, or the same and the
+ // default value is expression-order-less-than nextValue
+ Cardinality::CardinalityComparison compare =
+ indexCard.compare(mostFrequentValueCount + depth);
+ Assert(compare != Cardinality::UNKNOWN);
+ if (compare == Cardinality::LESS
+ || (compare == Cardinality::EQUAL
+ && (!(defaultValue < mostFrequentValue))))
+ {
+ return false;
+ }
+ setMostFrequentValue(n, mostFrequentValue);
+ setMostFrequentValueCount(n, mostFrequentValueCount);
+ return true;
+}
+
+TypeNode ArrayTableFunTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ Assert(n.getKind() == kind::ARR_TABLE_FUN);
+ TypeNode arrayType = n[0].getType(check);
+ if (check)
+ {
+ if (!arrayType.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(n,
+ "array table fun arg 0 is non-array");
+ }
+ TypeNode arrType2 = n[1].getType(check);
+ if (!arrayType.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(n,
+ "array table fun arg 1 is non-array");
+ }
+ TypeNode indexType = n[2].getType(check);
+ if (!indexType.isComparableTo(arrayType.getArrayIndexType()))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "array table fun arg 2 does not match type of array");
+ }
+ indexType = n[3].getType(check);
+ if (!indexType.isComparableTo(arrayType.getArrayIndexType()))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "array table fun arg 3 does not match type of array");
+ }
+ }
+ return arrayType.getArrayIndexType();
+}
+
+TypeNode ArrayLambdaTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ Assert(n.getKind() == kind::ARRAY_LAMBDA);
+ TypeNode lamType = n[0].getType(check);
+ if (check)
+ {
+ if (n[0].getKind() != kind::LAMBDA)
+ {
+ throw TypeCheckingExceptionPrivate(n, "array lambda arg is non-lambda");
+ }
+ }
+ if (lamType.getNumChildren() != 2)
+ {
+ throw TypeCheckingExceptionPrivate(n,
+ "array lambda arg is not unary lambda");
+ }
+ return nodeManager->mkArrayType(lamType[0], lamType[1]);
+}
+
+Cardinality ArraysProperties::computeCardinality(TypeNode type)
+{
+ Assert(type.getKind() == kind::ARRAY_TYPE);
+
+ Cardinality indexCard = type[0].getCardinality();
+ Cardinality valueCard = type[1].getCardinality();
+
+ return valueCard ^ indexCard;
+}
+
+bool ArraysProperties::isWellFounded(TypeNode type)
+{
+ return type[0].isWellFounded() && type[1].isWellFounded();
+}
+
+Node ArraysProperties::mkGroundTerm(TypeNode type)
+{
+ return *TypeEnumerator(type);
+}
+
+TypeNode ArrayPartialSelectTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ Assert(n.getKind() == kind::PARTIAL_SELECT_0
+ || n.getKind() == kind::PARTIAL_SELECT_1);
+ return nodeManager->integerType();
+}
+
+TypeNode ArrayEqRangeTypeRule::computeType(NodeManager* nodeManager,
+ TNode n,
+ bool check)
+{
+ Assert(n.getKind() == kind::EQ_RANGE);
+ if (check)
+ {
+ TypeNode n0_type = n[0].getType(check);
+ TypeNode n1_type = n[1].getType(check);
+ if (!n0_type.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "first operand of eqrange is not an array");
+ }
+ if (!n1_type.isArray())
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "second operand of eqrange is not an array");
+ }
+ if (n0_type != n1_type)
+ {
+ throw TypeCheckingExceptionPrivate(n, "array types do not match");
+ }
+ TypeNode indexType = n0_type.getArrayIndexType();
+ TypeNode indexRangeType1 = n[2].getType(check);
+ TypeNode indexRangeType2 = n[3].getType(check);
+ if (!indexRangeType1.isSubtypeOf(indexType))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "eqrange lower index type does not match array index type");
+ }
+ if (!indexRangeType2.isSubtypeOf(indexType))
+ {
+ throw TypeCheckingExceptionPrivate(
+ n, "eqrange upper index type does not match array index type");
+ }
+ if (!indexType.isBitVector() && !indexType.isFloatingPoint()
+ && !indexType.isInteger() && !indexType.isReal())
+ {
+ throw TypeCheckingExceptionPrivate(
+ n,
+ "eqrange only supports bit-vectors, floating-points, integers, and "
+ "reals as index type");
+ }
+ }
+ return nodeManager->booleanType();
+}
+
+} // namespace arrays
+} // namespace theory
+} // namespace cvc5
diff --git a/src/theory/arrays/theory_arrays_type_rules.h b/src/theory/arrays/theory_arrays_type_rules.h
index 9a69ff8f4..d8c75b9f9 100644
--- a/src/theory/arrays/theory_arrays_type_rules.h
+++ b/src/theory/arrays/theory_arrays_type_rules.h
@@ -18,260 +18,53 @@
#ifndef CVC5__THEORY__ARRAYS__THEORY_ARRAYS_TYPE_RULES_H
#define CVC5__THEORY__ARRAYS__THEORY_ARRAYS_TYPE_RULES_H
-#include "theory/arrays/theory_arrays_rewriter.h" // for array-constant attributes
-#include "theory/type_enumerator.h"
+#include "expr/node.h"
+#include "expr/type_node.h"
namespace cvc5 {
namespace theory {
namespace arrays {
-struct ArraySelectTypeRule {
- inline static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check)
- {
- Assert(n.getKind() == kind::SELECT);
- TypeNode arrayType = n[0].getType(check);
- if( check ) {
- if(!arrayType.isArray()) {
- throw TypeCheckingExceptionPrivate(n, "array select operating on non-array");
- }
- TypeNode indexType = n[1].getType(check);
- if(!indexType.isSubtypeOf(arrayType.getArrayIndexType())){
- throw TypeCheckingExceptionPrivate(n, "array select not indexed with correct type for array");
- }
- }
- return arrayType.getArrayConstituentType();
- }
-};/* struct ArraySelectTypeRule */
-
-struct ArrayStoreTypeRule {
- inline static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check)
- {
- if (n.getKind() == kind::STORE) {
- TypeNode arrayType = n[0].getType(check);
- if( check ) {
- if(!arrayType.isArray()) {
- throw TypeCheckingExceptionPrivate(n, "array store operating on non-array");
- }
- TypeNode indexType = n[1].getType(check);
- TypeNode valueType = n[2].getType(check);
- if(!indexType.isSubtypeOf(arrayType.getArrayIndexType())){
- throw TypeCheckingExceptionPrivate(n, "array store not indexed with correct type for array");
- }
- if(!valueType.isSubtypeOf(arrayType.getArrayConstituentType())){
- Debug("array-types") << "array type: "<< arrayType.getArrayConstituentType() << std::endl;
- Debug("array-types") << "value types: " << valueType << std::endl;
- throw TypeCheckingExceptionPrivate(n, "array store not assigned with correct type for array");
- }
- }
- return arrayType;
- }
- else {
- Assert(n.getKind() == kind::STORE_ALL);
- ArrayStoreAll storeAll = n.getConst<ArrayStoreAll>();
- return storeAll.getType();
- }
- }
-
- inline static bool computeIsConst(NodeManager* nodeManager, TNode n)
- {
- Assert(n.getKind() == kind::STORE);
- NodeManagerScope nms(nodeManager);
-
- TNode store = n[0];
- TNode index = n[1];
- TNode value = n[2];
-
- // A constant must have only constant children and be in normal form
- // If any child is non-const, this is not a constant
- if (!store.isConst() || !index.isConst() || !value.isConst()) {
- return false;
- }
-
- // Normal form for nested stores is just ordering by index but also need to check that we are not writing
- // to default value
- if (store.getKind() == kind::STORE && (!(store[1] < index))) {
- return false;
- }
-
- unsigned depth = 1;
- unsigned valCount = 1;
- while (store.getKind() == kind::STORE) {
- depth += 1;
- if (store[2] == value) {
- valCount += 1;
- }
- store = store[0];
- }
- Assert(store.getKind() == kind::STORE_ALL);
- ArrayStoreAll storeAll = store.getConst<ArrayStoreAll>();
- Node defaultValue = storeAll.getValue();
- if (value == defaultValue) {
- return false;
- }
-
- // Get the cardinality of the index type
- Cardinality indexCard = index.getType().getCardinality();
-
- if (indexCard.isInfinite()) {
- return true;
- }
-
- // When index sort is finite, we have to check whether there is any value
- // that is written to more than the default value. If so, it is not in
- // normal form.
-
- // Get the most frequently written value for n[0]
- TNode mostFrequentValue;
- unsigned mostFrequentValueCount = 0;
- store = n[0];
- if (store.getKind() == kind::STORE) {
- mostFrequentValue = getMostFrequentValue(store);
- mostFrequentValueCount = getMostFrequentValueCount(store);
- }
-
- // Compute the most frequently written value for n
- if (valCount > mostFrequentValueCount ||
- (valCount == mostFrequentValueCount && value < mostFrequentValue)) {
- mostFrequentValue = value;
- mostFrequentValueCount = valCount;
- }
-
- // Need to make sure the default value count is larger, or the same and the default value is expression-order-less-than nextValue
- Cardinality::CardinalityComparison compare = indexCard.compare(mostFrequentValueCount + depth);
- Assert(compare != Cardinality::UNKNOWN);
- if (compare == Cardinality::LESS ||
- (compare == Cardinality::EQUAL && (!(defaultValue < mostFrequentValue)))) {
- return false;
- }
- setMostFrequentValue(n, mostFrequentValue);
- setMostFrequentValueCount(n, mostFrequentValueCount);
- return true;
- }
-
-};/* struct ArrayStoreTypeRule */
-
-struct ArrayTableFunTypeRule {
- inline static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check)
- {
- Assert(n.getKind() == kind::ARR_TABLE_FUN);
- TypeNode arrayType = n[0].getType(check);
- if( check ) {
- if(!arrayType.isArray()) {
- throw TypeCheckingExceptionPrivate(n, "array table fun arg 0 is non-array");
- }
- TypeNode arrType2 = n[1].getType(check);
- if(!arrayType.isArray()) {
- throw TypeCheckingExceptionPrivate(n, "array table fun arg 1 is non-array");
- }
- TypeNode indexType = n[2].getType(check);
- if(!indexType.isComparableTo(arrayType.getArrayIndexType())){
- throw TypeCheckingExceptionPrivate(n, "array table fun arg 2 does not match type of array");
- }
- indexType = n[3].getType(check);
- if(!indexType.isComparableTo(arrayType.getArrayIndexType())){
- throw TypeCheckingExceptionPrivate(n, "array table fun arg 3 does not match type of array");
- }
- }
- return arrayType.getArrayIndexType();
- }
-};/* struct ArrayTableFunTypeRule */
+struct ArraySelectTypeRule
+{
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
+};
-struct ArrayLambdaTypeRule {
- inline static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check)
- {
- Assert(n.getKind() == kind::ARRAY_LAMBDA);
- TypeNode lamType = n[0].getType(check);
- if( check ) {
- if(n[0].getKind() != kind::LAMBDA) {
- throw TypeCheckingExceptionPrivate(n, "array lambda arg is non-lambda");
- }
- }
- if(lamType.getNumChildren() != 2) {
- throw TypeCheckingExceptionPrivate(n, "array lambda arg is not unary lambda");
- }
- return nodeManager->mkArrayType(lamType[0], lamType[1]);
- }
-};/* struct ArrayLambdaTypeRule */
+struct ArrayStoreTypeRule
+{
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
-struct ArraysProperties {
- inline static Cardinality computeCardinality(TypeNode type) {
- Assert(type.getKind() == kind::ARRAY_TYPE);
+ static bool computeIsConst(NodeManager* nodeManager, TNode n);
+};
- Cardinality indexCard = type[0].getCardinality();
- Cardinality valueCard = type[1].getCardinality();
+struct ArrayTableFunTypeRule
+{
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
+};
- return valueCard ^ indexCard;
- }
+struct ArrayLambdaTypeRule
+{
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
+};
- inline static bool isWellFounded(TypeNode type) {
- return type[0].isWellFounded() && type[1].isWellFounded();
- }
+struct ArraysProperties
+{
+ static Cardinality computeCardinality(TypeNode type);
- inline static Node mkGroundTerm(TypeNode type) {
- return *TypeEnumerator(type);
- }
-};/* struct ArraysProperties */
+ static bool isWellFounded(TypeNode type);
+ static Node mkGroundTerm(TypeNode type);
+};
-struct ArrayPartialSelectTypeRule {
- inline static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check)
- {
- Assert(n.getKind() == kind::PARTIAL_SELECT_0
- || n.getKind() == kind::PARTIAL_SELECT_1);
- return nodeManager->integerType();
- }
-};/* struct ArrayPartialSelectTypeRule */
+struct ArrayPartialSelectTypeRule
+{
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
+};
struct ArrayEqRangeTypeRule
{
- inline static TypeNode computeType(NodeManager* nodeManager,
- TNode n,
- bool check)
- {
- Assert(n.getKind() == kind::EQ_RANGE);
- if (check)
- {
- TypeNode n0_type = n[0].getType(check);
- TypeNode n1_type = n[1].getType(check);
- if (!n0_type.isArray())
- {
- throw TypeCheckingExceptionPrivate(
- n, "first operand of eqrange is not an array");
- }
- if (!n1_type.isArray())
- {
- throw TypeCheckingExceptionPrivate(
- n, "second operand of eqrange is not an array");
- }
- if (n0_type != n1_type)
- {
- throw TypeCheckingExceptionPrivate(n, "array types do not match");
- }
- TypeNode indexType = n0_type.getArrayIndexType();
- TypeNode indexRangeType1 = n[2].getType(check);
- TypeNode indexRangeType2 = n[3].getType(check);
- if (!indexRangeType1.isSubtypeOf(indexType))
- {
- throw TypeCheckingExceptionPrivate(
- n, "eqrange lower index type does not match array index type");
- }
- if (!indexRangeType2.isSubtypeOf(indexType))
- {
- throw TypeCheckingExceptionPrivate(
- n, "eqrange upper index type does not match array index type");
- }
- if (!indexType.isBitVector() && !indexType.isFloatingPoint()
- && !indexType.isInteger() && !indexType.isReal())
- {
- throw TypeCheckingExceptionPrivate(
- n,
- "eqrange only supports bit-vectors, floating-points, integers, and "
- "reals as index type");
- }
- }
- return nodeManager->booleanType();
- }
-}; /* struct ArrayEqRangeTypeRule */
+ static TypeNode computeType(NodeManager* nodeManager, TNode n, bool check);
+};
} // namespace arrays
} // namespace theory
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback