Admin message

WARNING! Gitlab maintenance operation scheduled for Monday, 20 April between 12:00 and 14:00 (CET). During this time window, short service interruptions (less than 5 minutes) may occur. Thank you in advance for your understanding.

Incorrect complexity counting of certain IF-ELSE statements in the BASOP code

In the example below, the complexity of the IF() statement within fcn2() is not accounted for due to limitations in the logic of the incrIf() function:

void fcn1() {
    push_wmops("fcn1");
    IF ( any_condition_leading_to_false ) {
        ...
    } ELSE {
        fcn2( ... );
    }
    pop_wmops();
    return;
}

void fcn2() {
    IF ( ... ) {
        ...
    } ELSE {
        ...
    }
    return;
}
Assignee Loading
Time tracking Loading