* wrap/python/cgi/ltl2tgba.in: Adjust to newer versions of swig.

This commit is contained in:
Alexandre Duret-Lutz 2007-10-05 13:06:38 +00:00
parent 089c315c28
commit ec6bca7992
2 changed files with 10 additions and 6 deletions

View file

@ -1,4 +1,8 @@
2007-09-19 Alexandre Duret-Lutz <adl@gnu.org> 2007-10-05 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* wrap/python/cgi/ltl2tgba.in: Adjust to newer versions of swig.
2007-09-19 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/misc/bddalloc.cc (bdd_allocator::initialize): * src/misc/bddalloc.cc (bdd_allocator::initialize):
Disable the default GC handler. Reported by Disable the default GC handler. Reported by

View file

@ -1,8 +1,8 @@
#!@PYTHON@ #!@PYTHON@
# -*- mode: python; coding: iso-8859-1 -*- # -*- mode: python; coding: iso-8859-1 -*-
# Copyright (C) 2003, 2004, 2006 Laboratoire d'Informatique de Paris 6 (LIP6), # Copyright (C) 2003, 2004, 2006, 2007 Laboratoire d'Informatique de
# département Systèmes Répartis Coopératifs (SRC), Université Pierre # Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
# et Marie Curie. # Université Pierre et Marie Curie.
# #
# This file is part of Spot, a model checking library. # This file is part of Spot, a model checking library.
# #
@ -528,7 +528,7 @@ if show_dictionnary:
automaton.get_dict().dump(spot.get_cout()) automaton.get_dict().dump(spot.get_cout())
print '</pre>' print '</pre>'
if (type(automaton) == spot.tgba_bdd_concretePtr if (type(automaton) == spot.tgba_bdd_concrete
and (show_relation_set or show_relation_png)): and (show_relation_set or show_relation_png)):
print '<H3>Transition relation</H3>' print '<H3>Transition relation</H3>'
if show_relation_set: if show_relation_set:
@ -538,7 +538,7 @@ if (type(automaton) == spot.tgba_bdd_concretePtr
render_bdd(imgprefix + '-b', automaton.get_dict(), render_bdd(imgprefix + '-b', automaton.get_dict(),
automaton.get_core_data().relation) automaton.get_core_data().relation)
if (type(automaton) == spot.tgba_bdd_concretePtr if (type(automaton) == spot.tgba_bdd_concrete
and (show_acceptance_set or show_acceptance_png)): and (show_acceptance_set or show_acceptance_png)):
print '<H3>Acceptance relation</H3>' print '<H3>Acceptance relation</H3>'
if show_acceptance_set: if show_acceptance_set: