Adding dot suppport for aiger class

* spot/twaalgos/aiger.cc: Useless assert
* spot/twaalgos/dot.hh,
spot/twaalgos/dot.cc: aig to dot
* python/spot/__init__.py: Adapting
* tests/python/games.ipynb: Additional tests
This commit is contained in:
philipp 2021-08-10 23:58:26 +02:00 committed by Florian Renkin
parent 17db582341
commit 2c267dd894
5 changed files with 583 additions and 17 deletions

View file

@ -25,6 +25,7 @@
#include <iosfwd>
#include <spot/twa/fwd.hh>
#include <spot/misc/common.hh>
#include <spot/twaalgos/aiger.hh>
namespace spot
{
@ -44,4 +45,8 @@ namespace spot
print_dot(std::ostream& os,
const const_twa_ptr& g,
const char* options = nullptr);
SPOT_API std::ostream &
print_dot(std::ostream &os, aig_ptr circuit, const char * = nullptr);
}