Community
Participate
Working Groups
Created attachment 191870 [details] Source code of the refactoring and a small example (.rar file) This refactoring is used to substitute DO loops by FORALL, when you have only assignments in the loop body. The user selects the loop to be replaced, and if the loop does not meet the requirements to be a FORALL the operation is aborted. Thus it is possible to have a performance gain in the execution of the application if you are using a parallel platform, as the FORALL makes automatic parallelization of execution of the instructions of your body. The source code is attached, as a figure with a small example of using this refactoring (ReplaceDoLoopByForallRefactoring.rar).
Thanks a lot! Can you please confirm that 1. you wrote 100% of the code without incorporating content from elsewhere or relying on the intellectual property of others, 2. you have the right to contribute the code to Eclipse, and 3. you have included the EPL license header in all source files?
(In reply to comment #1) > Thanks a lot! Can you please confirm that > > 1. you wrote 100% of the code without incorporating content from elsewhere or > relying on the intellectual property of others, > > 2. you have the right to contribute the code to Eclipse, and > > 3. you have included the EPL license header in all source files? I confirm that I wrote 100% of the code without incorporating content from elsewhere or relying on the intellectual property of others, and I have the right to contribute the code to Eclipse, and I have included the EPL license header in all source files.
I have committed this to master in order to meet the Juno feature freeze. Code review/testing/string externalization/documentation are pending.
Closing for Juno; documentation pending. Thanks!