GithubHelp home page GithubHelp logo

almazis / aeval Goto Github PK

View Code? Open in Web Editor NEW

This project forked from grigoryfedyukovich/aeval

0.0 0.0 0.0 5.75 MB

AE-solver and Skolemizer

License: Other

Shell 0.09% C++ 19.37% CMake 0.69% Yacc 0.49% SMT 79.24% Python 0.12% C 0.01%

aeval's Introduction

About

A functional synthesis tool based on the Z3 SMT solver. It expects single-invocation specifications over linear integer/real arithmetic, encoded as forall-exists formulas, and aims at generating witnessing Skolem functions for (possibly, many) existentially-quantified variables. See the VMCAI'19 paper for more details.

Installation

Compiles with gcc-7 (on Linux) and clang-900 (on Mac). Assumes preinstalled Gmp (with the --enable-cxx flag) and Boost 1.71 packages.

  • cd aeval ; mkdir build ; cd build
  • cmake ../
  • make to build dependencies (i.e., it needs a particular version of Z3 and installs it automatically)
  • make to build AE-VAL

The binary of AE-VAL can be found in build/tools/aeval/.

Usage

The tool takes as input formulas in SMT-LIB v2, e.g., the following specification for the max function:

(assert (forall ((x1 Int) (x2 Int))
    (exists ((y Int))
        (and (>= y x1) (>= y x2) (or (= y x1) (= y x2))))))

Running aeval --skol max.smt2 yields the realizability result valid and the extracted Skolem for the y variable:

Iter: 2; Result: valid
(define-fun y ((x1 Int)(x2 Int)) Int
    (ite (<= (+ x1 (- x2)) 0) x2 x1))

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.