Describe the user story this enhancement fulfills
As a researcher, I want the research processes I model using WARIO to make use of performance optimizations, so that I can complete my research quickly.
Describe the expected behavior this enhancement performs
Using asyncio we can implement nodes as co-routines allowing the processing of the graph to run as expected and in a flexible way. Nodes/tasks become scheduled and waited on . Scheduling and executing nodes becomes an act of actually creating tasks that wait for their upstream dependencies to complete before they themselves are able to run. This also allows us to implement other aspec
Describe the testable outcome this enhancement produces
Describe the user story this enhancement fulfills
As a researcher, I want the research processes I model using WARIO to make use of performance optimizations, so that I can complete my research quickly.
Describe the expected behavior this enhancement performs
Using asyncio we can implement nodes as co-routines allowing the processing of the graph to run as expected and in a flexible way. Nodes/tasks become scheduled and waited on . Scheduling and executing nodes becomes an act of actually creating tasks that wait for their upstream dependencies to complete before they themselves are able to run. This also allows us to implement other aspec
Describe the testable outcome this enhancement produces