spot/iface/gspn
Alexandre Duret-Lutz 487cd01d9f c++11: introduce tgba::succ(s) to replace tgba::succ_iter(s).
| tgba_succ_iterator* i = aut->succ_iter(s);
| for (i->begin(); !i->done(); i->next())
|   {
|      // ...
|   }
| delete i;

becomes

| for (auto i: aut->succ(s))
|   {
|      // ...
|   }

hiding the begin()/done()/next() interface, taking care of the delete,
and allowing more optimization to come.

* src/tgba/succiter.hh, src/tgba/tgba.hh: Implement the above
new interface.
* iface/gspn/ssp.cc, src/dstarparse/nsa2tgba.cc,
src/saba/sabacomplementtgba.cc, src/tgba/tgbakvcomplement.cc,
src/tgba/tgbamask.cc, src/tgba/tgbasafracomplement.cc,
src/tgba/tgbatba.cc, src/tgbaalgos/compsusp.cc, src/tgbaalgos/cutscc.cc,
src/tgbaalgos/degen.cc, src/tgbaalgos/emptiness.cc,
src/tgbaalgos/isdet.cc, src/tgbaalgos/ltl2tgba_fm.cc,
src/tgbaalgos/minimize.cc, src/tgbaalgos/powerset.cc,
src/tgbaalgos/safety.cc, src/tgbaalgos/simulation.cc,
src/tgbaalgos/tau03.cc, src/tgbatest/explicit2.cc: Update for
loops.
2014-02-12 14:08:47 +01:00
..
examples Add .gitignore files 2008-03-14 16:59:32 +01:00
.cvsignore more files to ignore 2004-06-22 22:58:09 +00:00
.gitignore more files to ignore 2008-08-26 14:19:59 +02:00
common.cc Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
common.hh Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
dcswave.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
dcswaveeltl.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
dcswavefm.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
dcswaveltl.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
defs.in Enable VERBOSE logs for nips, greatspn, and python tests. 2011-02-10 12:58:16 +01:00
dottygspn.cc Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
dottyssp.cc Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
gspn.cc Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
gspn.hh Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
ltlgspn.cc Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
Makefile.am Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
simple.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
ssp.cc c++11: introduce tgba::succ(s) to replace tgba::succ_iter(s). 2014-02-12 14:08:47 +01:00
ssp.hh Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
udcsefm.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
udcseltl.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
udcsfm.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
udcsltl.test Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00