From c0ccf21a5169ab4752f0e892c6389fc2f56be441 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Mon, 10 May 2021 15:10:31 -0400 Subject: [PATCH] Numbers don't need to get eval-ed --- include/teqp/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/teqp/types.hpp b/include/teqp/types.hpp index 9061d31..f0ffc41 100644 --- a/include/teqp/types.hpp +++ b/include/teqp/types.hpp @@ -20,7 +20,7 @@ template<typename T> auto forceeval(T&& expr) { using namespace autodiff::detail; - if constexpr (isDual<T> || isExpr<T> || isNumber<T>) { + if constexpr (isDual<T> || isExpr<T>) { return eval(expr); } else { -- GitLab