summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-14 11:56:47 -0700
committerGitHub <noreply@github.com>2021-04-14 18:56:47 +0000
commite5c26181dab76704ad9a47126585fe2ec9d6cac2 (patch)
tree4f9d5a275091b73e825e0105be457c2b57f67d31 /src/parser
parentb6db4446a28d498af8fb4e629392985dfe2a976c (diff)
Rename public and private headers in src/include. (#6352)
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/antlr_input.h2
-rw-r--r--src/parser/antlr_line_buffered_input.h2
-rw-r--r--src/parser/bounded_token_buffer.h2
-rw-r--r--src/parser/bounded_token_factory.h2
-rw-r--r--src/parser/cvc/cvc.h2
-rw-r--r--src/parser/cvc/cvc_input.h2
-rw-r--r--src/parser/input.h2
-rw-r--r--src/parser/line_buffer.h2
-rw-r--r--src/parser/memory_mapped_input_buffer.h2
-rw-r--r--src/parser/parse_op.h2
-rw-r--r--src/parser/parser.h2
-rw-r--r--src/parser/parser_builder.h2
-rw-r--r--src/parser/parser_exception.h2
-rw-r--r--src/parser/smt2/smt2.h2
-rw-r--r--src/parser/smt2/smt2_input.h2
-rw-r--r--src/parser/smt2/sygus_input.h2
-rw-r--r--src/parser/tptp/tptp.h5
-rw-r--r--src/parser/tptp/tptp_input.h2
18 files changed, 19 insertions, 20 deletions
diff --git a/src/parser/antlr_input.h b/src/parser/antlr_input.h
index fea0837e4..2754e4167 100644
--- a/src/parser/antlr_input.h
+++ b/src/parser/antlr_input.h
@@ -26,7 +26,7 @@
#include "base/check.h"
#include "base/output.h"
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#include "parser/bounded_token_buffer.h"
#include "parser/input.h"
#include "parser/line_buffer.h"
diff --git a/src/parser/antlr_line_buffered_input.h b/src/parser/antlr_line_buffered_input.h
index faf9d16da..3203e815b 100644
--- a/src/parser/antlr_line_buffered_input.h
+++ b/src/parser/antlr_line_buffered_input.h
@@ -21,7 +21,7 @@
* achieve that and stores the lines received so far in a LineBuffer.
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__ANTLR_LINE_BUFFERED_INPUT_H
#define CVC5__PARSER__ANTLR_LINE_BUFFERED_INPUT_H
diff --git a/src/parser/bounded_token_buffer.h b/src/parser/bounded_token_buffer.h
index f190e82cf..b2bd55eaf 100644
--- a/src/parser/bounded_token_buffer.h
+++ b/src/parser/bounded_token_buffer.h
@@ -23,7 +23,7 @@
* "hidden".
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__BOUNDED_TOKEN_BUFFER_H
#define CVC5__PARSER__BOUNDED_TOKEN_BUFFER_H
diff --git a/src/parser/bounded_token_factory.h b/src/parser/bounded_token_factory.h
index 9211ef47c..ac93d6cfc 100644
--- a/src/parser/bounded_token_factory.h
+++ b/src/parser/bounded_token_factory.h
@@ -16,7 +16,7 @@
* tokens will be bounded (e.g., if you're using a bounded token stream).
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__BOUNDED_TOKEN_FACTORY_H
#define CVC5__PARSER__BOUNDED_TOKEN_FACTORY_H
diff --git a/src/parser/cvc/cvc.h b/src/parser/cvc/cvc.h
index d9866603c..e14f1bc7a 100644
--- a/src/parser/cvc/cvc.h
+++ b/src/parser/cvc/cvc.h
@@ -13,7 +13,7 @@
* The parser class for the CVC language.
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__CVC_H
#define CVC5__PARSER__CVC_H
diff --git a/src/parser/cvc/cvc_input.h b/src/parser/cvc/cvc_input.h
index 30991ea2b..128acbd29 100644
--- a/src/parser/cvc/cvc_input.h
+++ b/src/parser/cvc/cvc_input.h
@@ -15,7 +15,7 @@
* [[ Add lengthier description here ]]
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__CVC_INPUT_H
#define CVC5__PARSER__CVC_INPUT_H
diff --git a/src/parser/input.h b/src/parser/input.h
index b4128b5c2..fb7ce2b40 100644
--- a/src/parser/input.h
+++ b/src/parser/input.h
@@ -13,7 +13,7 @@
* Base for parser inputs.
*/
-#include "cvc4parser_public.h"
+#include "cvc5parser_public.h"
#ifndef CVC5__PARSER__INPUT_H
#define CVC5__PARSER__INPUT_H
diff --git a/src/parser/line_buffer.h b/src/parser/line_buffer.h
index 15ce9a8a1..1d1b16b04 100644
--- a/src/parser/line_buffer.h
+++ b/src/parser/line_buffer.h
@@ -17,7 +17,7 @@
* within the line.
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__LINE_BUFFER_H
#define CVC5__PARSER__LINE_BUFFER_H
diff --git a/src/parser/memory_mapped_input_buffer.h b/src/parser/memory_mapped_input_buffer.h
index 9db4c3d49..a420eccbf 100644
--- a/src/parser/memory_mapped_input_buffer.h
+++ b/src/parser/memory_mapped_input_buffer.h
@@ -13,7 +13,7 @@
* ANTLR input buffer from a memory-mapped file.
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__MEMORY_MAPPED_INPUT_BUFFER_H
#define CVC5__PARSER__MEMORY_MAPPED_INPUT_BUFFER_H
diff --git a/src/parser/parse_op.h b/src/parser/parse_op.h
index aed05769a..88bf22638 100644
--- a/src/parser/parse_op.h
+++ b/src/parser/parse_op.h
@@ -13,7 +13,7 @@
* Definitions of parsed operators.
*/
-#include "cvc4parser_public.h"
+#include "cvc5parser_public.h"
#ifndef CVC5__PARSER__PARSE_OP_H
#define CVC5__PARSER__PARSE_OP_H
diff --git a/src/parser/parser.h b/src/parser/parser.h
index 6f7c5f569..3382d25eb 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -13,7 +13,7 @@
* A collection of state for use by parser implementations.
*/
-#include "cvc4parser_public.h"
+#include "cvc5parser_public.h"
#ifndef CVC5__PARSER__PARSER_H
#define CVC5__PARSER__PARSER_H
diff --git a/src/parser/parser_builder.h b/src/parser/parser_builder.h
index 521628262..87fef8e93 100644
--- a/src/parser/parser_builder.h
+++ b/src/parser/parser_builder.h
@@ -13,7 +13,7 @@
* A builder for parsers.
*/
-#include "cvc4parser_public.h"
+#include "cvc5parser_public.h"
#ifndef CVC5__PARSER__PARSER_BUILDER_H
#define CVC5__PARSER__PARSER_BUILDER_H
diff --git a/src/parser/parser_exception.h b/src/parser/parser_exception.h
index 70e3edda3..0372661a2 100644
--- a/src/parser/parser_exception.h
+++ b/src/parser/parser_exception.h
@@ -13,7 +13,7 @@
* Exception class for parse errors.
*/
-#include "cvc4parser_public.h"
+#include "cvc5parser_public.h"
#ifndef CVC5__PARSER__PARSER_EXCEPTION_H
#define CVC5__PARSER__PARSER_EXCEPTION_H
diff --git a/src/parser/smt2/smt2.h b/src/parser/smt2/smt2.h
index 166ddeb2d..49b8c37d6 100644
--- a/src/parser/smt2/smt2.h
+++ b/src/parser/smt2/smt2.h
@@ -13,7 +13,7 @@
* Definitions of SMT2 constants.
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__SMT2_H
#define CVC5__PARSER__SMT2_H
diff --git a/src/parser/smt2/smt2_input.h b/src/parser/smt2/smt2_input.h
index 1668e101f..b05316faf 100644
--- a/src/parser/smt2/smt2_input.h
+++ b/src/parser/smt2/smt2_input.h
@@ -15,7 +15,7 @@
* [[ Add file-specific comments here ]]
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__SMT2_INPUT_H
#define CVC5__PARSER__SMT2_INPUT_H
diff --git a/src/parser/smt2/sygus_input.h b/src/parser/smt2/sygus_input.h
index 93e40253d..6da46736f 100644
--- a/src/parser/smt2/sygus_input.h
+++ b/src/parser/smt2/sygus_input.h
@@ -15,7 +15,7 @@
* [[ Add file-specific comments here ]]
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__SYGUS_INPUT_H
#define CVC5__PARSER__SYGUS_INPUT_H
diff --git a/src/parser/tptp/tptp.h b/src/parser/tptp/tptp.h
index 65b2240af..daeb5be58 100644
--- a/src/parser/tptp/tptp.h
+++ b/src/parser/tptp/tptp.h
@@ -13,9 +13,8 @@
* Definition of TPTP parser.
*/
-#include "parser/antlr_input.h" // Needs to go first.
-
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
+#include "parser/antlr_input.h" // Needs to go first.
#ifndef CVC5__PARSER__TPTP_H
#define CVC5__PARSER__TPTP_H
diff --git a/src/parser/tptp/tptp_input.h b/src/parser/tptp/tptp_input.h
index b9a8e2d0f..f08a28026 100644
--- a/src/parser/tptp/tptp_input.h
+++ b/src/parser/tptp/tptp_input.h
@@ -15,7 +15,7 @@
* [[ Add file-specific comments here ]]
*/
-#include "cvc4parser_private.h"
+#include "cvc5parser_private.h"
#ifndef CVC5__PARSER__TPTP_INPUT_H
#define CVC5__PARSER__TPTP_INPUT_H
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback