* doc/Doxyfile.in (FILE_PATTERNS): Remove *.hxx.
* src/sanity/80columns.test, src/sanity/style.test: Process *.hxx files. * src/tgbaalgos/ndfs_result.hh: Rename as .. * src/tgbaalgos/ndfs_result.hxx: ... this, so it does not get documented (and so Doxygen do not complain). * src/tgbaalgos/magic.cc, src/tgbaalgos/se05.cc, src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03opt.cc: Adjust include. * src/tgbaalgos/Makefile.am: Rename ndfs_result.hh as ndfs_result.hxx and do not install it, this is a private header.
This commit is contained in:
parent
a9ab303859
commit
b054139e6d
11 changed files with 30 additions and 15 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -1,5 +1,15 @@
|
||||||
2005-01-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2005-01-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* doc/Doxyfile.in (FILE_PATTERNS): Remove *.hxx.
|
||||||
|
* src/sanity/80columns.test, src/sanity/style.test: Process *.hxx files.
|
||||||
|
* src/tgbaalgos/ndfs_result.hh: Rename as ..
|
||||||
|
* src/tgbaalgos/ndfs_result.hxx: ... this, so it does not get
|
||||||
|
documented (and so Doxygen do not complain).
|
||||||
|
* src/tgbaalgos/magic.cc, src/tgbaalgos/se05.cc, src/tgbaalgos/tau03.cc,
|
||||||
|
src/tgbaalgos/tau03opt.cc: Adjust include.
|
||||||
|
* src/tgbaalgos/Makefile.am: Rename ndfs_result.hh as ndfs_result.hxx
|
||||||
|
and do not install it, this is a private header.
|
||||||
|
|
||||||
* src/tgbaalgos/emptiness.hh: Declare Doxygen group
|
* src/tgbaalgos/emptiness.hh: Declare Doxygen group
|
||||||
emptiness_check_stats.
|
emptiness_check_stats.
|
||||||
* src/tgbaalgos/emptiness_stats.hh: Use it.
|
* src/tgbaalgos/emptiness_stats.hh: Use it.
|
||||||
|
|
|
||||||
2
HACKING
2
HACKING
|
|
@ -232,6 +232,8 @@ Naming
|
||||||
|
|
||||||
* C Macros are all uppercase.
|
* C Macros are all uppercase.
|
||||||
|
|
||||||
|
* Use *.hxx for the implementation of templates that are private
|
||||||
|
to Spot (i.e. not installed) and need to be included multiple times.
|
||||||
|
|
||||||
Other style recommandations
|
Other style recommandations
|
||||||
===========================
|
===========================
|
||||||
|
|
|
||||||
|
|
@ -458,8 +458,7 @@ INPUT = @srcdir@/mainpage.dox \
|
||||||
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
|
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
|
||||||
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
|
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
|
||||||
|
|
||||||
FILE_PATTERNS = *.hh \
|
FILE_PATTERNS = *.hh
|
||||||
*.hxx
|
|
||||||
|
|
||||||
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
# The RECURSIVE tag can be used to turn specify whether or not subdirectories
|
||||||
# should be searched for input files as well. Possible values are YES and NO.
|
# should be searched for input files as well. Possible values are YES and NO.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@ rm -f failures
|
||||||
|
|
||||||
for dir in "${INCDIR-..}" "${INCDIR-..}"/../iface; do
|
for dir in "${INCDIR-..}" "${INCDIR-..}"/../iface; do
|
||||||
|
|
||||||
find "$dir" \( -name "${1-*}.hh" -o -name "${1-*}.cc" \
|
find "$dir" \( -name "${1-*}.hh" \
|
||||||
|
-o -name "${1-*}.hxx" \
|
||||||
|
-o -name "${1-*}.cc" \
|
||||||
-o -name "${1-*}.test" \) -a -type f -a -print |
|
-o -name "${1-*}.test" \) -a -type f -a -print |
|
||||||
while read file; do
|
while read file; do
|
||||||
x='........................................'
|
x='........................................'
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,10 @@ tmp=incltest.tmp
|
||||||
|
|
||||||
for dir in "${INCDIR-..}" "${INCDIR-..}"/../iface; do
|
for dir in "${INCDIR-..}" "${INCDIR-..}"/../iface; do
|
||||||
|
|
||||||
find "$dir" \( -name "${1-*}.hh" -o -name "${1-*}.cc" \) \
|
find "$dir" \( -name "${1-*}.hh" \
|
||||||
-a -type f -a -print |
|
-o -name "${1-*}.hxx" \
|
||||||
|
-o -name "${1-*}.cc" \) \
|
||||||
|
-a -type f -a -print |
|
||||||
while read file; do
|
while read file; do
|
||||||
if grep 'GNU Bison' "$file" >/dev/null ||
|
if grep 'GNU Bison' "$file" >/dev/null ||
|
||||||
grep 'generated by flex' "$file" >/dev/null ; then
|
grep 'generated by flex' "$file" >/dev/null ; then
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
## Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
## Copyright (C) 2003, 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
## département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
## département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
## et Marie Curie.
|
## et Marie Curie.
|
||||||
##
|
##
|
||||||
|
|
@ -38,7 +38,6 @@ tgbaalgos_HEADERS = \
|
||||||
ltl2tgba_fm.hh \
|
ltl2tgba_fm.hh \
|
||||||
ltl2tgba_lacim.hh \
|
ltl2tgba_lacim.hh \
|
||||||
magic.hh \
|
magic.hh \
|
||||||
ndfs_result.hh \
|
|
||||||
neverclaim.hh \
|
neverclaim.hh \
|
||||||
powerset.hh \
|
powerset.hh \
|
||||||
projrun.hh \
|
projrun.hh \
|
||||||
|
|
@ -67,6 +66,7 @@ libtgbaalgos_la_SOURCES = \
|
||||||
ltl2tgba_fm.cc \
|
ltl2tgba_fm.cc \
|
||||||
ltl2tgba_lacim.cc \
|
ltl2tgba_lacim.cc \
|
||||||
magic.cc \
|
magic.cc \
|
||||||
|
ndfs_result.hxx \
|
||||||
neverclaim.cc \
|
neverclaim.cc \
|
||||||
powerset.cc \
|
powerset.cc \
|
||||||
projrun.cc \
|
projrun.cc \
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
#include "emptiness.hh"
|
#include "emptiness.hh"
|
||||||
#include "emptiness_stats.hh"
|
#include "emptiness_stats.hh"
|
||||||
#include "magic.hh"
|
#include "magic.hh"
|
||||||
#include "ndfs_result.hh"
|
#include "ndfs_result.hxx"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
#include "emptiness.hh"
|
#include "emptiness.hh"
|
||||||
#include "emptiness_stats.hh"
|
#include "emptiness_stats.hh"
|
||||||
#include "se05.hh"
|
#include "se05.hh"
|
||||||
#include "ndfs_result.hh"
|
#include "ndfs_result.hxx"
|
||||||
|
|
||||||
/// FIXME: make compiling depedent the taking into account of weights.
|
/// FIXME: make compiling depedent the taking into account of weights.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
#include "emptiness.hh"
|
#include "emptiness.hh"
|
||||||
#include "emptiness_stats.hh"
|
#include "emptiness_stats.hh"
|
||||||
#include "tau03.hh"
|
#include "tau03.hh"
|
||||||
#include "ndfs_result.hh"
|
#include "ndfs_result.hxx"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
// et Marie Curie.
|
// et Marie Curie.
|
||||||
//
|
//
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
#include "emptiness_stats.hh"
|
#include "emptiness_stats.hh"
|
||||||
#include "tau03opt.hh"
|
#include "tau03opt.hh"
|
||||||
#include "weight.hh"
|
#include "weight.hh"
|
||||||
#include "ndfs_result.hh"
|
#include "ndfs_result.hxx"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue