* m4/gccwarn.m4: Add the option. * bin/autfilt.cc, bin/common_output.hh, bin/dstar2tgba.cc, bin/ltl2tgba.cc, bin/ltl2tgta.cc, bin/ltlcross.cc, bin/ltldo.cc, bin/ltlfilt.cc, bin/ltlgrind.cc, spot/kripke/kripke.hh, spot/ltsmin/ltsmin.cc, spot/ta/ta.hh, spot/ta/tgtaproduct.hh, spot/taalgos/dot.cc, spot/taalgos/reachiter.hh, spot/taalgos/statessetbuilder.cc, spot/taalgos/stats.cc, spot/twa/twaproduct.cc, spot/twaalgos/emptiness.cc, spot/twaalgos/gtec/ce.cc, spot/twaalgos/lbtt.cc, spot/twaalgos/ndfs_result.hxx, spot/twaalgos/stats.hh, spot/twaalgos/tau03opt.cc, tests/core/ngraph.cc: Add suggested override qualifiers.
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2012, 2013, 2014, 2015, 2016 Laboratoire de Recherche
|
|
// et Développement de l'Epita (LRDE).
|
|
//
|
|
// This file is part of Spot, a model checking library.
|
|
//
|
|
// Spot is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
// License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
#include "common_sys.hh"
|
|
|
|
#include <argp.h>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <spot/tl/formula.hh>
|
|
#include <spot/twaalgos/stats.hh>
|
|
#include "common_output.hh"
|
|
#include "common_file.hh"
|
|
|
|
enum output_format_t { spot_output, spin_output, utf8_output,
|
|
lbt_output, wring_output, latex_output,
|
|
quiet_output, count_output };
|
|
extern output_format_t output_format;
|
|
extern bool full_parenth;
|
|
extern bool escape_csv;
|
|
|
|
extern const struct argp output_argp;
|
|
|
|
int parse_opt_output(int key, char* arg, struct argp_state* state);
|
|
|
|
// Low-level output
|
|
std::ostream&
|
|
stream_formula(std::ostream& out,
|
|
spot::formula f, const char* filename, int linenum);
|
|
|
|
void output_formula_checked(spot::formula f,
|
|
const char* filename = nullptr, int linenum = 0,
|
|
const char* prefix = nullptr,
|
|
const char* suffix = nullptr);
|
|
|
|
|
|
class printable_formula:
|
|
public spot::printable_value<spot::formula>
|
|
{
|
|
public:
|
|
printable_formula&
|
|
operator=(spot::formula new_val)
|
|
{
|
|
val_ = new_val;
|
|
return *this;
|
|
}
|
|
|
|
virtual void
|
|
print(std::ostream& os, const char*) const override;
|
|
};
|
|
|
|
class aut_stat_printer: protected spot::stat_printer
|
|
{
|
|
public:
|
|
aut_stat_printer(std::ostream& os, const char* format)
|
|
: spot::stat_printer(os, format)
|
|
{
|
|
declare('f', &formula_); // Override the formula printer.
|
|
}
|
|
|
|
using spot::formater::set_output;
|
|
|
|
std::ostream&
|
|
print(const spot::const_twa_graph_ptr& aut,
|
|
spot::formula f = nullptr,
|
|
double run_time = -1.)
|
|
{
|
|
formula_ = f;
|
|
return this->spot::stat_printer::print(aut, f, run_time);
|
|
}
|
|
|
|
printable_formula formula_;
|
|
};
|