From: dgildea <dg...@us...> - 2025-08-18 15:19:10
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Maxima CAS". The branch, master has been updated via 350f069f401a51846a352127a6fa316e544f2b94 (commit) from 0180fc0c55b281acb60795e458e3f3ebdf74a1b6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 350f069f401a51846a352127a6fa316e544f2b94 Author: Dan Gildea <dgildea> Date: Mon Aug 18 11:17:58 2025 -0400 Need to assume p > 0 The test for `specint(kbateman[0](t)*exp(-p*t),t)` needs `assume(p>0)` as well as `assume(t>0)`. diff --git a/tests/rtesthyp.mac b/tests/rtesthyp.mac index cb727277c..6c4a284ce 100644 --- a/tests/rtesthyp.mac +++ b/tests/rtesthyp.mac @@ -1594,7 +1594,7 @@ a^v*gamma(v+1)/((p-b)*(p-b+a)^v*v); * kbateman[0](t) -> 1/(p+1) * */ -(assume(t>0),0); +(assume(t>0,p>0),0); 0; radcan(specint(kbateman[0](t)*exp(-p*t),t)); 1/(p+1); ----------------------------------------------------------------------- Summary of changes: tests/rtesthyp.mac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Maxima CAS |