Skip to content
Snippets Groups Projects
verifier.md 6.94 KiB

Verifier

Overview

DRD Modeling Level Verification

Lonely Data Input Verification

Description

Checks for any input data node, if it has no connection to at least one decision table.

Algorithm

doVerification (Definition d) {
    define rL as ResultList
    for each (InputNode i in d.getInputNodes()) {
        if (i.hasNoConnectedDecisionNodes()) {
            add i to rL
        }
    }
    return rL
}

Missing Input Data Verification

Description

Algorithm

TODO

Missing Input Column Verification

Description

Algorithm

TODO

Modeling Level Verification

Predefined Existing Value Verification

Description

TODO

Algorithm

TODO

Predefined Missing Value Verification

Description

TODO

Algorithm

TODO

Empty Output Verification

Description

This verification checks if a output entry is empty.

Algorithm

TODO

Decision Logic Level Verification

Subsumption Verification

Description

TODO

Algorithm

TODO

Partial Reduction Verification

Description

TODO

Algorithm

TODO

Overlapping Verification

Description

TODO

Algorithm

TODO

Missing Rule Verification

Description

TODO

Algorithm

TODO

Identical Business Rule Verification

Description