SEATC 0.2.22 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/Automaton Analyzer.rb +4 -0
- metadata +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 7419f9dd9400746008a5a6a264a9f759a22f8e36
         | 
| 4 | 
            +
              data.tar.gz: ad0d524767ac316c9d11ae69ae158ed6cfac6f52
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 2706d7df8724449235574446e8e3fb215890273d5f263a3887a340867e82215fc7e40b1a1f2572b00cd5d5bfc7704cd5feedc38f22ad7648b04a855565fb253f
         | 
| 7 | 
            +
              data.tar.gz: b52a390a41d783fcb7b8b5d2023823f38b62eeafbf1b2bfbd3c2ff9f4999867a33609b1aca06a255e3ad6227fca1e0776a428fd087d2ecee00f66a6fc1a73422
         | 
    
        data/lib/Automaton Analyzer.rb	
    CHANGED
    
    | @@ -161,6 +161,10 @@ class AutomatonAnalyzer | |
| 161 161 | 
             
            			to = readTransInt(modified)
         | 
| 162 162 | 
             
            			counter = counter + 1
         | 
| 163 163 | 
             
            			modified = lines[counter]
         | 
| 164 | 
            +
            			while modified.include? "control"
         | 
| 165 | 
            +
            				counter = counter + 1
         | 
| 166 | 
            +
            				modified = lines[counter]
         | 
| 167 | 
            +
            			end
         | 
| 164 168 | 
             
            			modified.slice! "\t\t\t<read>"
         | 
| 165 169 | 
             
            			trans = modified[0]
         | 
| 166 170 | 
             
            			states[from].addTrans(trans, to)
         |