Visualization for dynamic programming on tree decompositions.
Create a graph object for each given graph that is of interest for the dynamic programming.
The visualization generates highlights and adds solution-tables for user defined time steps.
These snapshot of the graphs will be written in a graphviz-supported file-format to a folder of your choosing.
For the portable and light weight '.svg' format, all graphs for a timestep can be joined together to provide a thoroughly view on the process of dynamic programming.
With the '.svg' format the images are highly customizable, and even combining several timesteps together using svg animate would be an option in the future.
Alubbock:Graphviz (or Graphviz (>=2.38))
https://gitlab.com/graphviz/graphviz/-/issues/1352
dot.exe -c
In a command prompt with pip (to get pip see: https://pip.pypa.io/en/stable/) installed: Just run
pip install -h (for more information on install options)
pip install tdvisu
To download the latest version from the default branch:
git clone --depth 1 --single https://github.com/VaeterchenFrost/tdvisu
With virtualenv on the system installed you can isolate the environment, for example
virtualenv tdvisu_dir -p 3.8
cd tdvisu_dir/bin/
source activate
With Conda on the system installed the dependencies for this project can be automatically installed in a new environment:
Go to the projects base directory.
Open a conda-command-prompt with admin privileges and run the commands from the project folder
- to create a new environment with basic dependencies:
conda env create -f .\environment.yml
- to activate the environment:
conda activate tdvisu
To clone the complete repository:
git clone https://github.com/VaeterchenFrost/tdvisu
To download only the latest version from the default branch:
git clone --depth 1 --single https://github.com/VaeterchenFrost/tdvisu
To install the project from the source folder:
pip install -h (for more information on install options)
pip install .
to confirm that the visualization finds all dependencies:
python .\tdvisu\visualization.py -h
to run all tests:
pip install .[test]
pytest .\test\
The visualization needs input in the form of the Json API. The creation of this file is exemplary implemented in construct_dpdb_visu.py or the fork GPUSAT and --visufile filename (optionally disabling preprocessing with -p).
Run the python file with the above dependencies installed: visualization.py
visualization.py takes two parameters, the json-infile to read from, and optionally one outputfolder. With both arguments a call from IPython might look like this:
runfile('visualization.py',
args='visugpusat.json examplefolder')
For #SAT it produces for example three different graphs suffixed with a running integer to represent timesteps:
- TDStep the tree decomposition with solved nodes
- PrimalGraphStep the primal graph with currently active variables highlighted
- IncidenceGraphStep the bipartite incidence graph with active clauses/variables highlighted
The graphs are images encoded in resolution independent .svg files (see https://www.lifewire.com/svg-file-4120603)
After installing the project dp_on_dbs with the there listed requirements, we need to
- edit the database.ini with our password to postgresql
- Solve a problem with
python dpdb.py [GENERAL-OPTIONS] -f <INPUT-FILE> <PROBLEM> [PROBLEM-SPECIFIC-OPTIONS]
- for the problem VertexCover
- with flag
--gr-file
to store the htd Input (if the input was in a different format)
- with flag
- for the problem SharpSat
- with flag
--store-formula
to store the formula in the database
- with flag
- for the problem VertexCover
- Run
- Sat / SharpSat:
python construct_dpdb_visu.py [PROBLEMNUMBER]
- VertexCover:
python construct_dpdb_visu.py [PROBLEMNUMBER] --twfile [TWFILE]
with the file in DIMACS tw-format containing the edges of the graph.
- Sat / SharpSat:
See https://www.psycopg.org/docs/install.html#build-prerequisites
For example on linux today this might need
sudo apt install libpq-dev
before completion.
- Bump
/version.py
according to the changes made - Change date to the release day, keep format
In case dependencies have changed, or just to update some, check
- requirements.txt
- stable-requirements.txt (using
pip freeze
) - setup.py
- Add tag with link (see bottom for linking examples)
- Add changes, maybe some are already in Unreleased
- Update Unreleased with (No) unreleased changes
- Run tests (pytest)
- Check codestyle (pylint)
- Push changes to master
- Wait for all automated checks! (All checks have passed...)
- On the GitHub page go to: Release, Draft a new release
- Enter v'YOUR VERSION NUMBER' as the tag.
- Add a Release Title (could be just the version)
- Add some description (like in the CHANGELOG.md)
- Click on Publish release on the bottom
Should automatically release to PyPI
- For details see: Upload Python Package
Now you are set for the new release 🎉