Skip to main content

a visualization tool for clingo.

Project description

viASP

Test Status

viASP visualizes an interactive explanation of your ASP program and its stable models Example visualization

viASP allows you to explore the visualization in a variety of ways:

  • Toggle parts of the program
  • Show the added symbols or all of them
  • Inspect a single model
  • Add #show statements on the fly
  • Search models, signatures and rules.

To use viASP you don't have to change your ASP programs at all. You only have to execute them using the clingo python API.

Installation

pip install viasp will install all necessary dependencies.

Usage

Overview

viASP has two parts, its frontend Dash component and the backend server. To get everything running, do the following:

  1. viasp (or viasp & to run it in the background)
  2. Start your dash app, a basic version can be found at examples/minimal_dash.py
  3. Replace clingo.Control with viasp.Control in your python scripts and use viasp.mark(model) to select the models you want to show

Quick start

If you don't have any scripts handy that use the python API of clingo, you can use our quickstart script.

IMPORTANT You will still need to start viasp (viasp or viasp &)

Then run examples/quickstart.py. Modify the clingo program in there to your linking.

If you now run your ASP programs, you can inspect them using viASP at http://127.0.0.1:8050/ or what ever port you have set.

If you want to learn more about Dash, check out their documentation.

Limitations

viASP only works if you run your ASP programs using the python API, e.g.:

from viasp import Control

program = """
rain; sprinkler.
wet :- rain.
wet :- sprinkler.
"""
ctl = Control(["0"])
ctl.add("base", [], program)
ctl.ground([("base", [])])
with ctl.solve(yield_=True) as handle:
    for model in handle:
        ctl.viasp.mark(model)
ctl.viasp.show()

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

viasp-1.1.0.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

viasp-1.1.0-py3-none-any.whl (3.0 kB view hashes)

Uploaded Python 3

Supported by

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