Hello all,
I've noticed that something has changed to the type of sqrt in Maple 15, which breaks backward compatibility...
In Maple 14, we have
> type(sqrt,procedure); true
> type(sqrt,`module`); false
> eval(sqrt); proc(x::algebraic, f::identical(symbolic)) ... end proc
while in Maple 15, we have
> type(sqrt,procedure); false
> type(sqrt,`module`); true