Skip to content

Commit

Permalink
disable data dependency for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarv committed Dec 11, 2017
1 parent 24574c6 commit e22e4f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/falo.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ groupBy: ENTRY

# store dot files and coverage matrix
# writeTo: DOT
writeTo: DOT,TRACE,COVERAGE,DD_DOT,LINES,COMBINED_DOT
# writeTo: DOT,TRACE,COVERAGE,DD_DOT,LINES,COMBINED_DOT
writeTo: DOT,TRACE,COVERAGE,LINES
# writeTo: DOT,DD_DOT,LINES

format: {class}#{line}
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class DataDependenceGraph {
private static final Logger LOG = new Logger(DataDependenceGraph.class);
private static final String FOLDER = "ddg/";
final List<GraphWriter> writers = new ArrayList<>();

private Map<String, StackItem> lastWrites = new HashMap<>();
private Map<String, StackItem> lastWrites = new ConcurrentHashMap<>();

public DataDependenceGraph() throws IOException {
Target[] targets = Config.getInst().writeTo();
Expand Down

0 comments on commit e22e4f1

Please sign in to comment.