rtoy / maxima

A Clone of Maxima's repo
Other
0 stars 0 forks source link

don't work untellrat #2584

Open rtoy opened 2 months ago

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-06 16:05:49 Created by lvch on 2012-05-03 15:39:27 Original: https://sourceforge.net/p/maxima/bugs/2402


Function: untellrat (x_1, …, x_n) Don't removes tellrat properties from x_1, …, x_n.

Example: (%i1) tellrat(x-1); (%o1) [x-1] (%i2) untellrat(x-1); (%o2) [x-1] (%i3) tellrat(); (%o3) [x-1]

Maxima version: 5.26.0 Maxima build date: 22:48 1/15/2012 Host type: i686-pc-mingw32 Lisp implementation type: GNU Common Lisp (GCL) Lisp implementation version: GCL 2.6.8

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-06 16:05:49 Created by rtoy on 2012-05-03 16:03:25 Original: https://sourceforge.net/p/maxima/bugs/2402/#d7f4


I think it's untellrat(x), not untellrat(x-1).

rtoy commented 2 months ago

Imported from SourceForge on 2024-07-06 16:05:53 Created by lvch on 2012-06-18 07:49:46 Original: https://sourceforge.net/p/maxima/bugs/2402/#21ca


(%i1) tellrat(x+y); (%o1) [y + x] (%i2) untellrat(x+y); (%o2) [y + x] (%i3) untellrat(x); (%o3) [y + x] (%i4) untellrat(y); (%o4) []