|
|
last edited 16 years ago by kratt6 |
1 2 | ||
Editor:
Time: 2007/11/17 22:07:07 GMT-8 |
||
Note: fixed in Feb 2005 |
changed: - \begin{axiom} D(0^z, z) \end{axiom} Produced:: >> Error detected within library code: Invalid argument Of course, 0 is expected. From kratt6 Thu Jan 20 07:29:04 -0600 2005 From: kratt6 Date: Thu, 20 Jan 2005 07:29:04 -0600 Subject: patch Message-ID: <20050120072904-0600@page.axiom-developer.org> The offending code is in combfunc.spad, here is a patch. Note however, that strictly speaking 0^z is not differentiable at 0:: @@ -405,7 +417,10 @@ iipow l == ipow l if F has ElementaryFunctionCategory then - dvpow2 l == log(first l) * first(l) ** second(l) + dvpow2 l == if zero?(first l) then + 0 + else + log(first l) * first(l) ** second(l) evaluate(opfact, iifact)$BasicOperatorFunctions1(F) evaluate(oppow, iipow) Martin From unknown Thu Jan 20 10:43:06 -0600 2005 From: Date: Thu, 20 Jan 2005 10:43:06 -0600 Subject: fixed in Feb 2005 Message-ID: <20050120104306-0600@page.axiom-developer.org> Status: open => closed
axiomD(0^z, z)
(1) |
Produced:
>> Error detected within library code: Invalid argument
Of course, 0 is expected.
@@ -405,7 +417,10 @@ iipow l == ipow l if F has ElementaryFunctionCategory then - dvpow2 l == log(first l) * first(l) ** second(l) + dvpow2 l == if zero?(first l) then + 0 + else + log(first l) * first(l) ** second(l) evaluate(opfact, iifact)$BasicOperatorFunctions1(F) evaluate(oppow, iipow)
Martin