python: add bindings for set of unsigned int

Requested by Marek Jankola.

* python/spot/impl.i: Add bindings for std::set<unsigned>.
* tests/python/powerset.py: New file.
* tests/Makefile.am: Add it.
* THANKS: Add Marek.
This commit is contained in:
Alexandre Duret-Lutz 2023-09-08 12:02:42 +02:00
parent 538afeb73b
commit cbb981ffd5
4 changed files with 34 additions and 0 deletions

View file

@ -523,6 +523,7 @@ namespace std {
%template(vectorint) vector<int>;
%template(pair_formula_vectorstring) pair<spot::formula, vector<string>>;
%template(atomic_prop_set) set<spot::formula>;
%template(setunsigned) set<unsigned>;
%template(relabeling_map) map<spot::formula, spot::formula>;
}