From 1067eb8cd4b763b13953311201542ed2f6c9bcc3 Mon Sep 17 00:00:00 2001 From: Paul Saxe Date: Mon, 3 Jun 2024 13:08:55 -0400 Subject: [PATCH] Fixed bug with options in the subflowchart --- HISTORY.rst | 4 ++++ diffusivity_step/diffusivity.py | 1 + 2 files changed, 5 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 10db99a..52a58a5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ ======= History ======= +2024.6.3 -- Bugfix: handling of options for subflowchart + * Fixed a bug where the options for the subflowchart were not being parsed + correctly. + 2024.5.26 -- Updated for new task handling * The new handling of running tasks such as LAMMPS required a small change in the code. diff --git a/diffusivity_step/diffusivity.py b/diffusivity_step/diffusivity.py index 71f2a9c..a084d69 100644 --- a/diffusivity_step/diffusivity.py +++ b/diffusivity_step/diffusivity.py @@ -550,6 +550,7 @@ def create_parser(self): ) # Now need to walk through the steps in the subflowchart... + self.subflowchart.reset_visited() node = self.subflowchart.get_node("1").next() while node is not None: node = node.create_parser()