From: rtoy <rt...@us...> - 2025-08-14 23:56:15
|
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 0180fc0c55b281acb60795e458e3f3ebdf74a1b6 (commit) from da462c342d571c44ed5f81fe2b0086a067c238c9 (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 0180fc0c55b281acb60795e458e3f3ebdf74a1b6 Author: Raymond Toy <toy...@gm...> Date: Thu Aug 14 16:54:19 2025 -0700 Need to assume t > 0 The test for `specint(kbateman[0](t)*exp(-p*t),t)` asks if t > 0. Add `assume(t>0)` so that the test doesn't hang waiting for an answer. diff --git a/tests/rtesthyp.mac b/tests/rtesthyp.mac index 31bbddcbd..cb727277c 100644 --- a/tests/rtesthyp.mac +++ b/tests/rtesthyp.mac @@ -1594,6 +1594,8 @@ a^v*gamma(v+1)/((p-b)*(p-b+a)^v*v); * kbateman[0](t) -> 1/(p+1) * */ +(assume(t>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, 2 insertions(+) hooks/post-receive -- Maxima CAS |