bench: fix stutter bench compiler errors.
* NEWS: mention this fix. * bench/stutter/stutter_bench.sh, bench/stutter/user.sh: Path to spot binaries would include an inexistant src directory. * bench/stutter/stutter_invariance_formulas.cc: Add override qualifier to satisfy -Wsuggest-override.
This commit is contained in:
parent
be41155308
commit
5f43fec8db
4 changed files with 10 additions and 7 deletions
|
|
@ -54,14 +54,14 @@ namespace
|
|||
|
||||
int
|
||||
process_string(const std::string& input,
|
||||
const char* filename, int linenum)
|
||||
const char* filename, int linenum) override
|
||||
{
|
||||
formula = input;
|
||||
return job_processor::process_string(input, filename, linenum);
|
||||
}
|
||||
|
||||
int
|
||||
process_formula(spot::formula f, const char*, int)
|
||||
process_formula(spot::formula f, const char*, int) override
|
||||
{
|
||||
spot::twa_graph_ptr a = trans.run(f);
|
||||
spot::twa_graph_ptr na = trans.run(spot::formula::Not(f));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue