Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
conditional iterations for shells
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn authored and behackl committed Jan 29, 2015
1 parent b348d14 commit 520bb00
Showing 1 changed file with 55 additions and 8 deletions.
63 changes: 55 additions & 8 deletions src/sage/data_structures/mutable_poset.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,9 @@ def covers(self, shell, reverse=False):
return covers


def _iter_depth_first_visit_(self, marked, reverse=False, key=None):
def _iter_depth_first_visit_(self, marked,
reverse=False, key=None,
condition=None):
r"""
Helper function for :meth:`iter_depth_first`.
Expand All @@ -769,6 +771,12 @@ def _iter_depth_first_visit_(self, marked, reverse=False, key=None):
the direct successors of a shell (used in case of a
tie). If this is ``None``, no sorting occurs.
- ``condition`` -- (default: ``None``) a function mapping a
shell to ``True`` (include in iteration) or ``False`` (do
not include). ``None`` is equivalent to a function returning
always ``True``. Note that the iteration does not go beyond a
not shell included shell.
OUTPUT:
An iterator.
Expand All @@ -783,6 +791,9 @@ def _iter_depth_first_visit_(self, marked, reverse=False, key=None):
sage: list(P.oo._iter_depth_first_visit_(marked, True))
[oo, 42, 5, null]
"""
if (condition is not None and
not self.is_special() and not condition(self)):
return
if self in marked:
return
marked.add(self)
Expand All @@ -791,11 +802,12 @@ def _iter_depth_first_visit_(self, marked, reverse=False, key=None):
if key is not None:
S = sorted(S, key=key)
for shell in S:
for e in shell._iter_depth_first_visit_(marked, reverse, key):
for e in shell._iter_depth_first_visit_(marked, reverse,
key, condition):
yield e


def iter_depth_first(self, reverse=False, key=None):
def iter_depth_first(self, reverse=False, key=None, condition=None):
r"""
Iterates over all shells in depth first order.
Expand All @@ -809,6 +821,12 @@ def iter_depth_first(self, reverse=False, key=None):
the direct successors of a shell (used in case of a
tie). If this is ``None``, no sorting occurs.
- ``condition`` -- (default: ``None``) a function mapping a
shell to ``True`` (include in iteration) or ``False`` (do
not include). ``None`` is equivalent to a function returning
always ``True``. Note that the iteration does not go beyond a
not shell included shell.
OUTPUT:
An iterator.
Expand All @@ -834,12 +852,17 @@ def iter_depth_first(self, reverse=False, key=None):
[null, (1, 1), (1, 2), (1, 3), (4, 4), oo, (2, 2), (2, 1)]
sage: list(P.oo.iter_depth_first(reverse=True, key=repr))
[oo, (4, 4), (1, 3), (1, 2), (1, 1), null, (2, 2), (2, 1)]
sage: list(P.null.iter_depth_first(
....: condition=lambda s: s.element[0] == 1))
[null, (1, 1), (1, 2), (1, 3)]
"""
marked = set()
return self._iter_depth_first_visit_(marked, reverse, key)
return self._iter_depth_first_visit_(marked, reverse, key, condition)


def _iter_topological_visit_(self, marked, reverse=False, key=None):
def _iter_topological_visit_(self, marked,
reverse=False, key=None,
condition=None):
r"""
Helper function for :meth:`iter_topological`.
Expand All @@ -855,6 +878,12 @@ def _iter_topological_visit_(self, marked, reverse=False, key=None):
the direct successors of a shell (used in case of a
tie). If this is ``None``, no sorting occurs.
- ``condition`` -- (default: ``None``) a function mapping a
shell to ``True`` (include in iteration) or ``False`` (do
not include). ``None`` is equivalent to a function returning
always ``True``. Note that the iteration does not go beyond a
not shell included shell.
OUTPUT:
An iterator.
Expand All @@ -869,19 +898,23 @@ def _iter_topological_visit_(self, marked, reverse=False, key=None):
sage: list(P.null._iter_topological_visit_(marked, True))
[oo, 42, 5, null]
"""
if (condition is not None and
not self.is_special() and not condition(self)):
return
if self in marked:
return
marked.add(self)
S = self.predecessors(reverse)
if key is not None:
S = sorted(S, key=key)
for shell in S:
for e in shell._iter_topological_visit_(marked, reverse, key):
for e in shell._iter_topological_visit_(marked, reverse,
key, condition):
yield e
yield self


def iter_topological(self, reverse=False, key=None):
def iter_topological(self, reverse=False, key=None, condition=None):
r"""
Iterates over all shells in topological order.
Expand All @@ -895,6 +928,12 @@ def iter_topological(self, reverse=False, key=None):
the direct successors of a shell (used in case of a
tie). If this is ``None``, no sorting occurs.
- ``condition`` -- (default: ``None``) a function mapping a
shell to ``True`` (include in iteration) or ``False`` (do
not include). ``None`` is equivalent to a function returning
always ``True``. Note that the iteration does not go beyond a
not shell included shell.
OUTPUT:
An iterator.
Expand Down Expand Up @@ -973,9 +1012,17 @@ def iter_topological(self, reverse=False, key=None):
[null, (1, 1)]
null
[null]
::
sage: def C(shell):
....: return shell.element[0] == 1
sage: list(P.null.iter_topological(
....: reverse=True, condition=lambda s: s.element[0] == 1))
[(1, 3), (1, 2), (1, 1), null]
"""
marked = set()
return self._iter_topological_visit_(marked, reverse, key)
return self._iter_topological_visit_(marked, reverse, key, condition)


# *****************************************************************************
Expand Down

0 comments on commit 520bb00

Please sign in to comment.