You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Op_Tame:=proc(WOp::list(list))
local parity,first,i,t,Wterm:
if nops(WOp)=0 then return 0 fi:
for i to nops(WOp) do
Wterm:=WOp[i][2]:
parity:=0:
for t in Wterm do
if t in [ Xspace_Pi, Xspace_PiPi2, Xspace_PiPi4 ] then
return false:
fi:
od:
od:
true:
end:
The incorrect line is:
if nops(WOp)=0 then return 0 fi:
The correction is:
if nops(WOp)=0 then return true fi:
The text was updated successfully, but these errors were encountered:
See:
acm16/versions/version-1.4/src/maple/acm1.4.mpl
Line 3400 in 10920ca
The incorrect line is:
The correction is:
The text was updated successfully, but these errors were encountered: