Rename split_independant_formulas
split_independant_formulas is now split_independent_formulas * spot/twaalgos/synthesis.hh, spot/twaalgos/synthesis.cc: change name. * bin/ltlsynt.cc: update call * NEWS: Mention it.
This commit is contained in:
parent
f57782686d
commit
2ffdd84942
4 changed files with 9 additions and 6 deletions
|
|
@ -1847,7 +1847,7 @@ namespace // anonymous for subsformula
|
|||
namespace spot
|
||||
{
|
||||
std::pair<std::vector<formula>, std::vector<std::set<formula>>>
|
||||
split_independant_formulas(formula f, const std::vector<std::string>& outs)
|
||||
split_independent_formulas(formula f, const std::vector<std::string>& outs)
|
||||
{
|
||||
formula_2_inout_props form2props(outs);
|
||||
std::set<std::string> outs_set(outs.begin(), outs.end());
|
||||
|
|
@ -1905,10 +1905,10 @@ namespace spot
|
|||
}
|
||||
|
||||
std::pair<std::vector<formula>, std::vector<std::set<formula>>>
|
||||
split_independant_formulas(const std::string& f,
|
||||
split_independent_formulas(const std::string& f,
|
||||
const std::vector<std::string>& outs)
|
||||
{
|
||||
return split_independant_formulas(parse_formula(f), outs);
|
||||
return split_independent_formulas(parse_formula(f), outs);
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
|
|
@ -222,10 +222,10 @@ namespace spot
|
|||
/// propositions each.
|
||||
/// @{
|
||||
SPOT_API std::pair<std::vector<formula>, std::vector<std::set<formula>>>
|
||||
split_independant_formulas(formula f, const std::vector<std::string>& outs);
|
||||
split_independent_formulas(formula f, const std::vector<std::string>& outs);
|
||||
|
||||
SPOT_API std::pair<std::vector<formula>, std::vector<std::set<formula>>>
|
||||
split_independant_formulas(const std::string& f,
|
||||
split_independent_formulas(const std::string& f,
|
||||
const std::vector<std::string>& outs);
|
||||
/// @}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue