aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/symbolic_index.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-09-15 14:16:20 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-09-15 14:16:20 +0200
commit82772e8d9de3e04d84bcd3aafaf714e88404f784 (patch)
treef8a97b0a27cde80cec85152e68d584d18cbe76d1 /test/symbolic_index.cpp
parent400512bfad8fc3ad6bed15cd026e0e35d70e39b4 (diff)
Rename Symbolic namespace to symbolic to be consistent with numext namespace
Diffstat (limited to 'test/symbolic_index.cpp')
-rw-r--r--test/symbolic_index.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/symbolic_index.cpp b/test/symbolic_index.cpp
index cf89b9fbe..02db2eb51 100644
--- a/test/symbolic_index.cpp
+++ b/test/symbolic_index.cpp
@@ -60,12 +60,12 @@ bool is_same_symb(const T1& a, const T2& b, Index size)
template<typename T>
void check_is_symbolic(const T&) {
- STATIC_CHECK(( Symbolic::is_symbolic<T>::value ))
+ STATIC_CHECK(( symbolic::is_symbolic<T>::value ))
}
template<typename T>
void check_isnot_symbolic(const T&) {
- STATIC_CHECK(( !Symbolic::is_symbolic<T>::value ))
+ STATIC_CHECK(( !symbolic::is_symbolic<T>::value ))
}
#define VERIFY_EQ_INT(A,B) VERIFY_IS_APPROX(int(A),int(B))
@@ -104,9 +104,9 @@ void check_symbolic_index()
#if EIGEN_HAS_CXX14
{
- struct x_tag {}; static const Symbolic::SymbolExpr<x_tag> x;
- struct y_tag {}; static const Symbolic::SymbolExpr<y_tag> y;
- struct z_tag {}; static const Symbolic::SymbolExpr<z_tag> z;
+ struct x_tag {}; static const symbolic::SymbolExpr<x_tag> x;
+ struct y_tag {}; static const symbolic::SymbolExpr<y_tag> y;
+ struct z_tag {}; static const symbolic::SymbolExpr<z_tag> z;
VERIFY_IS_APPROX( int(((x+3)/y+z).eval(x=6,y=3,z=-13)), (6+3)/3+(-13) );
}