SSK

Results 9 issues of SSK

I was going through the work flow of repairnator, and it does generate the final patch. However if we have to generate hints about the issue in the code instead...

package gcd; public class GCD { public int computegcd(int a, int b) { if (a == 0) { return a; } while (b != 0) if (a > b) a...

Is it mandatory that i should have JDk8 for astor.??? I have JDK 14, and the astor compilation failed with the below error Failed to execute goal on project astor:...

Are there any publically available dataset related to programming assignments in Java to test the APR systems? I know about Introclass and QuixBugs.

Has anyone used Evosuite generated testcases with ASTOR ? To explain the task , assume I have a buggy program P1.java which I would like to fix with Astor ....

Are the current APR tools effective in fixing the bugs in the programming assignments submitted by the students? https://www.shinhwei.com/tutoring.pdf paper suggests that repair hints don't seem to be of much...

The below code for GCD has a bug as **return b** is commented. For a.gcd(0, 5) this will run infinite loop **ASTOR on jgenprog cannot fix it** . The code...

Can codeGen detect an error in a code?

Can CodeT5 detect bug in the Python or Java code?