==============================================================================
|
|   jhoafparser library (version 1.1.1)
|
|   Java-based parser for the Hanoi Omega Automata Format
|
|   http://automata.tools/hoa/jhoafparser/
=============================================================================

  Copyright (c) 2014-
  Authors:
   * Joachim Klein <klein@tcs.inf.tu-dresden.de>
   * David Mueller <david.mueller@tcs.inf.tu-dresden.de>

 The jhoafparser library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 The jhoafparser library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA


-----------------------------------------------------------------------------
  Quick start
-----------------------------------------------------------------------------

(0) Have a look at the documentation in docs/index.html or at
    http://automata.tools/hoa/jhoafparser/

(1) Compile the library. In this directory, execute
      make

(2) Using the command-line tool:

    ./jhoaf parse automaton.hoa

        Parse the automaton.hoa file and check for errors


    ./jhoaf print automaton.hoa

        Parse the automaton.hoa file and print back the parsed automaton


    ./jhoaf print --resolve-aliases automaton.hoa

        Parse the automaton.hoa file, resolve any aliases and
        print back the parsed automaton

    ./jhoaf help

       Print additional options

 Instead of a file, use - to read from standard input, i.e.,

     tool-that-writes-hoa-to-stdout | ./joaf parse -
