All with simp=false.
x-0; should return x-0 but the output is x+0
x-0.0; should return x-0.0 but the output is x+-0.0
x*-0.0; should return x(-0.0) but the output is x-0.0
These three problems only occur with zero. For all other numbers the output seems to be as expected.
All with simp=false. x-0; should return x-0 but the output is x+0 x-0.0; should return x-0.0 but the output is x+-0.0 x*-0.0; should return x(-0.0) but the output is x-0.0
These three problems only occur with zero. For all other numbers the output seems to be as expected.