spot  1.99.3
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
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 <ltlast/formula.hh>
26 #include <iosfwd>
27 
28 namespace spot
29 {
30  namespace ltl
31  {
34 
40  SPOT_API std::ostream&
41  print_psl(std::ostream& os, const formula* f, bool full_parent = false);
42 
47  SPOT_API std::string
48  str_psl(const formula* f, bool full_parent = false);
49 
55  SPOT_API std::ostream&
56  print_utf8_psl(std::ostream& os, const formula* f,
57  bool full_parent = false);
58 
63  SPOT_API std::string
64  str_utf8_psl(const formula* f, bool full_parent = false);
65 
71  SPOT_API std::ostream&
72  print_sere(std::ostream& os, const formula* f, bool full_parent = false);
73 
78  SPOT_API std::string
79  str_sere(const formula* f, bool full_parent = false);
80 
86  SPOT_API std::ostream&
87  print_utf8_sere(std::ostream& os, const formula* f,
88  bool full_parent = false);
89 
94  SPOT_API std::string
95  str_utf8_sere(const formula* f, bool full_parent = false);
96 
102  SPOT_API std::ostream&
103  print_spin_ltl(std::ostream& os, const formula* f,
104  bool full_parent = false);
105 
110  SPOT_API std::string
111  str_spin_ltl(const formula* f, bool full_parent = false);
112 
116  SPOT_API std::ostream&
117  print_wring_ltl(std::ostream& os, const formula* f);
118 
121  SPOT_API std::string
122  str_wring_ltl(const formula* f);
123 
129  SPOT_API std::ostream&
130  print_latex_psl(std::ostream& os, const formula* f,
131  bool full_parent = false);
132 
138  SPOT_API std::string
139  str_latex_psl(const formula* f, bool full_parent = false);
140 
146  SPOT_API std::ostream&
147  print_latex_sere(std::ostream& os, const formula* f,
148  bool full_parent = false);
149 
155  SPOT_API std::string
156  str_latex_sere(const formula* f, bool full_parent = false);
157 
165  SPOT_API std::ostream&
166  print_sclatex_psl(std::ostream& os, const formula* f,
167  bool full_parent = false);
168 
175  SPOT_API std::string
176  str_sclatex_psl(const formula* f, bool full_parent = false);
177 
185  SPOT_API std::ostream&
186  print_sclatex_sere(std::ostream& os, const formula* f,
187  bool full_parent = false);
188 
195  SPOT_API std::string
196  str_sclatex_sere(const formula* f, bool full_parent = false);
197 
208  SPOT_API std::ostream&
209  print_lbt_ltl(std::ostream& os, const formula* f);
210 
220  SPOT_API std::string
221  str_lbt_ltl(const formula* f);
223  }
224 }
Definition: public.hh:31
SPOT_API std::string str_sclatex_psl(const formula *f, bool full_parent=false)
Output a PSL formula as a self-contained LaTeX string.
SPOT_API std::string str_latex_psl(const formula *f, bool full_parent=false)
Output a formula as a LaTeX string which is parsable. unless the formula contains automaton operators...
SPOT_API std::string str_lbt_ltl(const formula *f)
Output an LTL formula as a string in LBT's format.
SPOT_API std::ostream & print_sclatex_psl(std::ostream &os, const formula *f, bool full_parent=false)
Output a PSL formula as a self-contained LaTeX string.
SPOT_API std::string str_sclatex_sere(const formula *f, bool full_parent=false)
Output a SERE formula as a self-contained LaTeX string.
SPOT_API std::ostream & print_sclatex_sere(std::ostream &os, const formula *f, bool full_parent=false)
Output a SERE formula as a self-contained LaTeX string.
SPOT_API std::ostream & print_lbt_ltl(std::ostream &os, const formula *f)
Output an LTL formula as a string in LBT's format.
SPOT_API std::ostream & print_utf8_psl(std::ostream &os, const formula *f, bool full_parent=false)
Output a PSL formula as an utf-8 string which is parsable.
LTL formula interface.
SPOT_API std::string str_utf8_sere(const formula *f, bool full_parent=false)
Convert a SERE formula into a string which is parsable.
SPOT_API std::ostream & print_latex_sere(std::ostream &os, const formula *f, bool full_parent=false)
Output a SERE formula as a LaTeX string.
SPOT_API std::ostream & print_psl(std::ostream &os, const formula *f, bool full_parent=false)
Output a PSL formula as a string which is parsable.
SPOT_API std::string str_utf8_psl(const formula *f, bool full_parent=false)
Convert a PSL formula into a utf-8 string which is parsable.
SPOT_API std::string str_spin_ltl(const formula *f, bool full_parent=false)
Convert an LTL formula into a string parsable by Spin.
SPOT_API std::string str_psl(const formula *f, bool full_parent=false)
Convert a PSL formula into a string which is parsable.
SPOT_API std::string str_sere(const formula *f, bool full_parent=false)
Convert a SERE formula into a string which is parsable.
SPOT_API std::string str_wring_ltl(const formula *f)
Convert a formula into a string parsable by Wring.
SPOT_API std::ostream & print_wring_ltl(std::ostream &os, const formula *f)
Output an LTL formula as a string parsable by Wring.
SPOT_API std::ostream & print_utf8_sere(std::ostream &os, const formula *f, bool full_parent=false)
Output a SERE formula as a utf-8 string which is parsable.
SPOT_API std::ostream & print_sere(std::ostream &os, const formula *f, bool full_parent=false)
Output a SERE formula as a string which is parsable.
SPOT_API std::string str_latex_sere(const formula *f, bool full_parent=false)
Output a SERE formula as a LaTeX string which is parsable. unless the formula contains automaton oper...
SPOT_API std::ostream & print_latex_psl(std::ostream &os, const formula *f, bool full_parent=false)
Output a PSL formula as a LaTeX string.
SPOT_API std::ostream & print_spin_ltl(std::ostream &os, const formula *f, bool full_parent=false)
Output an LTL formula as a string parsable by Spin.

Please direct any question, comment, or bug report to the Spot mailing list at spot@lrde.epita.fr.
Generated on Wed Aug 26 2015 08:42:37 for spot by doxygen 1.8.8