Skip to content
Snippets Groups Projects
  1. Feb 07, 2022
  2. Feb 05, 2022
  3. Feb 03, 2022
  4. Jan 26, 2022
  5. Jan 12, 2022
  6. Jan 10, 2022
  7. Dec 05, 2021
    • Tomáš Pecka's avatar
      algo: Fix AutomataConcatenation when first automaton has a word of len 1 · 0fb7a684
      Tomáš Pecka authored
      The algorithm, taken from BI-AAG course @ FIT CTU did not work
      correctly when first automaton accepts a word of length 1.
      
      There are two bugs. First, the set of final states was wrong. This was
      the easy part to spot.
      Second, we sometimes miss some transitions.
      
      Consider these two automata:
       DFA a b
       ><A B -
        <B - -
      
       DFA a b
       ><C - -
      
      The algorithm would result in this:
       DFA a   b
       ><S B   C
         A B|C -
         B -   -
        <C -   C
      
      Which is of course wrong because the first automaton accepts "a + #E"
      and the second one accepts a language of "b*". However, the result
      doesn't accept words from neither "a" nor "ab*" which is in language
      "(a+#E)b*".
      
      The problem is that for every transition in the first automaton that
      leads to a final state we create a new transition to an initial state of
      the second automaton. This effectively says that "ok, we are done with
      first automaton, we would accept. Let's continue from the initial state
      of the second automaton".
      Also, when we create a new initial state, we *only* copy transitions from
      both initial states there. But if the word is of length 1 and is to be
      accepted by the first automaton, we are missing this "transition to second
      automaton".
      In our example above, we need to add a transition (S, a) -> C and it's
      fine.
      Unverified
      0fb7a684
  8. Nov 23, 2021
  9. Oct 15, 2021
  10. Mar 25, 2021
  11. Mar 08, 2021
  12. Jan 31, 2021
    • Tomáš Pecka's avatar
      algo: Fix AutomatonIteration wrong output · d7d2f1a3
      Tomáš Pecka authored
      Algorithm automaton::transform::AutomatonIteration resulted in wrong
      output when the input automaton had a transition from the initial state to a
      final state.
      If such transitions exists, we must also add a transition from the new
      initial state to the old initial state in the new automata.
      
      Added a test case for this particular case.
      
      Closes #211
      Unverified
      d7d2f1a3
    • Tomáš Pecka's avatar
      algo: Split and clarify tests for FA iteration algorithms · 247dc3ec
      Tomáš Pecka authored
      The tests for iteration were "messy". It was not clear what are they
      doing and also we tested two algorithms in one test case.
      
      Split those algorithms and make them clear -- test only for expected
      output.
      Unverified
      247dc3ec
  13. Nov 29, 2020
  14. Nov 28, 2020
    • Jan Trávníček's avatar
      algo: redesign NPDTA run · 6256b0a7
      Jan Trávníček authored
      I redesigned the algorithm to make it similar to NPDA run implementation, most
      importantly to handle cycles, also not even the very basic test that I
      introduced didn't pass.
      
      Additionaly, the graphStructuredStacks used to track the pushdown store and output were
      incorrectly parametrized with InputSymbolType instead of PushdownStoreSymbolType
      and OutputSymbolType.
      6256b0a7
    • Jan Trávníček's avatar
      algo: add implementation of NPDA run · 9b9a2ee7
      Jan Trávníček authored
      NPDA execution through BFS-like simulation. Only exposed via Accept algo.
      9b9a2ee7
  15. Nov 27, 2020
    • Jan Trávníček's avatar
      algo: fix bottom up grammar to automaton conversion · 264f9a28
      Jan Trávníček authored
      The algorithm generated rules of the automaton with the top of the pushdown
      store symbol on the right, which is according to the algorithm, however, the
      representation of PDAs and every PDA processing algorithm assumes the top of the
      pushdown store is on the left.
      264f9a28
  16. Aug 01, 2020
  17. Mar 08, 2020
  18. Nov 13, 2019
  19. Sep 16, 2019
  20. Jul 11, 2019
  21. Jun 17, 2019
  22. Jun 03, 2019
  23. May 29, 2019
  24. May 20, 2019
Loading