# File actiontables.rb, line 264
  def printConflicts
    if isConflictfree 
      return "Der Automat ist konfliktfrei."
    else
      confStr = String.new
      @conflictArray.each { |conflict|
        confStr += conflict +", "
      }
      return confStr[0 .. -3] 
     end
  end