- Timestamp:
- 07/16/12 13:17:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchCore/src/de/ugoe/cs/eventbench/coverage/CoverageCalculatorProcess.java
r331 r420 160 160 double weight = 0.0; 161 161 for (List<? extends Event<?>> subSeq : containedSubSeqs) { 162 weight += subSeqWeights.get(subSeq); 162 Double curWeight = subSeqWeights.get(subSeq); 163 if( curWeight!=null ) { 164 weight += curWeight; 165 } 163 166 } 164 167 return weight;
Note: See TracChangeset
for help on using the changeset viewer.