markovmodel / adaptivemd

A python framework to run adaptive Markov state model (MSM) simulation on HPC resources
GNU Lesser General Public License v2.1
18 stars 7 forks source link

Fix execution plan trigger loop #48

Closed thempel closed 7 years ago

thempel commented 7 years ago

After #47, execution plans do not get properly executed and get stuck at the first yield of the used generator. The reason is that the condition of the trigger loop, len(self._finish_conditions) == 0, is not fulfilled except for the case that no job has been finished yet.

thempel commented 7 years ago

Fixed by calling the ExecutionPlan which is automated by project.run(). Closing this.