summaryrefslogtreecommitdiff
path: root/tool/lrama/lib/lrama/counterexamples/production_path.rb
blob: d7db68851841d144471d27c1d0ecb5c6626db987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Lrama
  class Counterexamples
    class ProductionPath < Path
      def type
        :production
      end

      def transition?
        false
      end

      def production?
        true
      end
    end
  end
end