summaryrefslogtreecommitdiff
path: root/src/theory/strings/regexp_operation.h
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/theory/strings/regexp_operation.h
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'src/theory/strings/regexp_operation.h')
-rw-r--r--src/theory/strings/regexp_operation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/strings/regexp_operation.h b/src/theory/strings/regexp_operation.h
index 27324d971..b660e5c49 100644
--- a/src/theory/strings/regexp_operation.h
+++ b/src/theory/strings/regexp_operation.h
@@ -28,7 +28,7 @@
#include "theory/strings/skolem_cache.h"
#include "util/string.h"
-namespace CVC5 {
+namespace cvc5 {
namespace theory {
namespace strings {
@@ -55,7 +55,7 @@ enum RegExpConstType
};
class RegExpOpr {
- typedef std::pair<Node, CVC5::String> PairNodeStr;
+ typedef std::pair<Node, cvc5::String> PairNodeStr;
typedef std::set< Node > SetNodes;
typedef std::pair< Node, Node > PairNodes;
@@ -171,8 +171,8 @@ class RegExpOpr {
* - delta( (re.union (re.* "A") R) ) returns 1.
*/
int delta( Node r, Node &exp );
- int derivativeS(Node r, CVC5::String c, Node& retNode);
- Node derivativeSingle(Node r, CVC5::String c);
+ int derivativeS(Node r, cvc5::String c, Node& retNode);
+ Node derivativeSingle(Node r, cvc5::String c);
/**
* Returns the regular expression intersection of r1 and r2. If r1 or r2 is
* not constant, then this method returns null.
@@ -209,6 +209,6 @@ class RegExpOpr {
} // namespace strings
} // namespace theory
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__THEORY__STRINGS__REGEXP__OPERATION_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback