kripke: rename state_acceptance_conditions
* spot/kripke/kripke.cc, spot/kripke/kripke.hh, spot/kripke/fairkripke.hh (state_acceptance_conditions): Rename as... (state_acceptance_mark): ... this. * NEWS: Mention it.
This commit is contained in:
parent
096edf227d
commit
6617538156
4 changed files with 10 additions and 5 deletions
|
|
@ -97,8 +97,8 @@ namespace spot
|
|||
/// This should be a conjunction of atomic propositions.
|
||||
virtual bdd state_condition(const state* s) const = 0;
|
||||
|
||||
/// \brief The set of acceptance conditions that label the state \a s.
|
||||
/// \brief The acceptance mark that labels state \a s.
|
||||
virtual acc_cond::mark_t
|
||||
state_acceptance_conditions(const state* s) const = 0;
|
||||
state_acceptance_mark(const state* s) const = 0;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2009, 2010, 2014 Laboratoire de Recherche et
|
||||
// Copyright (C) 2009, 2010, 2014, 2016 Laboratoire de Recherche et
|
||||
// Developpement de l'Epita
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -47,7 +47,7 @@ namespace spot
|
|||
}
|
||||
|
||||
acc_cond::mark_t
|
||||
kripke::state_acceptance_conditions(const state*) const
|
||||
kripke::state_acceptance_mark(const state*) const
|
||||
{
|
||||
return 0U;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ namespace spot
|
|||
virtual ~kripke();
|
||||
|
||||
virtual
|
||||
acc_cond::mark_t state_acceptance_conditions(const state*) const override;
|
||||
acc_cond::mark_t state_acceptance_mark(const state*) const override;
|
||||
};
|
||||
|
||||
typedef std::shared_ptr<kripke> kripke_ptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue