summaryrefslogtreecommitdiff
path: root/src/expr/mkmetakind
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-01 09:56:14 -0700
committerGitHub <noreply@github.com>2021-04-01 16:56:14 +0000
commit05a53a2ac405bcd18a84024247145f161809c3b0 (patch)
tree34241c0a82f79d717ddbfbb0c294f9a09c7edb0c /src/expr/mkmetakind
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'src/expr/mkmetakind')
-rwxr-xr-xsrc/expr/mkmetakind18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/expr/mkmetakind b/src/expr/mkmetakind
index b88a70c71..7c0d110fb 100755
--- a/src/expr/mkmetakind
+++ b/src/expr/mkmetakind
@@ -76,9 +76,9 @@ function theory {
echo "$kf:$lineno: error: \"theory\" directive missing class or header argument" >&2
exit 1
elif ! expr "$2" : '\(::*\)' >/dev/null; then
- echo "$kf:$lineno: warning: theory class \`$1' isn't fully-qualified (e.g., ::CVC5::theory::foo)" >&2
- elif ! expr "$2" : '\(::CVC5::theory::*\)' >/dev/null; then
- echo "$kf:$lineno: warning: theory class not under ::CVC5::theory namespace" >&2
+ echo "$kf:$lineno: warning: theory class \`$1' isn't fully-qualified (e.g., ::cvc5::theory::foo)" >&2
+ elif ! expr "$2" : '\(::cvc5::theory::*\)' >/dev/null; then
+ echo "$kf:$lineno: warning: theory class not under ::cvc5::theory namespace" >&2
fi
theory_class=$1
@@ -211,12 +211,12 @@ function constant {
# tricky to specify the CONST payload, like "int const*"; in any
# case, this warning gives too many false positives, so disable it
if ! expr "$2" : '..* ..*' >/dev/null; then
- echo "$kf:$lineno: warning: constant $1 class \`$2' isn't fully-qualified (e.g., ::CVC5::Rational)" >&2
+ echo "$kf:$lineno: warning: constant $1 class \`$2' isn't fully-qualified (e.g., ::cvc5::Rational)" >&2
fi
fi
fi
if ! expr "$3" : '\(::*\)' >/dev/null; then
- echo "$kf:$lineno: warning: constant $1 hasher \`$3' isn't fully-qualified (e.g., ::CVC5::RationalHashFunction)" >&2
+ echo "$kf:$lineno: warning: constant $1 hasher \`$3' isn't fully-qualified (e.g., ::cvc5::RationalHashFunction)" >&2
fi
# Avoid including the same header multiple times
@@ -233,13 +233,13 @@ $2 const& NodeValue::getConst< $2 >() const;
template <>
struct ConstantMap< $2 > {
// typedef $theory_class OwningTheory;
- enum { kind = ::CVC5::kind::$1 };
+ enum { kind = ::cvc5::kind::$1 };
};/* ConstantMap< $2 > */
template <>
-struct ConstantMapReverse< ::CVC5::kind::$1 > {
+struct ConstantMapReverse< ::cvc5::kind::$1 > {
typedef $2 T;
-};/* ConstantMapReverse< ::CVC5::kind::$1 > */
+};/* ConstantMapReverse< ::cvc5::kind::$1 > */
"
metakind_constantMaps="${metakind_constantMaps}
// The reinterpret_cast of d_children to \"$2 const*\"
@@ -250,7 +250,7 @@ struct ConstantMapReverse< ::CVC5::kind::$1 > {
template <>
$2 const& NodeValue::getConst< $2 >() const {
- AssertArgument(getKind() == ::CVC5::kind::$1, *this,
+ AssertArgument(getKind() == ::cvc5::kind::$1, *this,
\"Improper kind for getConst<$2>()\");
// To support non-inlined CONSTANT-kinded NodeValues (those that are
// \"constructed\" when initially checking them against the NodeManager
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback