From e77c6caedf8171dc54d7470798f03ce4a0d1ad24 Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Mon, 22 Nov 1999 17:22:29 +0000 Subject: [PATCH] - fixed exp/log checks --- check/differentiation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/check/differentiation.cpp b/check/differentiation.cpp index 3d49062b..611342d0 100644 --- a/check/differentiation.cpp +++ b/check/differentiation.cpp @@ -164,6 +164,7 @@ static unsigned differentiation3(void) ex e1, e2, e, d; // construct expression e to be diff'ed: + e1 = y*pow(x, 2) + a*x + b; e2 = exp(e1); e = b*pow(e2, 2) + y*e2 + a; @@ -191,6 +192,7 @@ static unsigned differentiation4(void) ex e1, e2, e, d; // construct expression e to be diff'ed: + e1 = y*pow(x, 2) + a*x + b; e2 = log(e1); e = b*pow(e2, 2) + y*e2 + a; -- 2.46.2