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

Fix output data fix

parent 75b8ed97
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ public class Text extends AbstractStringValueObject { ...@@ -24,7 +24,7 @@ public class Text extends AbstractStringValueObject {
@Override @Override
protected Integer getMaxLength() { protected Integer getMaxLength() {
return 1000; return 5000;
} }
@Override @Override
......
...@@ -13,6 +13,7 @@ import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnDecision; ...@@ -13,6 +13,7 @@ import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnDecision;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnDecisionTable; import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnDecisionTable;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnInputColumn; import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnInputColumn;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnInputValue; import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnInputValue;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnOutputValue;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnRule; import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnRule;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.utils.VDmnFunctions; import de.unikoblenz.fgbks.core.dmn.domain.vdmn.utils.VDmnFunctions;
import de.unikoblenz.fgbks.core.dmn.verification.result.VerificationResultEntry.VerificationClassification; import de.unikoblenz.fgbks.core.dmn.verification.result.VerificationResultEntry.VerificationClassification;
...@@ -161,6 +162,12 @@ public class PartialReductionVerifier extends AbstractVerifier { ...@@ -161,6 +162,12 @@ public class PartialReductionVerifier extends AbstractVerifier {
fixActionBuilder.addValue( fixActionBuilder.addValue(
inColumns.get(i).getInputId().getValue(), boundaries.get(i).getParsedText()); inColumns.get(i).getInputId().getValue(), boundaries.get(i).getParsedText());
} }
List<VDmnOutputValue> outputValues = clusterRules.get(0).getVDmnOutputValues();
for (int i = 0; i < outputValues.size(); i++) {
fixActionBuilder.addValue(
outputValues.get(i).getVDmnOutputColumn().getOutputId().getValue(),
outputValues.get(i).getText().getValue());
}
Action.Builder fixActionBuilder2 = Action.Builder fixActionBuilder2 =
Action.getBuilder().withActionScope(ActionScope.RULE).withActionType(ActionType.DELETE); Action.getBuilder().withActionScope(ActionScope.RULE).withActionType(ActionType.DELETE);
fixActionBuilder2.addValue( fixActionBuilder2.addValue(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment