move game.cc from misc/ to twaalgos/

* spot/misc/game.cc, spot/misc/game.hh: Move...
* spot/twaalgos/game.cc, spot/twaalgos/game.hh: ... here.
* bin/ltlsynt.cc, python/spot/impl.i, spot/misc/Makefile.am,
spot/twaalgos/Makefile.am: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2020-12-09 16:47:18 +01:00
parent 459088b887
commit 05449a42d3
6 changed files with 12 additions and 15 deletions

View file

@ -34,22 +34,21 @@
#include <spot/misc/bddlt.hh> #include <spot/misc/bddlt.hh>
#include <spot/misc/escape.hh> #include <spot/misc/escape.hh>
#include <spot/misc/game.hh>
#include <spot/misc/timer.hh> #include <spot/misc/timer.hh>
#include <spot/tl/formula.hh> #include <spot/tl/formula.hh>
#include <spot/twa/twagraph.hh> #include <spot/twa/twagraph.hh>
#include <spot/twaalgos/aiger.hh> #include <spot/twaalgos/aiger.hh>
#include <spot/twaalgos/degen.hh> #include <spot/twaalgos/degen.hh>
#include <spot/twaalgos/determinize.hh> #include <spot/twaalgos/determinize.hh>
#include <spot/twaalgos/game.hh>
#include <spot/twaalgos/hoa.hh>
#include <spot/twaalgos/parity.hh> #include <spot/twaalgos/parity.hh>
#include <spot/twaalgos/sbacc.hh> #include <spot/twaalgos/sbacc.hh>
#include <spot/twaalgos/totgba.hh>
#include <spot/twaalgos/translate.hh>
#include <spot/twa/twagraph.hh>
#include <spot/twaalgos/simulation.hh> #include <spot/twaalgos/simulation.hh>
#include <spot/twaalgos/synthesis.hh> #include <spot/twaalgos/synthesis.hh>
#include <spot/twaalgos/toparity.hh> #include <spot/twaalgos/toparity.hh>
#include <spot/twaalgos/hoa.hh> #include <spot/twaalgos/totgba.hh>
#include <spot/twaalgos/translate.hh>
enum enum
{ {

View file

@ -144,6 +144,7 @@
#include <spot/twaalgos/iscolored.hh> #include <spot/twaalgos/iscolored.hh>
#include <spot/twaalgos/isunamb.hh> #include <spot/twaalgos/isunamb.hh>
#include <spot/twaalgos/isweakscc.hh> #include <spot/twaalgos/isweakscc.hh>
#include <spot/twaalgos/game.hh>
#include <spot/twaalgos/langmap.hh> #include <spot/twaalgos/langmap.hh>
#include <spot/twaalgos/simulation.hh> #include <spot/twaalgos/simulation.hh>
#include <spot/twaalgos/split.hh> #include <spot/twaalgos/split.hh>
@ -165,8 +166,6 @@
#include <spot/parseaut/public.hh> #include <spot/parseaut/public.hh>
#include <spot/misc/game.hh>
#include <spot/kripke/fairkripke.hh> #include <spot/kripke/fairkripke.hh>
#include <spot/kripke/kripke.hh> #include <spot/kripke/kripke.hh>
#include <spot/kripke/kripkegraph.hh> #include <spot/kripke/kripkegraph.hh>
@ -668,6 +667,7 @@ def state_is_accepting(self, src) -> "bool":
%include <spot/twaalgos/iscolored.hh> %include <spot/twaalgos/iscolored.hh>
%include <spot/twaalgos/isunamb.hh> %include <spot/twaalgos/isunamb.hh>
%include <spot/twaalgos/isweakscc.hh> %include <spot/twaalgos/isweakscc.hh>
%include <spot/twaalgos/game.hh>
%include <spot/twaalgos/simulation.hh> %include <spot/twaalgos/simulation.hh>
%include <spot/twaalgos/parity.hh> %include <spot/twaalgos/parity.hh>
%include <spot/twaalgos/postproc.hh> %include <spot/twaalgos/postproc.hh>
@ -695,8 +695,6 @@ def state_is_accepting(self, src) -> "bool":
%include <spot/twaalgos/complement.hh> %include <spot/twaalgos/complement.hh>
%include <spot/misc/game.hh>
%include <spot/kripke/fairkripke.hh> %include <spot/kripke/fairkripke.hh>
%include <spot/kripke/kripke.hh> %include <spot/kripke/kripke.hh>
%include <spot/kripke/kripkegraph.hh> %include <spot/kripke/kripkegraph.hh>

View file

@ -1,5 +1,5 @@
## -*- coding: utf-8 -*- ## -*- coding: utf-8 -*-
## Copyright (C) 2011, 2012, 2013, 2014, 2016-2018 Laboratoire de Recherche ## Copyright (C) 2011-2014, 2016-2018, 2020 Laboratoire de Recherche
## et Développement de l'Epita (LRDE). ## et Développement de l'Epita (LRDE).
## Copyright (C) 2003, 2004, 2005, 2006 Laboratoire d'Informatique de ## Copyright (C) 2003, 2004, 2005, 2006 Laboratoire d'Informatique de
## Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC), ## Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
@ -40,7 +40,6 @@ misc_HEADERS = \
escape.hh \ escape.hh \
fixpool.hh \ fixpool.hh \
formater.hh \ formater.hh \
game.hh \
hash.hh \ hash.hh \
hashfunc.hh \ hashfunc.hh \
intvcomp.hh \ intvcomp.hh \
@ -67,7 +66,6 @@ libmisc_la_SOURCES = \
clz.cc \ clz.cc \
escape.cc \ escape.cc \
formater.cc \ formater.cc \
game.cc \
intvcomp.cc \ intvcomp.cc \
intvcmp2.cc \ intvcmp2.cc \
memusage.cc \ memusage.cc \

View file

@ -1,6 +1,6 @@
## -*- coding: utf-8 -*- ## -*- coding: utf-8 -*-
## Copyright (C) 2008-2018 Laboratoire de Recherche et Développement ## Copyright (C) 2008-2018, 2020 Laboratoire de Recherche et
## de l'Epita (LRDE). ## Développement de l'Epita (LRDE).
## Copyright (C) 2003-2005 Laboratoire d'Informatique de Paris 6 ## Copyright (C) 2003-2005 Laboratoire d'Informatique de Paris 6
## (LIP6), département Systèmes Répartis Coopératifs (SRC), Université ## (LIP6), département Systèmes Répartis Coopératifs (SRC), Université
## Pierre et Marie Curie. ## Pierre et Marie Curie.
@ -50,6 +50,7 @@ twaalgos_HEADERS = \
dualize.hh \ dualize.hh \
emptiness.hh \ emptiness.hh \
emptiness_stats.hh \ emptiness_stats.hh \
game.hh \
genem.hh \ genem.hh \
gfguarantee.hh \ gfguarantee.hh \
gv04.hh \ gv04.hh \
@ -127,6 +128,7 @@ libtwaalgos_la_SOURCES = \
isdet.cc \ isdet.cc \
isunamb.cc \ isunamb.cc \
isweakscc.cc \ isweakscc.cc \
game.cc \
langmap.cc \ langmap.cc \
lbtt.cc \ lbtt.cc \
ltl2taa.cc \ ltl2taa.cc \

View file

@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include <cmath> #include <cmath>
#include <spot/misc/game.hh> #include <spot/twaalgos/game.hh>
#include <spot/misc/bddlt.hh> #include <spot/misc/bddlt.hh>
#include <spot/twaalgos/sccinfo.hh> #include <spot/twaalgos/sccinfo.hh>