Skip to main content

PolyQEnt is a solver for Polynomial Horn Clauses (PHC).

Project description

PolyQEnt

PolyQEnt is a solver for Polynomial Quantified Entailments (PQE).

Given an input PQE in SMT-LIB format and an optional config file, PolyQEnt finds a valuation of the unknown variables in the input such that all the PQEs are satisfied.

Getting Started

PolyQEnt is written in Python and can be run as a standalone tool or as a Python library. Either way, the input to PolyQEnt is an SMT-LIB instance containing the PQE and an optional config file specifying the theorem and solver to be used.

The tool is tested for Python >=3.9 and requires the installation of:

  • Z3 many package managers provide Z3 as a package. For example, in Ubuntu, Z3 can be installed using apt-get install z3. Otherwise, you can find more information here
  • MathSAT can be downloaded from here.
  • GNU C library glibc and Gnu Multiprecision Library GMP are also required.
  • pysmt python library.

Next, we can install the package using the following command:

pip install polyqent

Experiments

The experiments folder contains the material to run all the experiments presented in the tool paper. Please see experiments/README.md for detailed instructions.

Standalone tool

To try PolyQEnt, first, clone this repository. When using the tool via the commandline, you can use the accompanying solvers from the subfolder solver/. For this you do not require any installation, however, in order to run PolyQEnt, Z3 and MathSAT, the following command should be executed first:

chmod +x PolyQEnt solver/z3 solver/mathsat

Also add solvers to PATH:

export PATH=$PATH:[polyqent]/solver

where [polyqent] is the directory where PolyQEnt is cloned.

Running PolyQEnt

To run PolyQEnt on input-example.smt2 the following command should be executed:

./PolyQEnt input-example.smt2

To run PolyQEnt on input-example.smt2 with config-example.json the following command should be executed:

./PolyQEnt input-example.smt2 config-example.json

Alternatively, you can directly run PolyQEnt's main python source file as follows:

python3 src/polyqent/main.py --smt2 input-example.smt2 --config config-example.json

API Access

PolyQEnt can be used as a Python library. The following code snippet shows how to use PolyQEnt as a library after the whole installation process is completed.

from polyqent.main import execute

input_file = "input-example.smt2"
config_file = "config-example.json"

is_sat, model = execute(input_file, config_file)

The execute function allows for several different input combinations. The first argument can be the path to an .smt2 input file or an instance os the pysmt.solvers.solver.Solver class with the assertions already added. The second argument can be the path to a .json config file or a dictionary with the configuration parameters.

A further example of how to use PolyQEnt as a library can be found in the example_api.py file.

Input Syntax

The input syntax of PolyQEnt follows the SMTLIB syntax:

  • (declare-const [var name] Real) is used for defining new unknown variables.
  • (assert phi) is used for adding either (i) a quantifier free constraint on the unknown variables, or (ii) a PQE of the following form:
(assert (forall ((variable type) ... ) (=> phi psi) ))

where phi and psi are polynomial predicates over the unknown variables and the variables defined in the forall fragment of the assertion.

  • the (check-sat) command at the end specifies that PolyQEnt should run an SMT-solver after obtaining a fully existential system of polynomials.
  • the (get-model) command means that in case the SMT-solver returned sat, the values for unknown variables should be printed.

See input-example.smt2 as an example.

Config files (Optional)

The config file must be in .json format containing the following fields:

  • theorem_name which is one of "farkas", "handelman" or "putinar".
  • solver_name which is one of "z3" or "mathsat".
  • (optional) output_path which should be the path to a file where PolyQEnt will store the obtained polynomial system. If not set, PolyQEnt will create a temporary file for it and will delete it in the end of execution.
  • (optional) int_value which is assigned false or true. When true, PolyQEnt tries to find integer values for unknown variables.
  • In case handelman is chosen for theorem_name, an additional integer parameter degree_of_sat should be specified. This is the only parameter required by Handelman's Positivestellensatz. See the tool paper for more details.
  • In case putinar is chosen for theorem_name, four parameters should be specified in the config file: (i) degree_of_sat the degree of SOS polynomials considered when the LHS of PQEs are assumed satisfying, (ii) degree_of_nonstrict_unsat, (iii) degree_of_strict_unsat and (iv) max_d_of_strict, for the remaining three degree parameters of Putinar's positivestellensatz. The names are self-explanatory and the details can be found in the tool paper.
  • SAT_heuristic which should be set to true if the Assume-SAT heuristic should be used.
  • unsat_core_heuristic which should be set to true if the UNSAT Core heuristic should be used.

The default value is 0 for all integer parameters and false for all boolean parameters. Default theorem is set based on the degree of PQEs and default solver is z3. Also, all heuristics are set to false as default.

See config-example.json as an example.

Citing

To cite PolyQEnt, please use the following reference:
K. Chatterjee, A. K. Goharshady, E. K. Goharshady, M. Karrabi, M. Saadat, M. Seeliger, D. Zikelic
PolyQEnt: A Polynomial Quantified Entailment Solver
arXiv 2025, [https://arxiv.org/abs/2408.03796]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polyqent-0.0.15.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

polyqent-0.0.15-py3-none-any.whl (33.9 kB view details)

Uploaded Python 3

File details

Details for the file polyqent-0.0.15.tar.gz.

File metadata

  • Download URL: polyqent-0.0.15.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for polyqent-0.0.15.tar.gz
Algorithm Hash digest
SHA256 a028fddab87b70d8d91b52a79db676b18cf1a99c51063981bf81064c69be7a1c
MD5 a12cdca948d99b1c6793b31794c3d18b
BLAKE2b-256 8a7afd627d9eeefb8a8baec40ce81b20e570cd30a89d7d360db871e0b8dee0c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for polyqent-0.0.15.tar.gz:

Publisher: publish.yml on ChatterjeeGroup-ISTA/polyqent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polyqent-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: polyqent-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for polyqent-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 8a4e325d101ca39ecbfa9737501aa42c7f81bac8c76ee68d422bb9576df49bb0
MD5 0301afd6d848dd0a7a079884ef23e1ee
BLAKE2b-256 5b68dfc05dd4e4b8428e012fc179c8276a63292fb2fec2b8a91ca020fb8e6118

See more details on using hashes here.

Provenance

The following attestation bundles were made for polyqent-0.0.15-py3-none-any.whl:

Publisher: publish.yml on ChatterjeeGroup-ISTA/polyqent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page