summaryrefslogtreecommitdiff
path: root/test/unit/util/stats_black.cpp
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 /test/unit/util/stats_black.cpp
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'test/unit/util/stats_black.cpp')
-rw-r--r--test/unit/util/stats_black.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/util/stats_black.cpp b/test/unit/util/stats_black.cpp
index f8a14d9b2..2ee64ab33 100644
--- a/test/unit/util/stats_black.cpp
+++ b/test/unit/util/stats_black.cpp
@@ -9,9 +9,9 @@
** All rights reserved. See the file COPYING in the top-level source
** directory for licensing information.\endverbatim
**
- ** \brief Black box testing of CVC5::Stat and associated classes
+ ** \brief Black box testing of cvc5::Stat and associated classes
**
- ** Black box testing of CVC5::Stat and associated classes.
+ ** Black box testing of cvc5::Stat and associated classes.
**/
#include <fcntl.h>
@@ -27,7 +27,7 @@
#include "util/stats_histogram.h"
#include "util/stats_timer.h"
-namespace CVC5 {
+namespace cvc5 {
namespace test {
class TestUtilBlackStats : public TestInternal
@@ -49,7 +49,7 @@ TEST_F(TestUtilBlackStats, stats)
BackedStat<void*> backedAddr("backedDouble", (void*)0xDEADBEEF);
IntegralHistogramStat<std::int64_t> histIntStat("hist-int");
histIntStat << 15 << 16 << 15 << 14 << 16;
- IntegralHistogramStat<CVC5::PfRule> histPfRuleStat("hist-pfrule");
+ IntegralHistogramStat<cvc5::PfRule> histPfRuleStat("hist-pfrule");
histPfRuleStat << PfRule::ASSUME << PfRule::SCOPE << PfRule::ASSUME;
// A statistic with no safe_print support
@@ -161,4 +161,4 @@ TEST_F(TestUtilBlackStats, stats)
#endif
}
} // namespace test
-} // namespace CVC5
+} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback