whitespace changes
This commit is contained in:
parent
19e47ee6e4
commit
42e079f64d
3 changed files with 11 additions and 12 deletions
|
|
@ -6,7 +6,7 @@ namespace spot
|
||||||
{
|
{
|
||||||
/// Global dictionary used by print_handler() to lookup variables.
|
/// Global dictionary used by print_handler() to lookup variables.
|
||||||
static const tgba_bdd_dict* dict;
|
static const tgba_bdd_dict* dict;
|
||||||
|
|
||||||
/// Global flag to enable Prom[x] output (instead of `x').
|
/// Global flag to enable Prom[x] output (instead of `x').
|
||||||
static bool want_prom;
|
static bool want_prom;
|
||||||
|
|
||||||
|
|
@ -24,7 +24,7 @@ namespace spot
|
||||||
if (isi != dict->prom_formula_map.end())
|
if (isi != dict->prom_formula_map.end())
|
||||||
{
|
{
|
||||||
if (want_prom)
|
if (want_prom)
|
||||||
o << "Prom[";
|
o << "Prom[";
|
||||||
to_string(isi->second, o);
|
to_string(isi->second, o);
|
||||||
if (want_prom)
|
if (want_prom)
|
||||||
o << "]";
|
o << "]";
|
||||||
|
|
|
||||||
|
|
@ -52,21 +52,21 @@ namespace spot
|
||||||
std::set<const ltl::formula*>::const_iterator f;
|
std::set<const ltl::formula*>::const_iterator f;
|
||||||
for (f = prom.begin(); f != prom.end(); ++f)
|
for (f = prom.begin(); f != prom.end(); ++f)
|
||||||
{
|
{
|
||||||
res.prom_map[*f] = v;
|
res.prom_map[*f] = v;
|
||||||
res.prom_formula_map[v] = *f;
|
res.prom_formula_map[v] = *f;
|
||||||
++v;
|
++v;
|
||||||
}
|
}
|
||||||
for (f = var.begin(); f != var.end(); ++f)
|
for (f = var.begin(); f != var.end(); ++f)
|
||||||
{
|
{
|
||||||
res.var_map[*f] = v;
|
res.var_map[*f] = v;
|
||||||
res.var_formula_map[v] = *f;
|
res.var_formula_map[v] = *f;
|
||||||
++v;
|
++v;
|
||||||
}
|
}
|
||||||
for (f = now.begin(); f != now.end(); ++f)
|
for (f = now.begin(); f != now.end(); ++f)
|
||||||
{
|
{
|
||||||
res.now_map[*f] = v;
|
res.now_map[*f] = v;
|
||||||
res.now_formula_map[v] = *f;
|
res.now_formula_map[v] = *f;
|
||||||
v += 2;
|
v += 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert (v == want);
|
assert (v == want);
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@ libtgbaalgos_la_SOURCES = \
|
||||||
dotty.hh \
|
dotty.hh \
|
||||||
save.cc \
|
save.cc \
|
||||||
save.hh
|
save.hh
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue