Skip to content
Snippets Groups Projects
Commit 683f044d authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Reset prev version of VerifierType

parent af346f45
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ public enum VerifierType {
false),
Equivalent("Checking for synonyms in columns.", EquivalentVerifier.class, true, false, false),
Overlap("Checking for overlapping rules.", OverlappingVerifier.class, true, true, false),
Missing("Checking for missing rules.", MissingVerifier.class, false, false, false),
Missing("Checking for missing rules.", MissingVerifier.class, true, false, false),
PartialReduction(
"Checking for partial reduction of rules (combination).",
PartialReductionVerifier.class,
......@@ -41,31 +41,31 @@ public enum VerifierType {
MultiTableIdentical(
"Checking for identical rules in multiple tables with identical outcome column.",
MultiTableIdenticalVerifier.class,
false,
true,
true,
true),
MultiTableOverlapping(
"Checking for overlapping rules in multiple tables with identical outcome column.",
MultiTableOverlappingVerifier.class,
false,
true,
true,
true),
MultiTableSubsumption(
"Checking for subsumptions in multiple tables with identical outcome column.",
MultiTableSubsumptionVerifier.class,
false,
true,
true,
true),
MultiTableEquivalent(
"Checking for synonyms in columns in multiple tables with identical outcome column.",
MultiTableEquivalentVerifier.class,
false,
true,
false,
true),
MultiTablePartialReduction(
"Checking for partial reduction of rules (combination) in multiple tables with identical outcome column.",
MultiTablePartialReductionVerifier.class,
false,
true,
false,
true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment