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

Commit

Permalink
seealso-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Apr 7, 2015
1 parent 06842f6 commit cdcd3c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sage/combinat/finite_state_machine.py
Expand Up @@ -10010,7 +10010,9 @@ def with_output(self, word_out_function=None):
:meth:`.input_projection`,
:meth:`.output_projection`,
:class:`Transducer`.
:class:`Transducer`,
:meth:`transducers.map()
<sage.combinat.finite_state_machine_generators.TransducerGenerators.map>`.
TESTS::
Expand Down
5 changes: 5 additions & 0 deletions src/sage/combinat/finite_state_machine_generators.py
Expand Up @@ -328,6 +328,11 @@ def map(self, f, input_alphabet):
[0]
sage: T([-1, 1, 0, 1])
[1, 1, 0, 1]
.. SEEALSO::
:meth:`Automaton.with_output()
<sage.combinat.finite_state_machine.Automaton.with_output>`.
"""
return Transducer(lambda state, input: (0, f(input)),
input_alphabet=input_alphabet,
Expand Down

0 comments on commit cdcd3c0

Please sign in to comment.