Skip to content

Commit

Permalink
exclude cccd&java combination
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Bogicevic committed Sep 11, 2014
1 parent 6258957 commit 76128da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions 4_toolchain/CloneListCruncher/control/Exporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;

import util.Log;
Expand Down Expand Up @@ -141,6 +138,10 @@ private void exportRecallValues() {
// write the recall values to the recall cvs-file;
for (String tool : TOOLS) {
for (String language : LANGUAGES) {
// abort if combination has to be excluded
if (tool.equals("cccd") && language.equals("java")) {
continue;
}
for (int solutionSet = 1; solutionSet <= MAXSOLUTIONSET; solutionSet++) {
for (int fullVar = 0; fullVar <= 1; fullVar++) {
// inner loop changes between full=true (full) and full=false (partial)
Expand Down

0 comments on commit 76128da

Please sign in to comment.