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
37e72335
Commit
37e72335
authored
5 years ago
by
Dr. Carl Corea
Browse files
Options
Downloads
Patches
Plain Diff
Update VerifierType.java
parent
cb169578
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
+7
-7
7 additions, 7 deletions
...ava/de/unikoblenz/fgbks/dmn/core/models/VerifierType.java
with
7 additions
and
7 deletions
dmn-verifier-app/src/main/java/de/unikoblenz/fgbks/dmn/core/models/VerifierType.java
+
7
−
7
View file @
37e72335
...
...
@@ -23,7 +23,7 @@ public enum VerifierType {
true
,
true
,
false
),
Equivalent
(
"Checking for s
ynonyms in column
s."
,
EquivalentVerifier
.
class
,
true
,
false
,
false
),
Equivalent
(
"Checking for s
emantically equivalent rule
s."
,
EquivalentVerifier
.
class
,
true
,
false
,
false
),
Overlap
(
"Checking for overlapping rules."
,
OverlappingVerifier
.
class
,
true
,
true
,
false
),
Missing
(
"Checking for missing rules."
,
MissingVerifier
.
class
,
true
,
false
,
false
),
PartialReduction
(
...
...
@@ -33,37 +33,37 @@ public enum VerifierType {
false
,
false
),
Interdeterminism
(
"
Identical, Overlapping or Subsumption with
different conclusions."
,
"
Checking for rules that are activated together but have
different conclusions."
,
InterdeterminismVerifier
.
class
,
false
,
false
,
false
),
MultiTableIdentical
(
"Checking for identical rules in multiple tables
with
identical outcome column."
,
"Checking for identical rules in multiple tables
(
identical outcome column
)
."
,
MultiTableIdenticalVerifier
.
class
,
true
,
true
,
true
),
MultiTableOverlapping
(
"Checking for overlapping rules in multiple tables
with
identical outcome column."
,
"Checking for overlapping rules in multiple tables
(
identical outcome column
)
."
,
MultiTableOverlappingVerifier
.
class
,
true
,
true
,
true
),
MultiTableSubsumption
(
"Checking for subsumptions in multiple tables
with
identical outcome column."
,
"Checking for subsumptions in multiple tables
(
identical outcome column
)
."
,
MultiTableSubsumptionVerifier
.
class
,
true
,
true
,
true
),
MultiTableEquivalent
(
"Checking for
synonyms in column
s in multiple tables
with
identical outcome column."
,
"Checking for
equivalent rule
s in multiple tables
(
identical outcome column
)
."
,
MultiTableEquivalentVerifier
.
class
,
true
,
false
,
true
),
MultiTablePartialReduction
(
"Checking for partial reduction of rules
(combination)
in multiple tables
with
identical outcome column."
,
"Checking for partial reduction of rules in multiple tables
(
identical outcome column
)
."
,
MultiTablePartialReductionVerifier
.
class
,
true
,
false
,
...
...
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