[sage-devel] SageMath 9.8 beta 4 build questions

2022-11-24 Thread being nobody00
Dear SageMath, SageMath 9.8 beta 4 failed to build on this system: $ uname -a Linux 4.4.0-17763-Microsoft #2268-Microsoft Thu Oct 07 16:36:00 PST 2021 x86_64 x86_64 x86_64 GNU/Linux $ which python3 /usr/bin/python3 $ python3 --version Python 3.10.8 $ ~/sage-9.8/b4/b4.0/local/var/lib/sage/venv-py

[sage-devel] Re: Automaton.language() does not pass **kwargs to FSMProcessIterator

2022-11-24 Thread Lucca Jimenez-Könings
I can also trigger an exception with a different automaton defintion: stateTransitions = {'q0':[('q1', '0')],'q1':[('q1', '1')]} DFA = Automaton(stateTransitions) DFA.state('q1').is_final=True list(DFA.process(['1'],initial_state='q1')) [image: a.png] It's slightly hard to read, but the automaton