Changeset 118 for trunk/CrossPare/src/de


Ignore:
Timestamp:
06/02/16 17:02:00 (8 years ago)
Author:
sherbold
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java

    r115 r118  
    211211    private double calculateReviewEffort(Instances testdata, Classifier classifier) { 
    212212 
     213        // attribute in the JURECZKO data and default 
    213214        Attribute loc = testdata.attribute("loc"); 
    214215        if (loc == null) { 
     216            // attribute in the NASA/SOFTMINE/MDP data 
    215217            loc = testdata.attribute("LOC_EXECUTABLE"); 
    216218        } 
    217219        if (loc == null) { 
     220            // attribute in the AEEEM data 
    218221            loc = testdata.attribute("numberOfLinesOfCode"); 
     222        } 
     223        if (loc == null) { 
     224            // attribute in the RELINK data 
     225            loc = testdata.attribute("CountLineCodeExe"); 
    219226        } 
    220227        if( loc == null ) { 
Note: See TracChangeset for help on using the changeset viewer.