Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
br-verification-tool
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fg-bks
br-verification-tool
Commits
1d8b6477
Commit
1d8b6477
authored
5 years ago
by
Jonas Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Java doc for Verifier Type
parent
bfc83bb5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dmn-verifier-app/src/main/java/de/unikoblenz/fgbks/dmn/core/models/VerifierType.java
+27
-0
27 additions, 0 deletions
...ava/de/unikoblenz/fgbks/dmn/core/models/VerifierType.java
with
27 additions
and
0 deletions
dmn-verifier-app/src/main/java/de/unikoblenz/fgbks/dmn/core/models/VerifierType.java
+
27
−
0
View file @
1d8b6477
...
...
@@ -16,53 +16,80 @@ import org.camunda.bpm.dmn.engine.DmnDecision;
import
org.slf4j.LoggerFactory
;
public
enum
VerifierType
{
/** Detecting rules which have an identical input, i.e. are redundant. */
Identical
(
"Checking for identical rules."
,
IdenticalVerifier
.
class
,
true
,
true
,
false
),
/**
* Detecting individual rules which are subsumed by other rules, i.e. they are not necessary. For
* example, rules containing wildcards often render more specific rules unnecessary due to
* subsumption.
*/
Subsumption
(
"Checking for rules, which subsume other rules."
,
SubsumptionVerifier
.
class
,
true
,
true
,
false
),
/**
* Detecting rules which are not identical, but still semantically equivalent. Here, our tool can
* verify if there exist multiple rules which use synonyms as inputs and are therefore equivalent,
* based on synonym relations via Wordnet.
*/
Equivalent
(
"Checking for semantically equivalent rules."
,
EquivalentVerifier
.
class
,
true
,
false
,
false
),
/** Detecting whether there are any overlaps in rule conditions. */
Overlap
(
"Checking for overlapping rules."
,
OverlappingVerifier
.
class
,
true
,
true
,
false
),
/**
* Detecting whether there are any missing business rules, i.e. if there are rules missing for
* expected inputs.
*/
Missing
(
"Checking for missing rules."
,
MissingVerifier
.
class
,
true
,
false
,
false
),
/** Checking wether ranges can be combined to simplify decision tables. */
PartialReduction
(
"Checking for partial reduction of rules (combination)."
,
PartialReductionVerifier
.
class
,
true
,
false
,
false
),
/**
* Detecting rules which will always be activated together, but have differing or contradicting
* conclusions. For example, rules which will be activated together must not yield that a customer
* is both credit worthy, and not creditworthy, as this is logically inconsistent.
*/
Interdeterminism
(
"Checking for rules that are activated together but have different conclusions."
,
InterdeterminismVerifier
.
class
,
false
,
false
,
false
),
/** Same as {@link VerifierType#Identical}, including a multi table view. */
MultiTableIdentical
(
"Checking for identical rules in multiple tables (identical outcome column)."
,
MultiTableIdenticalVerifier
.
class
,
true
,
true
,
true
),
/** Same as {@link VerifierType#Overlap}, including a multi table view. */
MultiTableOverlapping
(
"Checking for overlapping rules in multiple tables (identical outcome column)."
,
MultiTableOverlappingVerifier
.
class
,
true
,
true
,
true
),
/** Same as {@link VerifierType#Subsumption}, including a multi table view. */
MultiTableSubsumption
(
"Checking for subsumptions in multiple tables (identical outcome column)."
,
MultiTableSubsumptionVerifier
.
class
,
true
,
true
,
true
),
/** Same as {@link VerifierType#Equivalent}, including a multi table view. */
MultiTableEquivalent
(
"Checking for equivalent rules in multiple tables (identical outcome column)."
,
MultiTableEquivalentVerifier
.
class
,
true
,
false
,
true
),
/** Same as {@link VerifierType#PartialReduction}, including a multi table view. */
MultiTablePartialReduction
(
"Checking for partial reduction of rules in multiple tables (identical outcome column)."
,
MultiTablePartialReductionVerifier
.
class
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment