Ticket #426 (new enhancement)

Opened 4 years ago

Split parallel assignments into optimisable subsets

Reported by: scoder Owned by: somebody
Priority: minor Milestone: wishlist
Component: Optimization Keywords:
Cc:

Description

In addition to ticket #425, it should be possible to extract a subset of a parallel assignment for optimisation, i.e.

a,b,c = d,c,b

could become

temp = d ; c,b = b,c ; a = temp

thus resulting in a normal assignment and an optimisable swap assignment.

Note: See TracTickets for help on using tickets.