Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
=======
History
=======
2025.7.23: Bugfix: options not properly set if the loop is in a subflowchart
* The options of the steps in the loop were not set correctly if the loop was in a
subflowchart in e.g. a substep step or training step.

2025.5.15: Improved and added to loops over tables
* Added a 'between' operator to filter rows of tables.
* Ensured the correct types of variables in the rows of a table, fixing an issues
Expand Down
14 changes: 14 additions & 0 deletions loop_step/loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@ def version(self):
"""The semantic version of this module."""
return loop_step.__version__

@property
def all_options(self):
"""The complete set of all options."""
return self._all_options

@all_options.setter
def all_options(self, value):
self._all_options = value
# and set for the subnodes
node = self.loop_node()
while node is not None and node != self:
node.all_options = value
node = node.next()

@property
def iter_format(self):
if self._loop_length is None:
Expand Down
Loading