alphaML version 0.3 Matthew R. Lakin This code is distributed under the terms of the GNU General Public License version 3 - see the LICENSE file in the doc/ directory for more details. See doc/manual.pdf for detailed build instructions. Please send any bug reports or other feedback to alphaml.feedback@googlemail.com. QUICK START GUIDE (WINDOWS): 1) Download the Windows binary distribution and run the executable. QUICK START GUIDE (NON-WINDOWS): 1) Install Objective Caml (version 3.10.2 or greater) and GNU Make (version 3.80 or greater). 2) Compile the ocamlgraph [http://ocamlgraph.lri.fr/] and vec [http://luca.dealfaro.org/Vec-Extensible-Functional-Arrays-for-Ocaml] libraries and install the resultant files in to the default OCaml library directory. 3) Download OCamlMakefile [http://www.ocaml.info/home/ocaml_sources.html] and copy the file into the alphaML source directory. 4) Navigate to the alphaML source directory and do make nc bc to build both native-code and byte-code versions of the interpreter. 5) Run ./aml.native or ./aml.byte to run the relevant version of the interpreter. CHANGELOG: v0.3 - Fixed a bug in the constraint solver for name constraints. v0.2 - Implemented termination checking for constraint problems and fixed bugs in constraint solving and the handling of inductive rules. v0.1a - Fixing a bug which caused the interpreter to crash when an unknown data constructor appeared in a schematic rule. v0.1 - Initial release of alphaML. COPYRIGHT NOTICE: The implementation builds on Andrej Bauer's implementation of Mini-ML, which is Copyright (c) 2008, Andrej Bauer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.