What is the usage of problem input? #435
-
I see that all the examples are setting the input to the task composer problem with their composite instruction (i.e. the move they want to plan):
But, in the code for the task nodes (example MinLengthTask) the instruction is read from the I therefore assumed that the What then is the purpose of the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The input should be the input to the task composer pipeline and the first task in the pipeline should process this input and populate the data storage and all other tasks should interface with the data storage. This provides a clean separation between the input data to the pipeline and the data generated within the pipeline. The plan is to remove the data storage object as an input when running a pipeline to avoid the confusion that you pointed out. |
Beta Was this translation helpful? Give feedback.
The input should be the input to the task composer pipeline and the first task in the pipeline should process this input and populate the data storage and all other tasks should interface with the data storage. This provides a clean separation between the input data to the pipeline and the data generated within the pipeline. The plan is to remove the data storage object as an input when running a pipeline to avoid the confusion that you pointed out.