Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 843 Bytes

File metadata and controls

35 lines (23 loc) · 843 Bytes

MoXI Sort Checker

NOTE: This version requires a modified version of Yices with the following functions in yices_extensions.h moved to yices.h:

  • yices_type_variable
  • yices_type_constructor
  • yices_type_macro
  • yices_instance_type
  • yices_get_macro_by_name

A reference sort checker for MoXI. The following programs are required:

  • C compiler
  • make
  • gperf
  • Python 3.9 or newer
  • Yices2

To build, run

make

The generated program moxisc takes a single file as input

moxisc <filename>

To run the test suite, run

python3 test/test.py

We use Yices for term management and therefore sort checking of terms.

Much of the internals are adapted from Yices, including parsing. See their source code (especially the SMTLIB2 sections) for reference.