I assume the faultyLocation.txt contains the indices of faulty lines, but I found that the indices can refer to empty lines.
For example, in abc280_f/Java/42792826/faultyVersion.java, the faultyLocation.txt contains 165, but the 165th line is an empty line (if we index the first line with #1).
163. boolean unite(int u,int v,long c){
164. assert valid(u,v,c);
165.
166. if ((u = root(u)) == (v = root(v)))
167. return false;
Did I miss something or you have a different indexing manner?
I assume the faultyLocation.txt contains the indices of faulty lines, but I found that the indices can refer to empty lines.
For example, in
abc280_f/Java/42792826/faultyVersion.java, thefaultyLocation.txtcontains 165, but the 165th line is an empty line (if we index the first line with #1).Did I miss something or you have a different indexing manner?