RM5 precondition and postcondition definition
radone
New Altair Community Member
I have two classes MyOperator and MyOperatorChain (the first exends Operator and the second OperatorChain .
When MyOperator is used standalone - everything is OK and it marks problems with types.
The problem is, when the MyOperator is placed into MyOperatorChain. I must have forgot something in my code because the operator does not report any errors and also the output port is not colored by any type until the RM process is executed.
MyOperator (which extends Operator) has the following rules defined:
radone
When MyOperator is used standalone - everything is OK and it marks problems with types.
The problem is, when the MyOperator is placed into MyOperatorChain. I must have forgot something in my code because the operator does not report any errors and also the output port is not colored by any type until the RM process is executed.
MyOperator (which extends Operator) has the following rules defined:
MyOperatorChain (which extends OperatorChain) has the following rules defined:
protected InputPort inImg = getInputPorts().createPort("MyIOObject");
protected OutputPort outExSet = getOutputPorts().createPort("ExampleSet");
public MyOperator(OperatorDescription description) {
super(description);
inImg.addPrecondition(new SimplePrecondition(inImg, new MetaData(MyIOObject.class)));
getTransformer().addRule(new GenerateNewMDRule(outExSet, ExampleSet.class));
}
Any help / suggestions would be really appreciated.
private InputPort imgIn = getInputPorts().createPort("myIO");
private OutputPortExtender innerOut = new OutputPortExtender("window", getSubprocess(0).getInnerSources());
protected InputPortExtender innerIn = new InputPortExtender("example set",getSubprocess(0).getInnerSinks(),
new MetaData(ExampleSet.class), true);
private OutputPort exsOut = getOutputPorts().createPort("example set");
public FeatureExtractionOperator(OperatorDescription description) throws OperatorException {
super(description, "Executed process");
innerIn.start();
innerOut.start();
imgIn.addPrecondition(new SimplePrecondition(imgIn, new MetaData(MyIOObject.class)));
getTransformer().addRule(new OneToManyPassThroughRule(imgIn, innerOut.getManagedPorts()));
getTransformer().addGenerationRule(exsOut, ExampleSet.class);
}
radone
0
Answers
-
Hi there,
Did you get Sebastian's paper from the RM shop?
0 -
Yes, I have bought the white paper about extending RM 5. However, it seems that I don't fully understand the cause of the problem.0
-
Cool, check out page 14, Does that help?
Hope so!
0 -
Hi,
apart from page 14, I recommend page 21 :-)
You are missing a SubprocessTransformationRule. Rules are never evaluated in your subprocess.
Cheers,
Simon0 -
Thank you very much. It helped :-)
For anyone dealing with the same problem - addinggetTransformer().addRule(new SubprocessTransformRule(getSubprocess(0)));
to constructor of MyOperatorChain will fix the problem.0