fix some typos

* spot/graph/graph.hh, spot/ltsmin/spins_kripke.hxx,
spot/mc/bloemen.hh, spot/mc/lpar13.hh, spot/twaalgos/determinize.cc:
Here.
This commit is contained in:
Alexandre Duret-Lutz 2022-10-11 13:28:15 +02:00
parent 583ca38d91
commit 9de5455552
5 changed files with 25 additions and 25 deletions

View file

@ -1,5 +1,5 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015-2021 Laboratoire de Recherche et
// Copyright (C) 2015-2022 Laboratoire de Recherche et
// Développement de l'Epita.
//
// This file is part of Spot, a model checking library.
@ -476,7 +476,7 @@ namespace spot
std::vector<int> tmp;
while (brace >= 0)
{
// FIXME is not there a smarter way?
// FIXME: is there a smarter way?
tmp.insert(tmp.begin(), brace);
brace = s.braces_[brace];
}
@ -781,7 +781,7 @@ namespace spot
bool
safra_state::operator<(const safra_state& other) const
{
// FIXME what is the right, if any, comparison to perform?
// FIXME: what is the right, if any, comparison to perform?
return braces_ == other.braces_ ? nodes_ < other.nodes_
: braces_ < other.braces_;
}
@ -887,7 +887,7 @@ namespace spot
// NB spot::simulation() does not remove unreachable states, as it
// would invalidate the contents of 'implications'.
// so we need to explicitly test for unreachable states
// FIXME based on the scc_info, we could remove the unreachable
// FIXME: based on the scc_info, we could remove the unreachable
// states, both in the input automaton and in 'implications'
// to reduce the size of 'implies'.
if (!scc.reachable_state(i))
@ -922,7 +922,7 @@ namespace spot
std::vector<bdd> support(aut->num_states());
if (use_stutter && aut->prop_stutter_invariant())
{
// FIXME this could be improved
// FIXME: this could be improved
// supports of states should account for possible stuttering if we plan
// to use stuttering invariance
for (unsigned c = 0; c != scc.scc_count(); ++c)