Prefer emplace_back to push_back

* spot/graph/ngraph.hh, spot/ltsmin/ltsmin.cc,
spot/misc/bitvect.hh, spot/misc/intvcomp.cc,
spot/misc/satsolver.cc, spot/priv/weight.cc,
spot/ta/taexplicit.cc, spot/taalgos/minimize.cc,
spot/taalgos/reachiter.cc, spot/tl/exclusive.cc,
spot/tl/formula.cc, spot/tl/formula.hh,
spot/tl/mark.cc, spot/tl/mutation.cc,
spot/tl/relabel.cc, spot/tl/remove_x.cc,
spot/tl/simplify.cc, spot/twa/acc.cc,
spot/twa/acc.hh, spot/twa/formula2bdd.cc,
spot/twa/taatgba.cc, spot/twa/taatgba.hh,
spot/twa/twa.hh, spot/twa/twagraph.cc,
spot/twaalgos/bfssteps.cc, spot/twaalgos/canonicalize.cc,
spot/twaalgos/compsusp.cc, spot/twaalgos/copy.cc,
spot/twaalgos/cycles.cc, spot/twaalgos/degen.cc,
spot/twaalgos/determinize.cc, spot/twaalgos/dtwasat.cc,
spot/twaalgos/emptiness.cc, spot/twaalgos/gv04.cc,
spot/twaalgos/hoa.cc, spot/twaalgos/ltl2taa.cc,
spot/twaalgos/ltl2tgba_fm.cc, spot/twaalgos/magic.cc,
spot/twaalgos/mask.hh, spot/twaalgos/minimize.cc,
spot/twaalgos/powerset.cc, spot/twaalgos/product.cc,
spot/twaalgos/randomgraph.cc, spot/twaalgos/reachiter.cc,
spot/twaalgos/relabel.cc, spot/twaalgos/remfin.cc,
spot/twaalgos/sccfilter.cc, spot/twaalgos/se05.cc,
spot/twaalgos/simulation.cc, spot/twaalgos/stutter.cc,
spot/twaalgos/tau03opt.cc, spot/twaalgos/totgba.cc,
spot/twaalgos/word.cc, tests/core/bitvect.cc: here.
This commit is contained in:
Etienne Renault 2016-11-22 10:21:08 +01:00
parent ef214b2c42
commit 43ec36cda7
54 changed files with 310 additions and 310 deletions

View file

@ -66,17 +66,17 @@ namespace spot
{
formula c = f[i];
if (c.is_boolean())
res.push_back(c);
res.emplace_back(c);
else if (oblig_ && c.is_syntactic_obligation())
oblig.push_back(c);
oblig.emplace_back(c);
else if (c.is_eventual() && c.is_universal())
susp.push_back(c);
susp.emplace_back(c);
else
res.push_back(recurse(c));
res.emplace_back(recurse(c));
}
if (!oblig.empty())
{
res.push_back(recurse(formula::multop(o, oblig)));
res.emplace_back(recurse(formula::multop(o, oblig)));
}
if (!susp.empty())
{
@ -85,7 +85,7 @@ namespace spot
formula g = recurse(x);
if (o == op::And)
{
res.push_back(g);
res.emplace_back(g);
}
else
{
@ -191,7 +191,7 @@ namespace spot
p.second = ris;
unsigned i = res->new_state();
seen[p] = i;
todo.push_back(p);
todo.emplace_back(p);
res->set_init_state(i);
while (!todo.empty())
@ -252,7 +252,7 @@ namespace spot
{
dest = res->new_state();
seen[d] = dest;
todo.push_back(d);
todo.emplace_back(d);
}
acc_cond::mark_t a = li->acc() | (racc << lsets);