spot 2.10.6.dev
print.hh
1// -*- coding: utf-8 -*-
2// Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015 Laboratoire de
3// Recherche et Développement de l'Epita (LRDE).
4// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
5// département Systèmes Répartis Coopératifs (SRC), Université Pierre
6// et Marie Curie.
7//
8// This file is part of Spot, a model checking library.
9//
10// Spot is free software; you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation; either version 3 of the License, or
13// (at your option) any later version.
14//
15// Spot is distributed in the hope that it will be useful, but WITHOUT
16// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
18// License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with this program. If not, see <http://www.gnu.org/licenses/>.
22
23#pragma once
24
25#include <spot/tl/formula.hh>
26#include <iosfwd>
27
28namespace spot
29{
32
38 SPOT_API std::ostream&
39 print_psl(std::ostream& os, formula f, bool full_parent = false);
40
45 SPOT_API std::string
46 str_psl(formula f, bool full_parent = false);
47
53 SPOT_API std::ostream&
54 print_utf8_psl(std::ostream& os, formula f,
55 bool full_parent = false);
56
61 SPOT_API std::string
62 str_utf8_psl(formula f, bool full_parent = false);
63
69 SPOT_API std::ostream&
70 print_sere(std::ostream& os, formula f, bool full_parent = false);
71
76 SPOT_API std::string
77 str_sere(formula f, bool full_parent = false);
78
84 SPOT_API std::ostream&
85 print_utf8_sere(std::ostream& os, formula f,
86 bool full_parent = false);
87
92 SPOT_API std::string
93 str_utf8_sere(formula f, bool full_parent = false);
94
100 SPOT_API std::ostream&
101 print_spin_ltl(std::ostream& os, formula f,
102 bool full_parent = false);
103
108 SPOT_API std::string
109 str_spin_ltl(formula f, bool full_parent = false);
110
114 SPOT_API std::ostream&
115 print_wring_ltl(std::ostream& os, formula f);
116
119 SPOT_API std::string
121
127 SPOT_API std::ostream&
128 print_latex_psl(std::ostream& os, formula f,
129 bool full_parent = false);
130
136 SPOT_API std::string
137 str_latex_psl(formula f, bool full_parent = false);
138
144 SPOT_API std::ostream&
145 print_latex_sere(std::ostream& os, formula f,
146 bool full_parent = false);
147
153 SPOT_API std::string
154 str_latex_sere(formula f, bool full_parent = false);
155
163 SPOT_API std::ostream&
164 print_sclatex_psl(std::ostream& os, formula f,
165 bool full_parent = false);
166
173 SPOT_API std::string
174 str_sclatex_psl(formula f, bool full_parent = false);
175
183 SPOT_API std::ostream&
184 print_sclatex_sere(std::ostream& os, formula f,
185 bool full_parent = false);
186
193 SPOT_API std::string
194 str_sclatex_sere(formula f, bool full_parent = false);
195
206 SPOT_API std::ostream&
207 print_lbt_ltl(std::ostream& os, formula f);
208
218 SPOT_API std::string
221}
Main class for temporal logic formula.
Definition: formula.hh:715
LTL/PSL formula interface.
std::ostream & print_spin_ltl(std::ostream &os, formula f, bool full_parent=false)
Output an LTL formula as a string parsable by Spin.
std::string str_lbt_ltl(formula f)
Output an LTL formula as a string in LBT's format.
std::string str_sere(formula f, bool full_parent=false)
Convert a SERE formula into a string which is parsable.
std::string str_latex_sere(formula f, bool full_parent=false)
Output a SERE formula as a LaTeX string which is parsable. unless the formula contains automaton oper...
std::ostream & print_psl(std::ostream &os, formula f, bool full_parent=false)
Output a PSL formula as a string which is parsable.
std::string str_utf8_psl(formula f, bool full_parent=false)
Convert a PSL formula into a utf-8 string which is parsable.
std::string str_sclatex_sere(formula f, bool full_parent=false)
Output a SERE formula as a self-contained LaTeX string.
std::ostream & print_latex_sere(std::ostream &os, formula f, bool full_parent=false)
Output a SERE formula as a LaTeX string.
std::ostream & print_lbt_ltl(std::ostream &os, formula f)
Output an LTL formula as a string in LBT's format.
std::ostream & print_sclatex_sere(std::ostream &os, formula f, bool full_parent=false)
Output a SERE formula as a self-contained LaTeX string.
std::ostream & print_sere(std::ostream &os, formula f, bool full_parent=false)
Output a SERE formula as a string which is parsable.
std::string str_spin_ltl(formula f, bool full_parent=false)
Convert an LTL formula into a string parsable by Spin.
std::ostream & print_wring_ltl(std::ostream &os, formula f)
Output an LTL formula as a string parsable by Wring.
std::ostream & print_latex_psl(std::ostream &os, formula f, bool full_parent=false)
Output a PSL formula as a LaTeX string.
std::string str_utf8_sere(formula f, bool full_parent=false)
Convert a SERE formula into a string which is parsable.
std::string str_wring_ltl(formula f)
Convert a formula into a string parsable by Wring.
std::string str_sclatex_psl(formula f, bool full_parent=false)
Output a PSL formula as a self-contained LaTeX string.
std::string str_latex_psl(formula f, bool full_parent=false)
Output a formula as a LaTeX string which is parsable. unless the formula contains automaton operators...
std::ostream & print_utf8_psl(std::ostream &os, formula f, bool full_parent=false)
Output a PSL formula as an utf-8 string which is parsable.
std::ostream & print_sclatex_psl(std::ostream &os, formula f, bool full_parent=false)
Output a PSL formula as a self-contained LaTeX string.
std::ostream & print_utf8_sere(std::ostream &os, formula f, bool full_parent=false)
Output a SERE formula as a utf-8 string which is parsable.
std::string str_psl(formula f, bool full_parent=false)
Convert a PSL formula into a string which is parsable.
Definition: automata.hh:27

Please direct any question, comment, or bug report to the Spot mailing list at spot@lrde.epita.fr.
Generated on Fri Feb 27 2015 10:00:07 for spot by doxygen 1.9.4