Remove binary integer literals
Remove this notation because Swig only supports it since version 4.0.0, whereas Spot requires a version greater than or equal to 3.0.2. * spot/tl/apcollect.hh: Here.
This commit is contained in:
parent
9bdc500013
commit
127cb89cad
1 changed files with 3 additions and 3 deletions
|
|
@ -87,11 +87,11 @@ namespace spot
|
|||
public:
|
||||
enum realizability_simplifier_option {
|
||||
/// \brief remove APs with single polarity
|
||||
polarity = 0b1,
|
||||
polarity = 1,
|
||||
/// \brief remove equivalent APs
|
||||
global_equiv = 0b10,
|
||||
global_equiv = 2,
|
||||
/// \brief likewise, but don't consider equivalent input and output
|
||||
global_equiv_output_only = 0b110,
|
||||
global_equiv_output_only = 6,
|
||||
};
|
||||
|
||||
realizability_simplifier(formula f,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue