Main icon indicating copy to clipboard operation
Main copied to clipboard

-- Operator Conversion Problems

Open dormaayan opened this issue 9 years ago • 5 comments

In case of : a-1-4

convert to : a--3

which is of course illegal

dormaayan avatar Nov 18 '16 09:11 dormaayan

Yuk. I did not test thoroughly enough.

yossigil avatar Nov 18 '16 09:11 yossigil

Relates to Issue #848, I close that Issue and move to that issue

dormaayan avatar Nov 19 '16 19:11 dormaayan

We have a problem with this one. Tests fail See if you can attend to it. Unit test is ready but marked @Ignore

yossigil avatar Apr 27 '17 17:04 yossigil

Similar to #1255 , we cannot solve now

yossigil avatar Apr 29 '17 09:04 yossigil

I think this is solvable. It seems the tipper's developer just removed the exression, instead of replacing the infix expression: a-1-4 -> a-[1]-[3] -> a--3 What should be done is replacing a-1 with a, not just deleting 1: a-1-4 -> a[-1]-[3] -> a-3 I may be wrong though...

OriRoth avatar Apr 29 '17 11:04 OriRoth