Merge
authorAlpar Juttner <alpar@cs.elte.hu>
Mon, 28 Apr 2008 11:12:33 +0100
changeset 154f4e4dbc1d467
parent 149 2f7ae34e1333
parent 153 976a014b3797
child 155 5c3604513ed0
Merge
.hgignore
doc/Makefile.am
     1.1 --- a/.hgignore	Thu Apr 24 13:53:09 2008 +0100
     1.2 +++ b/.hgignore	Mon Apr 28 11:12:33 2008 +0100
     1.3 @@ -7,6 +7,7 @@
     1.4  *.log
     1.5  *.lo
     1.6  *.tar.*
     1.7 +*.bak
     1.8  Makefile.in
     1.9  aclocal.m4
    1.10  config.h.in
    1.11 @@ -25,6 +26,7 @@
    1.12  .libs/*
    1.13  .deps/*
    1.14  demo/*.eps
    1.15 +doc/images/*.png
    1.16  
    1.17  syntax: regexp
    1.18  (.*/)?\#[^/]*\#$
     2.1 --- a/configure.ac	Thu Apr 24 13:53:09 2008 +0100
     2.2 +++ b/configure.ac	Mon Apr 28 11:12:33 2008 +0100
     2.3 @@ -27,6 +27,7 @@
     2.4  AC_PROG_LIBTOOL
     2.5  
     2.6  AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
     2.7 +AC_CHECK_PROG([gs_found],[gs],[yes],[no])
     2.8  
     2.9  if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    2.10    CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
     3.1 --- a/doc/Doxyfile.in	Thu Apr 24 13:53:09 2008 +0100
     3.2 +++ b/doc/Doxyfile.in	Mon Apr 28 11:12:33 2008 +0100
     3.3 @@ -1,455 +1,85 @@
     3.4 -# Doxyfile 1.4.2
     3.5 -
     3.6 -# This file describes the settings to be used by the documentation system
     3.7 -# doxygen (www.doxygen.org) for a project
     3.8 -#
     3.9 -# All text after a hash (#) is considered a comment and will be ignored
    3.10 -# The format is:
    3.11 -#       TAG = value [value, ...]
    3.12 -# For lists items can also be appended using:
    3.13 -#       TAG += value [value, ...]
    3.14 -# Values that contain spaces should be placed between quotes (" ")
    3.15 +# Doxyfile 1.5.5
    3.16  
    3.17  #---------------------------------------------------------------------------
    3.18  # Project related configuration options
    3.19  #---------------------------------------------------------------------------
    3.20 -
    3.21 -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
    3.22 -# by quotes) that should identify the project.
    3.23 -
    3.24 +DOXYFILE_ENCODING      = UTF-8
    3.25  PROJECT_NAME           = @PACKAGE_NAME@
    3.26 -
    3.27 -# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
    3.28 -# This could be handy for archiving the generated documentation or 
    3.29 -# if some version control system is used.
    3.30 -
    3.31  PROJECT_NUMBER         = @PACKAGE_VERSION@
    3.32 -
    3.33 -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
    3.34 -# base path where the generated documentation will be put. 
    3.35 -# If a relative path is entered, it will be relative to the location 
    3.36 -# where doxygen was started. If left blank the current directory will be used.
    3.37 -
    3.38  OUTPUT_DIRECTORY       = 
    3.39 -
    3.40 -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
    3.41 -# 4096 sub-directories (in 2 levels) under the output directory of each output 
    3.42 -# format and will distribute the generated files over these directories. 
    3.43 -# Enabling this option can be useful when feeding doxygen a huge amount of 
    3.44 -# source files, where putting all generated files in the same directory would 
    3.45 -# otherwise cause performance problems for the file system.
    3.46 -
    3.47  CREATE_SUBDIRS         = NO
    3.48 -
    3.49 -# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
    3.50 -# documentation generated by doxygen is written. Doxygen will use this 
    3.51 -# information to generate all constant output in the proper language. 
    3.52 -# The default language is English, other supported languages are: 
    3.53 -# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 
    3.54 -# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 
    3.55 -# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 
    3.56 -# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 
    3.57 -# Swedish, and Ukrainian.
    3.58 -
    3.59  OUTPUT_LANGUAGE        = English
    3.60 -
    3.61 -# This tag can be used to specify the encoding used in the generated output. 
    3.62 -# The encoding is not always determined by the language that is chosen, 
    3.63 -# but also whether or not the output is meant for Windows or non-Windows users. 
    3.64 -# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 
    3.65 -# forces the Windows encoding (this is the default for the Windows binary), 
    3.66 -# whereas setting the tag to NO uses a Unix-style encoding (the default for 
    3.67 -# all platforms other than Windows).
    3.68 -
    3.69 -USE_WINDOWS_ENCODING   = NO
    3.70 -
    3.71 -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
    3.72 -# include brief member descriptions after the members that are listed in 
    3.73 -# the file and class documentation (similar to JavaDoc). 
    3.74 -# Set to NO to disable this.
    3.75 -
    3.76  BRIEF_MEMBER_DESC      = YES
    3.77 -
    3.78 -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
    3.79 -# the brief description of a member or function before the detailed description. 
    3.80 -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
    3.81 -# brief descriptions will be completely suppressed.
    3.82 -
    3.83  REPEAT_BRIEF           = NO
    3.84 -
    3.85 -# This tag implements a quasi-intelligent brief description abbreviator 
    3.86 -# that is used to form the text in various listings. Each string 
    3.87 -# in this list, if found as the leading text of the brief description, will be 
    3.88 -# stripped from the text and the result after processing the whole list, is 
    3.89 -# used as the annotated text. Otherwise, the brief description is used as-is. 
    3.90 -# If left blank, the following values are used ("$name" is automatically 
    3.91 -# replaced with the name of the entity): "The $name class" "The $name widget" 
    3.92 -# "The $name file" "is" "provides" "specifies" "contains" 
    3.93 -# "represents" "a" "an" "the"
    3.94 -
    3.95  ABBREVIATE_BRIEF       = 
    3.96 -
    3.97 -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
    3.98 -# Doxygen will generate a detailed section even if there is only a brief 
    3.99 -# description.
   3.100 -
   3.101  ALWAYS_DETAILED_SEC    = NO
   3.102 -
   3.103 -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 
   3.104 -# inherited members of a class in the documentation of that class as if those 
   3.105 -# members were ordinary class members. Constructors, destructors and assignment 
   3.106 -# operators of the base classes will not be shown.
   3.107 -
   3.108  INLINE_INHERITED_MEMB  = NO
   3.109 -
   3.110 -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
   3.111 -# path before files name in the file list and in the header files. If set 
   3.112 -# to NO the shortest path that makes the file name unique will be used.
   3.113 -
   3.114  FULL_PATH_NAMES        = YES
   3.115 -
   3.116 -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
   3.117 -# can be used to strip a user-defined part of the path. Stripping is 
   3.118 -# only done if one of the specified strings matches the left-hand part of 
   3.119 -# the path. The tag can be used to show relative paths in the file list. 
   3.120 -# If left blank the directory from which doxygen is run is used as the 
   3.121 -# path to strip.
   3.122 -
   3.123  STRIP_FROM_PATH        = @abs_top_srcdir@
   3.124 -
   3.125 -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 
   3.126 -# the path mentioned in the documentation of a class, which tells 
   3.127 -# the reader which header file to include in order to use a class. 
   3.128 -# If left blank only the name of the header file containing the class 
   3.129 -# definition is used. Otherwise one should specify the include paths that 
   3.130 -# are normally passed to the compiler using the -I flag.
   3.131 -
   3.132  STRIP_FROM_INC_PATH    = @abs_top_srcdir@
   3.133 -
   3.134 -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
   3.135 -# (but less readable) file names. This can be useful is your file systems 
   3.136 -# doesn't support long names like on DOS, Mac, or CD-ROM.
   3.137 -
   3.138  SHORT_NAMES            = YES
   3.139 -
   3.140 -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
   3.141 -# will interpret the first line (until the first dot) of a JavaDoc-style 
   3.142 -# comment as the brief description. If set to NO, the JavaDoc 
   3.143 -# comments will behave just like the Qt-style comments (thus requiring an 
   3.144 -# explicit @brief command for a brief description.
   3.145 -
   3.146  JAVADOC_AUTOBRIEF      = NO
   3.147 -
   3.148 -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 
   3.149 -# treat a multi-line C++ special comment block (i.e. a block of //! or /// 
   3.150 -# comments) as a brief description. This used to be the default behaviour. 
   3.151 -# The new default is to treat a multi-line C++ comment block as a detailed 
   3.152 -# description. Set this tag to YES if you prefer the old behaviour instead.
   3.153 -
   3.154 +QT_AUTOBRIEF           = NO
   3.155  MULTILINE_CPP_IS_BRIEF = NO
   3.156 -
   3.157 -# If the DETAILS_AT_TOP tag is set to YES then Doxygen 
   3.158 -# will output the detailed description near the top, like JavaDoc.
   3.159 -# If set to NO, the detailed description appears after the member 
   3.160 -# documentation.
   3.161 -
   3.162  DETAILS_AT_TOP         = YES
   3.163 -
   3.164 -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
   3.165 -# member inherits the documentation from any documented member that it 
   3.166 -# re-implements.
   3.167 -
   3.168  INHERIT_DOCS           = NO
   3.169 -
   3.170 -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
   3.171 -# tag is set to YES, then doxygen will reuse the documentation of the first 
   3.172 -# member in the group (if any) for the other members of the group. By default 
   3.173 -# all members of a group must be documented explicitly.
   3.174 -
   3.175 +SEPARATE_MEMBER_PAGES  = NO
   3.176 +TAB_SIZE               = 8
   3.177 +ALIASES                = 
   3.178 +OPTIMIZE_OUTPUT_FOR_C  = NO
   3.179 +OPTIMIZE_OUTPUT_JAVA   = NO
   3.180 +OPTIMIZE_FOR_FORTRAN   = NO
   3.181 +OPTIMIZE_OUTPUT_VHDL   = NO
   3.182 +BUILTIN_STL_SUPPORT    = YES
   3.183 +CPP_CLI_SUPPORT        = NO
   3.184 +SIP_SUPPORT            = NO
   3.185  DISTRIBUTE_GROUP_DOC   = NO
   3.186 -
   3.187 -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 
   3.188 -# a new page for each member. If set to NO, the documentation of a member will 
   3.189 -# be part of the file/class/namespace that contains it.
   3.190 -
   3.191 -SEPARATE_MEMBER_PAGES  = NO
   3.192 -
   3.193 -# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
   3.194 -# Doxygen uses this value to replace tabs by spaces in code fragments.
   3.195 -
   3.196 -TAB_SIZE               = 8
   3.197 -
   3.198 -# This tag can be used to specify a number of aliases that acts 
   3.199 -# as commands in the documentation. An alias has the form "name=value". 
   3.200 -# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
   3.201 -# put the command \sideeffect (or @sideeffect) in the documentation, which 
   3.202 -# will result in a user-defined paragraph with heading "Side Effects:". 
   3.203 -# You can put \n's in the value part of an alias to insert newlines.
   3.204 -
   3.205 -ALIASES                = 
   3.206 -
   3.207 -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 
   3.208 -# sources only. Doxygen will then generate output that is more tailored for C. 
   3.209 -# For instance, some of the names that are used will be different. The list 
   3.210 -# of all members will be omitted, etc.
   3.211 -
   3.212 -OPTIMIZE_OUTPUT_FOR_C  = NO
   3.213 -
   3.214 -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources 
   3.215 -# only. Doxygen will then generate output that is more tailored for Java. 
   3.216 -# For instance, namespaces will be presented as packages, qualified scopes 
   3.217 -# will look different, etc.
   3.218 -
   3.219 -OPTIMIZE_OUTPUT_JAVA   = NO
   3.220 -
   3.221 -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 
   3.222 -# the same type (for instance a group of public functions) to be put as a 
   3.223 -# subgroup of that type (e.g. under the Public Functions section). Set it to 
   3.224 -# NO to prevent subgrouping. Alternatively, this can be done per class using 
   3.225 -# the \nosubgrouping command.
   3.226 -
   3.227  SUBGROUPING            = YES
   3.228 -
   3.229 +TYPEDEF_HIDES_STRUCT   = NO
   3.230  #---------------------------------------------------------------------------
   3.231  # Build related configuration options
   3.232  #---------------------------------------------------------------------------
   3.233 -
   3.234 -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
   3.235 -# documentation are documented, even if no documentation was available. 
   3.236 -# Private class members and static file members will be hidden unless 
   3.237 -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
   3.238 -
   3.239  EXTRACT_ALL            = NO
   3.240 -
   3.241 -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
   3.242 -# will be included in the documentation.
   3.243 -
   3.244  EXTRACT_PRIVATE        = YES
   3.245 -
   3.246 -# If the EXTRACT_STATIC tag is set to YES all static members of a file 
   3.247 -# will be included in the documentation.
   3.248 -
   3.249  EXTRACT_STATIC         = YES
   3.250 -
   3.251 -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
   3.252 -# defined locally in source files will be included in the documentation. 
   3.253 -# If set to NO only classes defined in header files are included.
   3.254 -
   3.255  EXTRACT_LOCAL_CLASSES  = NO
   3.256 -
   3.257 -# This flag is only useful for Objective-C code. When set to YES local 
   3.258 -# methods, which are defined in the implementation section but not in 
   3.259 -# the interface are included in the documentation. 
   3.260 -# If set to NO (the default) only methods in the interface are included.
   3.261 -
   3.262  EXTRACT_LOCAL_METHODS  = NO
   3.263 -
   3.264 -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
   3.265 -# undocumented members of documented classes, files or namespaces. 
   3.266 -# If set to NO (the default) these members will be included in the 
   3.267 -# various overviews, but no documentation section is generated. 
   3.268 -# This option has no effect if EXTRACT_ALL is enabled.
   3.269 -
   3.270 +EXTRACT_ANON_NSPACES   = NO
   3.271  HIDE_UNDOC_MEMBERS     = YES
   3.272 -
   3.273 -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
   3.274 -# undocumented classes that are normally visible in the class hierarchy. 
   3.275 -# If set to NO (the default) these classes will be included in the various 
   3.276 -# overviews. This option has no effect if EXTRACT_ALL is enabled.
   3.277 -
   3.278  HIDE_UNDOC_CLASSES     = YES
   3.279 -
   3.280 -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
   3.281 -# friend (class|struct|union) declarations. 
   3.282 -# If set to NO (the default) these declarations will be included in the 
   3.283 -# documentation.
   3.284 -
   3.285  HIDE_FRIEND_COMPOUNDS  = NO
   3.286 -
   3.287 -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
   3.288 -# documentation blocks found inside the body of a function. 
   3.289 -# If set to NO (the default) these blocks will be appended to the 
   3.290 -# function's detailed documentation block.
   3.291 -
   3.292  HIDE_IN_BODY_DOCS      = NO
   3.293 -
   3.294 -# The INTERNAL_DOCS tag determines if documentation 
   3.295 -# that is typed after a \internal command is included. If the tag is set 
   3.296 -# to NO (the default) then the documentation will be excluded. 
   3.297 -# Set it to YES to include the internal documentation.
   3.298 -
   3.299 -INTERNAL_DOCS          = @DOXYGEN_INTERNAL_DOCS@
   3.300 -
   3.301 -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
   3.302 -# file names in lower-case letters. If set to YES upper-case letters are also 
   3.303 -# allowed. This is useful if you have classes or files whose names only differ 
   3.304 -# in case and if your file system supports case sensitive file names. Windows 
   3.305 -# and Mac users are advised to set this option to NO.
   3.306 -
   3.307 +INTERNAL_DOCS          = NO
   3.308  CASE_SENSE_NAMES       = YES
   3.309 -
   3.310 -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
   3.311 -# will show members with their full class and namespace scopes in the 
   3.312 -# documentation. If set to YES the scope will be hidden.
   3.313 -
   3.314  HIDE_SCOPE_NAMES       = YES
   3.315 -
   3.316 -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
   3.317 -# will put a list of the files that are included by a file in the documentation 
   3.318 -# of that file.
   3.319 -
   3.320  SHOW_INCLUDE_FILES     = YES
   3.321 -
   3.322 -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
   3.323 -# is inserted in the documentation for inline members.
   3.324 -
   3.325  INLINE_INFO            = YES
   3.326 -
   3.327 -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
   3.328 -# will sort the (detailed) documentation of file and class members 
   3.329 -# alphabetically by member name. If set to NO the members will appear in 
   3.330 -# declaration order.
   3.331 -
   3.332  SORT_MEMBER_DOCS       = NO
   3.333 -
   3.334 -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 
   3.335 -# brief documentation of file, namespace and class members alphabetically 
   3.336 -# by member name. If set to NO (the default) the members will appear in 
   3.337 -# declaration order.
   3.338 -
   3.339  SORT_BRIEF_DOCS        = NO
   3.340 -
   3.341 -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 
   3.342 -# sorted by fully-qualified names, including namespaces. If set to 
   3.343 -# NO (the default), the class list will be sorted only by class name, 
   3.344 -# not including the namespace part. 
   3.345 -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
   3.346 -# Note: This option applies only to the class list, not to the 
   3.347 -# alphabetical list.
   3.348 -
   3.349 +SORT_GROUP_NAMES       = NO
   3.350  SORT_BY_SCOPE_NAME     = NO
   3.351 -
   3.352 -# The GENERATE_TODOLIST tag can be used to enable (YES) or 
   3.353 -# disable (NO) the todo list. This list is created by putting \todo 
   3.354 -# commands in the documentation.
   3.355 -
   3.356  GENERATE_TODOLIST      = YES
   3.357 -
   3.358 -# The GENERATE_TESTLIST tag can be used to enable (YES) or 
   3.359 -# disable (NO) the test list. This list is created by putting \test 
   3.360 -# commands in the documentation.
   3.361 -
   3.362  GENERATE_TESTLIST      = YES
   3.363 -
   3.364 -# The GENERATE_BUGLIST tag can be used to enable (YES) or 
   3.365 -# disable (NO) the bug list. This list is created by putting \bug 
   3.366 -# commands in the documentation.
   3.367 -
   3.368  GENERATE_BUGLIST       = YES
   3.369 -
   3.370 -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
   3.371 -# disable (NO) the deprecated list. This list is created by putting 
   3.372 -# \deprecated commands in the documentation.
   3.373 -
   3.374  GENERATE_DEPRECATEDLIST= YES
   3.375 -
   3.376 -# The ENABLED_SECTIONS tag can be used to enable conditional 
   3.377 -# documentation sections, marked by \if sectionname ... \endif.
   3.378 -
   3.379  ENABLED_SECTIONS       = 
   3.380 -
   3.381 -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
   3.382 -# the initial value of a variable or define consists of for it to appear in 
   3.383 -# the documentation. If the initializer consists of more lines than specified 
   3.384 -# here it will be hidden. Use a value of 0 to hide initializers completely. 
   3.385 -# The appearance of the initializer of individual variables and defines in the 
   3.386 -# documentation can be controlled using \showinitializer or \hideinitializer 
   3.387 -# command in the documentation regardless of this setting.
   3.388 -
   3.389  MAX_INITIALIZER_LINES  = 5
   3.390 -
   3.391 -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
   3.392 -# at the bottom of the documentation of classes and structs. If set to YES the 
   3.393 -# list will mention the files that were used to generate the documentation.
   3.394 -
   3.395  SHOW_USED_FILES        = YES
   3.396 -
   3.397 -# If the sources in your project are distributed over multiple directories 
   3.398 -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 
   3.399 -# in the documentation.
   3.400 -
   3.401  SHOW_DIRECTORIES       = YES
   3.402 -
   3.403 -# The FILE_VERSION_FILTER tag can be used to specify a program or script that 
   3.404 -# doxygen should invoke to get the current version for each file (typically from the 
   3.405 -# version control system). Doxygen will invoke the program by executing (via 
   3.406 -# popen()) the command <command> <input-file>, where <command> is the value of 
   3.407 -# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 
   3.408 -# provided by doxygen. Whatever the progam writes to standard output 
   3.409 -# is used as the file version. See the manual for examples.
   3.410 -
   3.411  FILE_VERSION_FILTER    = 
   3.412 -
   3.413  #---------------------------------------------------------------------------
   3.414  # configuration options related to warning and progress messages
   3.415  #---------------------------------------------------------------------------
   3.416 -
   3.417 -# The QUIET tag can be used to turn on/off the messages that are generated 
   3.418 -# by doxygen. Possible values are YES and NO. If left blank NO is used.
   3.419 -
   3.420  QUIET                  = NO
   3.421 -
   3.422 -# The WARNINGS tag can be used to turn on/off the warning messages that are 
   3.423 -# generated by doxygen. Possible values are YES and NO. If left blank 
   3.424 -# NO is used.
   3.425 -
   3.426  WARNINGS               = YES
   3.427 -
   3.428 -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
   3.429 -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
   3.430 -# automatically be disabled.
   3.431 -
   3.432  WARN_IF_UNDOCUMENTED   = YES
   3.433 -
   3.434 -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
   3.435 -# potential errors in the documentation, such as not documenting some 
   3.436 -# parameters in a documented function, or documenting parameters that 
   3.437 -# don't exist or using markup commands wrongly.
   3.438 -
   3.439  WARN_IF_DOC_ERROR      = YES
   3.440 -
   3.441 -# This WARN_NO_PARAMDOC option can be abled to get warnings for 
   3.442 -# functions that are documented, but have no documentation for their parameters 
   3.443 -# or return value. If set to NO (the default) doxygen will only warn about 
   3.444 -# wrong or incomplete parameter documentation, but not about the absence of 
   3.445 -# documentation.
   3.446 -
   3.447  WARN_NO_PARAMDOC       = NO
   3.448 -
   3.449 -# The WARN_FORMAT tag determines the format of the warning messages that 
   3.450 -# doxygen can produce. The string should contain the $file, $line, and $text 
   3.451 -# tags, which will be replaced by the file and line number from which the 
   3.452 -# warning originated and the warning text. Optionally the format may contain 
   3.453 -# $version, which will be replaced by the version of the file (if it could 
   3.454 -# be obtained via FILE_VERSION_FILTER)
   3.455 -
   3.456 -WARN_FORMAT            = "$file:$line: $text"
   3.457 -
   3.458 -# The WARN_LOGFILE tag can be used to specify a file to which warning 
   3.459 -# and error messages should be written. If left blank the output is written 
   3.460 -# to stderr.
   3.461 -
   3.462 +WARN_FORMAT            = "$file:$line: $text  "
   3.463  WARN_LOGFILE           = doxygen.log
   3.464 -
   3.465  #---------------------------------------------------------------------------
   3.466  # configuration options related to the input files
   3.467  #---------------------------------------------------------------------------
   3.468 -
   3.469 -# The INPUT tag can be used to specify the files and/or directories that contain 
   3.470 -# documented source files. You may enter file names like "myfile.cpp" or 
   3.471 -# directories like "/usr/src/myproject". Separate the files or directories 
   3.472 -# with spaces.
   3.473 -
   3.474  INPUT                  = @abs_top_srcdir@/doc \
   3.475                           @abs_top_srcdir@/lemon \
   3.476                           @abs_top_srcdir@/lemon/bits \
   3.477 @@ -457,771 +87,165 @@
   3.478                           @abs_top_srcdir@/demo \
   3.479                           @abs_top_srcdir@/tools \
   3.480                           @abs_top_srcdir@/test/test_tools.h
   3.481 -
   3.482 -# If the value of the INPUT tag contains directories, you can use the 
   3.483 -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
   3.484 -# and *.h) to filter out the source-files in the directories. If left 
   3.485 -# blank the following patterns are tested: 
   3.486 -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
   3.487 -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
   3.488 -
   3.489 -FILE_PATTERNS          = *.h *.cc *.dox
   3.490 -
   3.491 -# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
   3.492 -# should be searched for input files as well. Possible values are YES and NO. 
   3.493 -# If left blank NO is used.
   3.494 -
   3.495 +INPUT_ENCODING         = UTF-8
   3.496 +FILE_PATTERNS          = *.h \
   3.497 +                         *.cc \
   3.498 +                         *.dox
   3.499  RECURSIVE              = NO
   3.500 -
   3.501 -# The EXCLUDE tag can be used to specify files and/or directories that should 
   3.502 -# excluded from the INPUT source files. This way you can easily exclude a 
   3.503 -# subdirectory from a directory tree whose root is specified with the INPUT tag.
   3.504 -
   3.505  EXCLUDE                = 
   3.506 -
   3.507 -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 
   3.508 -# directories that are symbolic links (a Unix filesystem feature) are excluded 
   3.509 -# from the input.
   3.510 -
   3.511  EXCLUDE_SYMLINKS       = NO
   3.512 -
   3.513 -# If the value of the INPUT tag contains directories, you can use the 
   3.514 -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
   3.515 -# certain files from those directories.
   3.516 -
   3.517  EXCLUDE_PATTERNS       = 
   3.518 -
   3.519 -# The EXAMPLE_PATH tag can be used to specify one or more files or 
   3.520 -# directories that contain example code fragments that are included (see 
   3.521 -# the \include command).
   3.522 -
   3.523 +EXCLUDE_SYMBOLS        = 
   3.524  EXAMPLE_PATH           = @abs_top_srcdir@/demo \
   3.525                           @abs_top_srcdir@/LICENSE \
   3.526                           @abs_top_srcdir@/doc
   3.527 -
   3.528 -# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
   3.529 -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
   3.530 -# and *.h) to filter out the source-files in the directories. If left 
   3.531 -# blank all files are included.
   3.532 -
   3.533  EXAMPLE_PATTERNS       = 
   3.534 -
   3.535 -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
   3.536 -# searched for input files to be used with the \include or \dontinclude 
   3.537 -# commands irrespective of the value of the RECURSIVE tag. 
   3.538 -# Possible values are YES and NO. If left blank NO is used.
   3.539 -
   3.540  EXAMPLE_RECURSIVE      = NO
   3.541 -
   3.542 -# The IMAGE_PATH tag can be used to specify one or more files or 
   3.543 -# directories that contain image that are included in the documentation (see 
   3.544 -# the \image command).
   3.545 -
   3.546 -IMAGE_PATH             = @abs_top_srcdir@/doc/images
   3.547 -
   3.548 -# The INPUT_FILTER tag can be used to specify a program that doxygen should 
   3.549 -# invoke to filter for each input file. Doxygen will invoke the filter program 
   3.550 -# by executing (via popen()) the command <filter> <input-file>, where <filter> 
   3.551 -# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
   3.552 -# input file. Doxygen will then use the output that the filter program writes 
   3.553 -# to standard output.  If FILTER_PATTERNS is specified, this tag will be 
   3.554 -# ignored.
   3.555 -
   3.556 +IMAGE_PATH             = @abs_top_srcdir@/doc/images \
   3.557 +		       	 @abs_top_builddir@/doc/gen-images
   3.558  INPUT_FILTER           = 
   3.559 -
   3.560 -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 
   3.561 -# basis.  Doxygen will compare the file name with each pattern and apply the 
   3.562 -# filter if there is a match.  The filters are a list of the form: 
   3.563 -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 
   3.564 -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 
   3.565 -# is applied to all files.
   3.566 -
   3.567  FILTER_PATTERNS        = 
   3.568 -
   3.569 -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
   3.570 -# INPUT_FILTER) will be used to filter the input files when producing source 
   3.571 -# files to browse (i.e. when SOURCE_BROWSER is set to YES).
   3.572 -
   3.573  FILTER_SOURCE_FILES    = NO
   3.574 -
   3.575  #---------------------------------------------------------------------------
   3.576  # configuration options related to source browsing
   3.577  #---------------------------------------------------------------------------
   3.578 -
   3.579 -# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
   3.580 -# be generated. Documented entities will be cross-referenced with these sources. 
   3.581 -# Note: To get rid of all source code in the generated output, make sure also 
   3.582 -# VERBATIM_HEADERS is set to NO.
   3.583 -
   3.584  SOURCE_BROWSER         = NO
   3.585 -
   3.586 -# Setting the INLINE_SOURCES tag to YES will include the body 
   3.587 -# of functions and classes directly in the documentation.
   3.588 -
   3.589  INLINE_SOURCES         = NO
   3.590 -
   3.591 -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
   3.592 -# doxygen to hide any special comment blocks from generated source code 
   3.593 -# fragments. Normal C and C++ comments will always remain visible.
   3.594 -
   3.595  STRIP_CODE_COMMENTS    = YES
   3.596 -
   3.597 -# If the REFERENCED_BY_RELATION tag is set to YES (the default) 
   3.598 -# then for each documented function all documented 
   3.599 -# functions referencing it will be listed.
   3.600 -
   3.601  REFERENCED_BY_RELATION = NO
   3.602 -
   3.603 -# If the REFERENCES_RELATION tag is set to YES (the default) 
   3.604 -# then for each documented function all documented entities 
   3.605 -# called/used by that function will be listed.
   3.606 -
   3.607  REFERENCES_RELATION    = NO
   3.608 -
   3.609 -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
   3.610 -# will generate a verbatim copy of the header file for each class for 
   3.611 -# which an include is specified. Set to NO to disable this.
   3.612 -
   3.613 +REFERENCES_LINK_SOURCE = YES
   3.614 +USE_HTAGS              = NO
   3.615  VERBATIM_HEADERS       = NO
   3.616 -
   3.617  #---------------------------------------------------------------------------
   3.618  # configuration options related to the alphabetical class index
   3.619  #---------------------------------------------------------------------------
   3.620 -
   3.621 -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
   3.622 -# of all compounds will be generated. Enable this if the project 
   3.623 -# contains a lot of classes, structs, unions or interfaces.
   3.624 -
   3.625  ALPHABETICAL_INDEX     = YES
   3.626 -
   3.627 -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
   3.628 -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
   3.629 -# in which this list will be split (can be a number in the range [1..20])
   3.630 -
   3.631  COLS_IN_ALPHA_INDEX    = 2
   3.632 -
   3.633 -# In case all classes in a project start with a common prefix, all 
   3.634 -# classes will be put under the same header in the alphabetical index. 
   3.635 -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
   3.636 -# should be ignored while generating the index headers.
   3.637 -
   3.638  IGNORE_PREFIX          = 
   3.639 -
   3.640  #---------------------------------------------------------------------------
   3.641  # configuration options related to the HTML output
   3.642  #---------------------------------------------------------------------------
   3.643 -
   3.644 -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
   3.645 -# generate HTML output.
   3.646 -
   3.647  GENERATE_HTML          = YES
   3.648 -
   3.649 -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
   3.650 -# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
   3.651 -# put in front of it. If left blank `html' will be used as the default path.
   3.652 -
   3.653  HTML_OUTPUT            = html
   3.654 -
   3.655 -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
   3.656 -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
   3.657 -# doxygen will generate files with .html extension.
   3.658 -
   3.659  HTML_FILE_EXTENSION    = .html
   3.660 -
   3.661 -# The HTML_HEADER tag can be used to specify a personal HTML header for 
   3.662 -# each generated HTML page. If it is left blank doxygen will generate a 
   3.663 -# standard header.
   3.664 -
   3.665  HTML_HEADER            = 
   3.666 -
   3.667 -# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
   3.668 -# each generated HTML page. If it is left blank doxygen will generate a 
   3.669 -# standard footer.
   3.670 -
   3.671  HTML_FOOTER            = 
   3.672 -
   3.673 -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 
   3.674 -# style sheet that is used by each HTML page. It can be used to 
   3.675 -# fine-tune the look of the HTML output. If the tag is left blank doxygen 
   3.676 -# will generate a default style sheet. Note that doxygen will try to copy 
   3.677 -# the style sheet file to the HTML output directory, so don't put your own 
   3.678 -# stylesheet in the HTML output directory as well, or it will be erased!
   3.679 -
   3.680  HTML_STYLESHEET        = 
   3.681 -
   3.682 -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
   3.683 -# files or namespaces will be aligned in HTML using tables. If set to 
   3.684 -# NO a bullet list will be used.
   3.685 -
   3.686  HTML_ALIGN_MEMBERS     = YES
   3.687 -
   3.688 -# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
   3.689 -# will be generated that can be used as input for tools like the 
   3.690 -# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
   3.691 -# of the generated HTML documentation.
   3.692 -
   3.693  GENERATE_HTMLHELP      = NO
   3.694 -
   3.695 -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 
   3.696 -# be used to specify the file name of the resulting .chm file. You 
   3.697 -# can add a path in front of the file if the result should not be 
   3.698 -# written to the html output directory.
   3.699 -
   3.700 +GENERATE_DOCSET        = NO
   3.701 +DOCSET_FEEDNAME        = "Doxygen generated docs"
   3.702 +DOCSET_BUNDLE_ID       = org.doxygen.Project
   3.703 +HTML_DYNAMIC_SECTIONS  = NO
   3.704  CHM_FILE               = 
   3.705 -
   3.706 -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 
   3.707 -# be used to specify the location (absolute path including file name) of 
   3.708 -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 
   3.709 -# the HTML help compiler on the generated index.hhp.
   3.710 -
   3.711  HHC_LOCATION           = 
   3.712 -
   3.713 -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
   3.714 -# controls if a separate .chi index file is generated (YES) or that 
   3.715 -# it should be included in the master .chm file (NO).
   3.716 -
   3.717  GENERATE_CHI           = NO
   3.718 -
   3.719 -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
   3.720 -# controls whether a binary table of contents is generated (YES) or a 
   3.721 -# normal table of contents (NO) in the .chm file.
   3.722 -
   3.723  BINARY_TOC             = NO
   3.724 -
   3.725 -# The TOC_EXPAND flag can be set to YES to add extra items for group members 
   3.726 -# to the contents of the HTML help documentation and to the tree view.
   3.727 -
   3.728  TOC_EXPAND             = NO
   3.729 -
   3.730 -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
   3.731 -# top of each HTML page. The value NO (the default) enables the index and 
   3.732 -# the value YES disables it.
   3.733 -
   3.734  DISABLE_INDEX          = NO
   3.735 -
   3.736 -# This tag can be used to set the number of enum values (range [1..20]) 
   3.737 -# that doxygen will group on one line in the generated HTML documentation.
   3.738 -
   3.739  ENUM_VALUES_PER_LINE   = 4
   3.740 -
   3.741 -# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
   3.742 -# generated containing a tree-like index structure (just like the one that 
   3.743 -# is generated for HTML Help). For this to work a browser that supports 
   3.744 -# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 
   3.745 -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 
   3.746 -# probably better off using the HTML help feature.
   3.747 -
   3.748  GENERATE_TREEVIEW      = YES
   3.749 -
   3.750 -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
   3.751 -# used to set the initial width (in pixels) of the frame in which the tree 
   3.752 -# is shown.
   3.753 -
   3.754  TREEVIEW_WIDTH         = 250
   3.755 -
   3.756  #---------------------------------------------------------------------------
   3.757  # configuration options related to the LaTeX output
   3.758  #---------------------------------------------------------------------------
   3.759 -
   3.760 -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
   3.761 -# generate Latex output.
   3.762 -
   3.763  GENERATE_LATEX         = NO
   3.764 -
   3.765 -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
   3.766 -# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
   3.767 -# put in front of it. If left blank `latex' will be used as the default path.
   3.768 -
   3.769  LATEX_OUTPUT           = latex
   3.770 -
   3.771 -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 
   3.772 -# invoked. If left blank `latex' will be used as the default command name.
   3.773 -
   3.774  LATEX_CMD_NAME         = latex
   3.775 -
   3.776 -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 
   3.777 -# generate index for LaTeX. If left blank `makeindex' will be used as the 
   3.778 -# default command name.
   3.779 -
   3.780  MAKEINDEX_CMD_NAME     = makeindex
   3.781 -
   3.782 -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
   3.783 -# LaTeX documents. This may be useful for small projects and may help to 
   3.784 -# save some trees in general.
   3.785 -
   3.786  COMPACT_LATEX          = YES
   3.787 -
   3.788 -# The PAPER_TYPE tag can be used to set the paper type that is used 
   3.789 -# by the printer. Possible values are: a4, a4wide, letter, legal and 
   3.790 -# executive. If left blank a4wide will be used.
   3.791 -
   3.792  PAPER_TYPE             = a4wide
   3.793 -
   3.794 -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
   3.795 -# packages that should be included in the LaTeX output.
   3.796 -
   3.797  EXTRA_PACKAGES         = amsmath \
   3.798                           amssymb
   3.799 -
   3.800 -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
   3.801 -# the generated latex document. The header should contain everything until 
   3.802 -# the first chapter. If it is left blank doxygen will generate a 
   3.803 -# standard header. Notice: only use this tag if you know what you are doing!
   3.804 -
   3.805  LATEX_HEADER           = 
   3.806 -
   3.807 -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
   3.808 -# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
   3.809 -# contain links (just like the HTML output) instead of page references 
   3.810 -# This makes the output suitable for online browsing using a pdf viewer.
   3.811 -
   3.812  PDF_HYPERLINKS         = YES
   3.813 -
   3.814 -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
   3.815 -# plain latex in the generated Makefile. Set this option to YES to get a 
   3.816 -# higher quality PDF documentation.
   3.817 -
   3.818  USE_PDFLATEX           = YES
   3.819 -
   3.820 -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
   3.821 -# command to the generated LaTeX files. This will instruct LaTeX to keep 
   3.822 -# running if errors occur, instead of asking the user for help. 
   3.823 -# This option is also used when generating formulas in HTML.
   3.824 -
   3.825  LATEX_BATCHMODE        = NO
   3.826 -
   3.827 -# If LATEX_HIDE_INDICES is set to YES then doxygen will not 
   3.828 -# include the index chapters (such as File Index, Compound Index, etc.) 
   3.829 -# in the output.
   3.830 -
   3.831  LATEX_HIDE_INDICES     = NO
   3.832 -
   3.833  #---------------------------------------------------------------------------
   3.834  # configuration options related to the RTF output
   3.835  #---------------------------------------------------------------------------
   3.836 -
   3.837 -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
   3.838 -# The RTF output is optimized for Word 97 and may not look very pretty with 
   3.839 -# other RTF readers or editors.
   3.840 -
   3.841  GENERATE_RTF           = NO
   3.842 -
   3.843 -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
   3.844 -# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
   3.845 -# put in front of it. If left blank `rtf' will be used as the default path.
   3.846 -
   3.847  RTF_OUTPUT             = rtf
   3.848 -
   3.849 -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
   3.850 -# RTF documents. This may be useful for small projects and may help to 
   3.851 -# save some trees in general.
   3.852 -
   3.853  COMPACT_RTF            = NO
   3.854 -
   3.855 -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
   3.856 -# will contain hyperlink fields. The RTF file will 
   3.857 -# contain links (just like the HTML output) instead of page references. 
   3.858 -# This makes the output suitable for online browsing using WORD or other 
   3.859 -# programs which support those fields. 
   3.860 -# Note: wordpad (write) and others do not support links.
   3.861 -
   3.862  RTF_HYPERLINKS         = NO
   3.863 -
   3.864 -# Load stylesheet definitions from file. Syntax is similar to doxygen's 
   3.865 -# config file, i.e. a series of assignments. You only have to provide 
   3.866 -# replacements, missing definitions are set to their default value.
   3.867 -
   3.868  RTF_STYLESHEET_FILE    = 
   3.869 -
   3.870 -# Set optional variables used in the generation of an rtf document. 
   3.871 -# Syntax is similar to doxygen's config file.
   3.872 -
   3.873  RTF_EXTENSIONS_FILE    = 
   3.874 -
   3.875  #---------------------------------------------------------------------------
   3.876  # configuration options related to the man page output
   3.877  #---------------------------------------------------------------------------
   3.878 -
   3.879 -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
   3.880 -# generate man pages
   3.881 -
   3.882  GENERATE_MAN           = NO
   3.883 -
   3.884 -# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
   3.885 -# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
   3.886 -# put in front of it. If left blank `man' will be used as the default path.
   3.887 -
   3.888  MAN_OUTPUT             = man
   3.889 -
   3.890 -# The MAN_EXTENSION tag determines the extension that is added to 
   3.891 -# the generated man pages (default is the subroutine's section .3)
   3.892 -
   3.893  MAN_EXTENSION          = .3
   3.894 -
   3.895 -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
   3.896 -# then it will generate one additional man file for each entity 
   3.897 -# documented in the real man page(s). These additional files 
   3.898 -# only source the real man page, but without them the man command 
   3.899 -# would be unable to find the correct page. The default is NO.
   3.900 -
   3.901  MAN_LINKS              = NO
   3.902 -
   3.903  #---------------------------------------------------------------------------
   3.904  # configuration options related to the XML output
   3.905  #---------------------------------------------------------------------------
   3.906 -
   3.907 -# If the GENERATE_XML tag is set to YES Doxygen will 
   3.908 -# generate an XML file that captures the structure of 
   3.909 -# the code including all documentation.
   3.910 -
   3.911  GENERATE_XML           = NO
   3.912 -
   3.913 -# The XML_OUTPUT tag is used to specify where the XML pages will be put. 
   3.914 -# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
   3.915 -# put in front of it. If left blank `xml' will be used as the default path.
   3.916 -
   3.917  XML_OUTPUT             = xml
   3.918 -
   3.919 -# The XML_SCHEMA tag can be used to specify an XML schema, 
   3.920 -# which can be used by a validating XML parser to check the 
   3.921 -# syntax of the XML files.
   3.922 -
   3.923  XML_SCHEMA             = 
   3.924 -
   3.925 -# The XML_DTD tag can be used to specify an XML DTD, 
   3.926 -# which can be used by a validating XML parser to check the 
   3.927 -# syntax of the XML files.
   3.928 -
   3.929  XML_DTD                = 
   3.930 -
   3.931 -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 
   3.932 -# dump the program listings (including syntax highlighting 
   3.933 -# and cross-referencing information) to the XML output. Note that 
   3.934 -# enabling this will significantly increase the size of the XML output.
   3.935 -
   3.936  XML_PROGRAMLISTING     = YES
   3.937 -
   3.938  #---------------------------------------------------------------------------
   3.939  # configuration options for the AutoGen Definitions output
   3.940  #---------------------------------------------------------------------------
   3.941 -
   3.942 -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 
   3.943 -# generate an AutoGen Definitions (see autogen.sf.net) file 
   3.944 -# that captures the structure of the code including all 
   3.945 -# documentation. Note that this feature is still experimental 
   3.946 -# and incomplete at the moment.
   3.947 -
   3.948  GENERATE_AUTOGEN_DEF   = NO
   3.949 -
   3.950  #---------------------------------------------------------------------------
   3.951  # configuration options related to the Perl module output
   3.952  #---------------------------------------------------------------------------
   3.953 -
   3.954 -# If the GENERATE_PERLMOD tag is set to YES Doxygen will 
   3.955 -# generate a Perl module file that captures the structure of 
   3.956 -# the code including all documentation. Note that this 
   3.957 -# feature is still experimental and incomplete at the 
   3.958 -# moment.
   3.959 -
   3.960  GENERATE_PERLMOD       = NO
   3.961 -
   3.962 -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 
   3.963 -# the necessary Makefile rules, Perl scripts and LaTeX code to be able 
   3.964 -# to generate PDF and DVI output from the Perl module output.
   3.965 -
   3.966  PERLMOD_LATEX          = NO
   3.967 -
   3.968 -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 
   3.969 -# nicely formatted so it can be parsed by a human reader.  This is useful 
   3.970 -# if you want to understand what is going on.  On the other hand, if this 
   3.971 -# tag is set to NO the size of the Perl module output will be much smaller 
   3.972 -# and Perl will parse it just the same.
   3.973 -
   3.974  PERLMOD_PRETTY         = YES
   3.975 -
   3.976 -# The names of the make variables in the generated doxyrules.make file 
   3.977 -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 
   3.978 -# This is useful so different doxyrules.make files included by the same 
   3.979 -# Makefile don't overwrite each other's variables.
   3.980 -
   3.981  PERLMOD_MAKEVAR_PREFIX = 
   3.982 -
   3.983  #---------------------------------------------------------------------------
   3.984  # Configuration options related to the preprocessor   
   3.985  #---------------------------------------------------------------------------
   3.986 -
   3.987 -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
   3.988 -# evaluate all C-preprocessor directives found in the sources and include 
   3.989 -# files.
   3.990 -
   3.991  ENABLE_PREPROCESSING   = YES
   3.992 -
   3.993 -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
   3.994 -# names in the source code. If set to NO (the default) only conditional 
   3.995 -# compilation will be performed. Macro expansion can be done in a controlled 
   3.996 -# way by setting EXPAND_ONLY_PREDEF to YES.
   3.997 -
   3.998  MACRO_EXPANSION        = NO
   3.999 -
  3.1000 -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
  3.1001 -# then the macro expansion is limited to the macros specified with the 
  3.1002 -# PREDEFINED and EXPAND_AS_PREDEFINED tags.
  3.1003 -
  3.1004  EXPAND_ONLY_PREDEF     = NO
  3.1005 -
  3.1006 -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
  3.1007 -# in the INCLUDE_PATH (see below) will be search if a #include is found.
  3.1008 -
  3.1009  SEARCH_INCLUDES        = YES
  3.1010 -
  3.1011 -# The INCLUDE_PATH tag can be used to specify one or more directories that 
  3.1012 -# contain include files that are not input files but should be processed by 
  3.1013 -# the preprocessor.
  3.1014 -
  3.1015  INCLUDE_PATH           = 
  3.1016 -
  3.1017 -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
  3.1018 -# patterns (like *.h and *.hpp) to filter out the header-files in the 
  3.1019 -# directories. If left blank, the patterns specified with FILE_PATTERNS will 
  3.1020 -# be used.
  3.1021 -
  3.1022  INCLUDE_FILE_PATTERNS  = 
  3.1023 -
  3.1024 -# The PREDEFINED tag can be used to specify one or more macro names that 
  3.1025 -# are defined before the preprocessor is started (similar to the -D option of 
  3.1026 -# gcc). The argument of the tag is a list of macros of the form: name 
  3.1027 -# or name=definition (no spaces). If the definition and the = are 
  3.1028 -# omitted =1 is assumed. To prevent a macro definition from being 
  3.1029 -# undefined via #undef or recursively expanded use the := operator 
  3.1030 -# instead of the = operator.
  3.1031 -
  3.1032  PREDEFINED             = DOXYGEN
  3.1033 -
  3.1034 -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
  3.1035 -# this tag can be used to specify a list of macro names that should be expanded. 
  3.1036 -# The macro definition that is found in the sources will be used. 
  3.1037 -# Use the PREDEFINED tag if you want to use a different macro definition.
  3.1038 -
  3.1039  EXPAND_AS_DEFINED      = 
  3.1040 -
  3.1041 -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
  3.1042 -# doxygen's preprocessor will remove all function-like macros that are alone 
  3.1043 -# on a line, have an all uppercase name, and do not end with a semicolon. Such 
  3.1044 -# function macros are typically used for boiler-plate code, and will confuse 
  3.1045 -# the parser if not removed.
  3.1046 -
  3.1047  SKIP_FUNCTION_MACROS   = YES
  3.1048 -
  3.1049  #---------------------------------------------------------------------------
  3.1050  # Configuration::additions related to external references   
  3.1051  #---------------------------------------------------------------------------
  3.1052 -
  3.1053 -# The TAGFILES option can be used to specify one or more tagfiles. 
  3.1054 -# Optionally an initial location of the external documentation 
  3.1055 -# can be added for each tagfile. The format of a tag file without 
  3.1056 -# this location is as follows: 
  3.1057 -#   TAGFILES = file1 file2 ... 
  3.1058 -# Adding location for the tag files is done as follows: 
  3.1059 -#   TAGFILES = file1=loc1 "file2 = loc2" ... 
  3.1060 -# where "loc1" and "loc2" can be relative or absolute paths or 
  3.1061 -# URLs. If a location is present for each tag, the installdox tool 
  3.1062 -# does not have to be run to correct the links.
  3.1063 -# Note that each tag file must have a unique name
  3.1064 -# (where the name does NOT include the path)
  3.1065 -# If a tag file is not located in the directory in which doxygen 
  3.1066 -# is run, you must also specify the path to the tagfile here.
  3.1067 -
  3.1068 -TAGFILES               = "@abs_top_srcdir@/doc/libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/"
  3.1069 -
  3.1070 -# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
  3.1071 -# a tag file that is based on the input files it reads.
  3.1072 -
  3.1073 +TAGFILES               = "@abs_top_srcdir@/doc/libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/  "
  3.1074  GENERATE_TAGFILE       = html/lemon.tag
  3.1075 -
  3.1076 -# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
  3.1077 -# in the class index. If set to NO only the inherited external classes 
  3.1078 -# will be listed.
  3.1079 -
  3.1080  ALLEXTERNALS           = NO
  3.1081 -
  3.1082 -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
  3.1083 -# in the modules index. If set to NO, only the current project's groups will 
  3.1084 -# be listed.
  3.1085 -
  3.1086  EXTERNAL_GROUPS        = NO
  3.1087 -
  3.1088 -# The PERL_PATH should be the absolute path and name of the perl script 
  3.1089 -# interpreter (i.e. the result of `which perl').
  3.1090 -
  3.1091  PERL_PATH              = /usr/bin/perl
  3.1092 -
  3.1093  #---------------------------------------------------------------------------
  3.1094  # Configuration options related to the dot tool   
  3.1095  #---------------------------------------------------------------------------
  3.1096 -
  3.1097 -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
  3.1098 -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 
  3.1099 -# or super classes. Setting the tag to NO turns the diagrams off. Note that 
  3.1100 -# this option is superseded by the HAVE_DOT option below. This is only a 
  3.1101 -# fallback. It is recommended to install and use dot, since it yields more 
  3.1102 -# powerful graphs.
  3.1103 -
  3.1104  CLASS_DIAGRAMS         = NO
  3.1105 -
  3.1106 -# If set to YES, the inheritance and collaboration graphs will hide 
  3.1107 -# inheritance and usage relations if the target is undocumented 
  3.1108 -# or is not a class.
  3.1109 -
  3.1110 +MSCGEN_PATH            = 
  3.1111  HIDE_UNDOC_RELATIONS   = YES
  3.1112 -
  3.1113 -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
  3.1114 -# available from the path. This tool is part of Graphviz, a graph visualization 
  3.1115 -# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
  3.1116 -# have no effect if this option is set to NO (the default)
  3.1117 -
  3.1118  HAVE_DOT               = YES
  3.1119 -
  3.1120 -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
  3.1121 -# will generate a graph for each documented class showing the direct and 
  3.1122 -# indirect inheritance relations. Setting this tag to YES will force the 
  3.1123 -# the CLASS_DIAGRAMS tag to NO.
  3.1124 -
  3.1125  CLASS_GRAPH            = YES
  3.1126 -
  3.1127 -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
  3.1128 -# will generate a graph for each documented class showing the direct and 
  3.1129 -# indirect implementation dependencies (inheritance, containment, and 
  3.1130 -# class references variables) of the class with other documented classes.
  3.1131 -
  3.1132  COLLABORATION_GRAPH    = NO
  3.1133 -
  3.1134 -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 
  3.1135 -# will generate a graph for groups, showing the direct groups dependencies
  3.1136 -
  3.1137  GROUP_GRAPHS           = NO
  3.1138 -
  3.1139 -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 
  3.1140 -# collaboration diagrams in a style similar to the OMG's Unified Modeling 
  3.1141 -# Language.
  3.1142 -
  3.1143  UML_LOOK               = NO
  3.1144 -
  3.1145 -# If set to YES, the inheritance and collaboration graphs will show the 
  3.1146 -# relations between templates and their instances.
  3.1147 -
  3.1148  TEMPLATE_RELATIONS     = NO
  3.1149 -
  3.1150 -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
  3.1151 -# tags are set to YES then doxygen will generate a graph for each documented 
  3.1152 -# file showing the direct and indirect include dependencies of the file with 
  3.1153 -# other documented files.
  3.1154 -
  3.1155  INCLUDE_GRAPH          = NO
  3.1156 -
  3.1157 -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
  3.1158 -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
  3.1159 -# documented header file showing the documented files that directly or 
  3.1160 -# indirectly include this file.
  3.1161 -
  3.1162  INCLUDED_BY_GRAPH      = NO
  3.1163 -
  3.1164 -# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 
  3.1165 -# generate a call dependency graph for every global function or class method. 
  3.1166 -# Note that enabling this option will significantly increase the time of a run. 
  3.1167 -# So in most cases it will be better to enable call graphs for selected 
  3.1168 -# functions only using the \callgraph command.
  3.1169 -
  3.1170  CALL_GRAPH             = NO
  3.1171 -
  3.1172 -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
  3.1173 -# will graphical hierarchy of all classes instead of a textual one.
  3.1174 -
  3.1175 +CALLER_GRAPH           = NO
  3.1176  GRAPHICAL_HIERARCHY    = NO
  3.1177 -
  3.1178 -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 
  3.1179 -# then doxygen will show the dependencies a directory has on other directories 
  3.1180 -# in a graphical way. The dependency relations are determined by the #include
  3.1181 -# relations between the files in the directories.
  3.1182 -
  3.1183  DIRECTORY_GRAPH        = NO
  3.1184 -
  3.1185 -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 
  3.1186 -# generated by dot. Possible values are png, jpg, or gif
  3.1187 -# If left blank png will be used.
  3.1188 -
  3.1189  DOT_IMAGE_FORMAT       = png
  3.1190 -
  3.1191 -# The tag DOT_PATH can be used to specify the path where the dot tool can be 
  3.1192 -# found. If left blank, it is assumed the dot tool can be found in the path.
  3.1193 -
  3.1194  DOT_PATH               = 
  3.1195 -
  3.1196 -# The DOTFILE_DIRS tag can be used to specify one or more directories that 
  3.1197 -# contain dot files that are included in the documentation (see the 
  3.1198 -# \dotfile command).
  3.1199 -
  3.1200  DOTFILE_DIRS           = 
  3.1201 -
  3.1202 -# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 
  3.1203 -# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
  3.1204 -# this value, doxygen will try to truncate the graph, so that it fits within 
  3.1205 -# the specified constraint. Beware that most browsers cannot cope with very 
  3.1206 -# large images.
  3.1207 -
  3.1208 -MAX_DOT_GRAPH_WIDTH    = 1024
  3.1209 -
  3.1210 -# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 
  3.1211 -# (in pixels) of the graphs generated by dot. If a graph becomes larger than 
  3.1212 -# this value, doxygen will try to truncate the graph, so that it fits within 
  3.1213 -# the specified constraint. Beware that most browsers cannot cope with very 
  3.1214 -# large images.
  3.1215 -
  3.1216 -MAX_DOT_GRAPH_HEIGHT   = 1024
  3.1217 -
  3.1218 -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 
  3.1219 -# graphs generated by dot. A depth value of 3 means that only nodes reachable 
  3.1220 -# from the root by following a path via at most 3 edges will be shown. Nodes 
  3.1221 -# that lay further from the root node will be omitted. Note that setting this 
  3.1222 -# option to 1 or 2 may greatly reduce the computation time needed for large 
  3.1223 -# code bases. Also note that a graph may be further truncated if the graph's 
  3.1224 -# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 
  3.1225 -# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 
  3.1226 -# the graph is not depth-constrained.
  3.1227 -
  3.1228 +DOT_GRAPH_MAX_NODES    = 50
  3.1229  MAX_DOT_GRAPH_DEPTH    = 0
  3.1230 -
  3.1231 -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 
  3.1232 -# background. This is disabled by default, which results in a white background. 
  3.1233 -# Warning: Depending on the platform used, enabling this option may lead to 
  3.1234 -# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 
  3.1235 -# read).
  3.1236 -
  3.1237  DOT_TRANSPARENT        = NO
  3.1238 -
  3.1239 -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 
  3.1240 -# files in one run (i.e. multiple -o and -T options on the command line). This 
  3.1241 -# makes dot run faster, but since only newer versions of dot (>1.8.10) 
  3.1242 -# support this, this feature is disabled by default.
  3.1243 -
  3.1244  DOT_MULTI_TARGETS      = NO
  3.1245 -
  3.1246 -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 
  3.1247 -# generate a legend page explaining the meaning of the various boxes and 
  3.1248 -# arrows in the dot generated graphs.
  3.1249 -
  3.1250  GENERATE_LEGEND        = YES
  3.1251 -
  3.1252 -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
  3.1253 -# remove the intermediate dot files that are used to generate 
  3.1254 -# the various graphs.
  3.1255 -
  3.1256  DOT_CLEANUP            = YES
  3.1257 -
  3.1258  #---------------------------------------------------------------------------
  3.1259  # Configuration::additions related to the search engine   
  3.1260  #---------------------------------------------------------------------------
  3.1261 -
  3.1262 -# The SEARCHENGINE tag specifies whether or not a search engine should be 
  3.1263 -# used. If set to NO the values of all tags below this one will be ignored.
  3.1264 -
  3.1265  SEARCHENGINE           = NO
     4.1 --- a/doc/Makefile.am	Thu Apr 24 13:53:09 2008 +0100
     4.2 +++ b/doc/Makefile.am	Mon Apr 28 11:12:33 2008 +0100
     4.3 @@ -8,10 +8,38 @@
     4.4  	doc/namespaces.dox \
     4.5  	doc/html
     4.6  
     4.7 +DOC_EPS_IMAGES18 = \
     4.8 +	nodeshape_0.eps \
     4.9 +	nodeshape_1.eps \
    4.10 +	nodeshape_2.eps \
    4.11 +	nodeshape_3.eps \
    4.12 +	nodeshape_4.eps
    4.13 +
    4.14 +DOC_EPS_IMAGES = \
    4.15 +	$(DOC_EPS_IMAGES18)
    4.16 +
    4.17 +DOC_PNG_IMAGES = \
    4.18 +	$(DOC_EPS_IMAGES:%.eps=doc/gen-images/%.png)
    4.19 +
    4.20 +EXTRA_DIST += $(DOC_EPS_IMAGES:%=doc/images/%)
    4.21 +
    4.22  doc/html:
    4.23  	$(MAKE) $(AM_MAKEFLAGS) html
    4.24  
    4.25 -html-local:
    4.26 +GS_COMMAND=gs -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4
    4.27 +
    4.28 +$(DOC_EPS_IMAGES18:%.eps=doc/gen-images/%.png): doc/gen-images/%.png: doc/images/%.eps
    4.29 +	-mkdir doc/gen-images
    4.30 +	if test ${gs_found} = yes; then \
    4.31 +	  $(GS_COMMAND) -sDEVICE=pngalpha -r18 -sOutputFile=$@ $<; \
    4.32 +	else \
    4.33 +	  echo; \
    4.34 +	  echo "Ghostscript not found."; \
    4.35 +	  echo; \
    4.36 +	  exit 1; \
    4.37 +	fi
    4.38 +
    4.39 +html-local: $(DOC_PNG_IMAGES)
    4.40  	if test ${doxygen_found} = yes; then \
    4.41  	  cd doc; \
    4.42  	  doxygen Doxyfile; \
    4.43 @@ -26,6 +54,8 @@
    4.44  clean-local:
    4.45  	-rm -rf doc/html
    4.46  	-rm -f doc/doxygen.log
    4.47 +	-rm -f $(DOC_PNG_IMAGES)
    4.48 +	-rm -rf doc/gen-images
    4.49  
    4.50  update-external-tags:
    4.51  	wget -O doc/libstdc++.tag.tmp http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag && \
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/doc/images/nodeshape_0.eps	Mon Apr 28 11:12:33 2008 +0100
     5.3 @@ -0,0 +1,57 @@
     5.4 +%!PS-Adobe-2.0 EPSF-2.0
     5.5 +%%Title: LEMON GraphToEps figure
     5.6 +%%Creator: LEMON GraphToEps function
     5.7 +%%BoundingBox: 0 0 200 200
     5.8 +%%EndComments
     5.9 +/lb { setlinewidth setrgbcolor newpath moveto
    5.10 +      4 2 roll 1 index 1 index curveto stroke } bind def
    5.11 +/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def
    5.12 +/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def
    5.13 +/sq { newpath 2 index 1 index add 2 index 2 index add moveto
    5.14 +      2 index 1 index sub 2 index 2 index add lineto
    5.15 +      2 index 1 index sub 2 index 2 index sub lineto
    5.16 +      2 index 1 index add 2 index 2 index sub lineto
    5.17 +      closepath pop pop pop} bind def
    5.18 +/di { newpath 2 index 1 index add 2 index moveto
    5.19 +      2 index             2 index 2 index add lineto
    5.20 +      2 index 1 index sub 2 index             lineto
    5.21 +      2 index             2 index 2 index sub lineto
    5.22 +      closepath pop pop pop} bind def
    5.23 +/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill
    5.24 +     setrgbcolor 1.1 div c fill
    5.25 +   } bind def
    5.26 +/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill
    5.27 +     setrgbcolor 1.1 div sq fill
    5.28 +   } bind def
    5.29 +/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill
    5.30 +     setrgbcolor 1.1 div di fill
    5.31 +   } bind def
    5.32 +/arrl 1 def
    5.33 +/arrw 0.3 def
    5.34 +/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def
    5.35 +/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def
    5.36 +       /w exch def /len exch def
    5.37 +       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto
    5.38 +       len w sub arrl sub dx dy lrl
    5.39 +       arrw dy dx neg lrl
    5.40 +       dx arrl w add mul dy w 2 div arrw add mul sub
    5.41 +       dy arrl w add mul dx w 2 div arrw add mul add rlineto
    5.42 +       dx arrl w add mul neg dy w 2 div arrw add mul sub
    5.43 +       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto
    5.44 +       arrw dy dx neg lrl
    5.45 +       len w sub arrl sub neg dx dy lrl
    5.46 +       closepath fill } bind def
    5.47 +/cshow { 2 index 2 index moveto dup stringwidth pop
    5.48 +         neg 2 div fosi .35 mul neg rmoveto show pop pop} def
    5.49 +
    5.50 +gsave
    5.51 +100 dup scale
    5.52 +%Edges:
    5.53 +gsave
    5.54 +grestore
    5.55 +%Nodes:
    5.56 +gsave
    5.57 +1 1 1 0.2 1 0.2 nc
    5.58 +grestore
    5.59 +grestore
    5.60 +showpage
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/doc/images/nodeshape_1.eps	Mon Apr 28 11:12:33 2008 +0100
     6.3 @@ -0,0 +1,57 @@
     6.4 +%!PS-Adobe-2.0 EPSF-2.0
     6.5 +%%Title: LEMON GraphToEps figure
     6.6 +%%Creator: LEMON GraphToEps function
     6.7 +%%BoundingBox: 0 0 200 200
     6.8 +%%EndComments
     6.9 +/lb { setlinewidth setrgbcolor newpath moveto
    6.10 +      4 2 roll 1 index 1 index curveto stroke } bind def
    6.11 +/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def
    6.12 +/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def
    6.13 +/sq { newpath 2 index 1 index add 2 index 2 index add moveto
    6.14 +      2 index 1 index sub 2 index 2 index add lineto
    6.15 +      2 index 1 index sub 2 index 2 index sub lineto
    6.16 +      2 index 1 index add 2 index 2 index sub lineto
    6.17 +      closepath pop pop pop} bind def
    6.18 +/di { newpath 2 index 1 index add 2 index moveto
    6.19 +      2 index             2 index 2 index add lineto
    6.20 +      2 index 1 index sub 2 index             lineto
    6.21 +      2 index             2 index 2 index sub lineto
    6.22 +      closepath pop pop pop} bind def
    6.23 +/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill
    6.24 +     setrgbcolor 1.1 div c fill
    6.25 +   } bind def
    6.26 +/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill
    6.27 +     setrgbcolor 1.1 div sq fill
    6.28 +   } bind def
    6.29 +/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill
    6.30 +     setrgbcolor 1.1 div di fill
    6.31 +   } bind def
    6.32 +/arrl 1 def
    6.33 +/arrw 0.3 def
    6.34 +/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def
    6.35 +/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def
    6.36 +       /w exch def /len exch def
    6.37 +       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto
    6.38 +       len w sub arrl sub dx dy lrl
    6.39 +       arrw dy dx neg lrl
    6.40 +       dx arrl w add mul dy w 2 div arrw add mul sub
    6.41 +       dy arrl w add mul dx w 2 div arrw add mul add rlineto
    6.42 +       dx arrl w add mul neg dy w 2 div arrw add mul sub
    6.43 +       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto
    6.44 +       arrw dy dx neg lrl
    6.45 +       len w sub arrl sub neg dx dy lrl
    6.46 +       closepath fill } bind def
    6.47 +/cshow { 2 index 2 index moveto dup stringwidth pop
    6.48 +         neg 2 div fosi .35 mul neg rmoveto show pop pop} def
    6.49 +
    6.50 +gsave
    6.51 +100 dup scale
    6.52 +%Edges:
    6.53 +gsave
    6.54 +grestore
    6.55 +%Nodes:
    6.56 +gsave
    6.57 +1 1 1 0.2 1 0.2 nsq
    6.58 +grestore
    6.59 +grestore
    6.60 +showpage
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/doc/images/nodeshape_2.eps	Mon Apr 28 11:12:33 2008 +0100
     7.3 @@ -0,0 +1,57 @@
     7.4 +%!PS-Adobe-2.0 EPSF-2.0
     7.5 +%%Title: LEMON GraphToEps figure
     7.6 +%%Creator: LEMON GraphToEps function
     7.7 +%%BoundingBox: 0 0 200 200
     7.8 +%%EndComments
     7.9 +/lb { setlinewidth setrgbcolor newpath moveto
    7.10 +      4 2 roll 1 index 1 index curveto stroke } bind def
    7.11 +/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def
    7.12 +/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def
    7.13 +/sq { newpath 2 index 1 index add 2 index 2 index add moveto
    7.14 +      2 index 1 index sub 2 index 2 index add lineto
    7.15 +      2 index 1 index sub 2 index 2 index sub lineto
    7.16 +      2 index 1 index add 2 index 2 index sub lineto
    7.17 +      closepath pop pop pop} bind def
    7.18 +/di { newpath 2 index 1 index add 2 index moveto
    7.19 +      2 index             2 index 2 index add lineto
    7.20 +      2 index 1 index sub 2 index             lineto
    7.21 +      2 index             2 index 2 index sub lineto
    7.22 +      closepath pop pop pop} bind def
    7.23 +/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill
    7.24 +     setrgbcolor 1.1 div c fill
    7.25 +   } bind def
    7.26 +/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill
    7.27 +     setrgbcolor 1.1 div sq fill
    7.28 +   } bind def
    7.29 +/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill
    7.30 +     setrgbcolor 1.1 div di fill
    7.31 +   } bind def
    7.32 +/arrl 1 def
    7.33 +/arrw 0.3 def
    7.34 +/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def
    7.35 +/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def
    7.36 +       /w exch def /len exch def
    7.37 +       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto
    7.38 +       len w sub arrl sub dx dy lrl
    7.39 +       arrw dy dx neg lrl
    7.40 +       dx arrl w add mul dy w 2 div arrw add mul sub
    7.41 +       dy arrl w add mul dx w 2 div arrw add mul add rlineto
    7.42 +       dx arrl w add mul neg dy w 2 div arrw add mul sub
    7.43 +       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto
    7.44 +       arrw dy dx neg lrl
    7.45 +       len w sub arrl sub neg dx dy lrl
    7.46 +       closepath fill } bind def
    7.47 +/cshow { 2 index 2 index moveto dup stringwidth pop
    7.48 +         neg 2 div fosi .35 mul neg rmoveto show pop pop} def
    7.49 +
    7.50 +gsave
    7.51 +100 dup scale
    7.52 +%Edges:
    7.53 +gsave
    7.54 +grestore
    7.55 +%Nodes:
    7.56 +gsave
    7.57 +1 1 1 0.2 1 0.2 ndi
    7.58 +grestore
    7.59 +grestore
    7.60 +showpage
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/doc/images/nodeshape_3.eps	Mon Apr 28 11:12:33 2008 +0100
     8.3 @@ -0,0 +1,77 @@
     8.4 +%!PS-Adobe-2.0 EPSF-2.0
     8.5 +%%Title: LEMON GraphToEps figure
     8.6 +%%Creator: LEMON GraphToEps function
     8.7 +%%BoundingBox: 0 0 256 372
     8.8 +%%EndComments
     8.9 +/lb { setlinewidth setrgbcolor newpath moveto
    8.10 +      4 2 roll 1 index 1 index curveto stroke } bind def
    8.11 +/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def
    8.12 +/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def
    8.13 +/sq { newpath 2 index 1 index add 2 index 2 index add moveto
    8.14 +      2 index 1 index sub 2 index 2 index add lineto
    8.15 +      2 index 1 index sub 2 index 2 index sub lineto
    8.16 +      2 index 1 index add 2 index 2 index sub lineto
    8.17 +      closepath pop pop pop} bind def
    8.18 +/di { newpath 2 index 1 index add 2 index moveto
    8.19 +      2 index             2 index 2 index add lineto
    8.20 +      2 index 1 index sub 2 index             lineto
    8.21 +      2 index             2 index 2 index sub lineto
    8.22 +      closepath pop pop pop} bind def
    8.23 +/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill
    8.24 +     setrgbcolor 1.1 div c fill
    8.25 +   } bind def
    8.26 +/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill
    8.27 +     setrgbcolor 1.1 div sq fill
    8.28 +   } bind def
    8.29 +/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill
    8.30 +     setrgbcolor 1.1 div di fill
    8.31 +   } bind def
    8.32 +/nfemale { 0 0 0 setrgbcolor 3 index 0.0909091 1.5 mul mul setlinewidth
    8.33 +  newpath 5 index 5 index moveto 5 index 5 index 5 index 3.01 mul sub
    8.34 +  lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub moveto
    8.35 +  5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto stroke
    8.36 +  5 index 5 index 5 index c fill
    8.37 +  setrgbcolor 1.1 div c fill
    8.38 +  } bind def
    8.39 +/nmale {
    8.40 +  0 0 0 setrgbcolor 3 index 0.0909091 1.5 mul mul setlinewidth
    8.41 +  newpath 5 index 5 index moveto
    8.42 +  5 index 4 index 1 mul 1.5 mul add
    8.43 +  5 index 5 index 3 sqrt 1.5 mul mul add
    8.44 +  1 index 1 index lineto
    8.45 +  1 index 1 index 7 index sub moveto
    8.46 +  1 index 1 index lineto
    8.47 +  exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub lineto
    8.48 +  stroke
    8.49 +  5 index 5 index 5 index c fill
    8.50 +  setrgbcolor 1.1 div c fill
    8.51 +  } bind def
    8.52 +/arrl 1 def
    8.53 +/arrw 0.3 def
    8.54 +/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def
    8.55 +/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def
    8.56 +       /w exch def /len exch def
    8.57 +       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto
    8.58 +       len w sub arrl sub dx dy lrl
    8.59 +       arrw dy dx neg lrl
    8.60 +       dx arrl w add mul dy w 2 div arrw add mul sub
    8.61 +       dy arrl w add mul dx w 2 div arrw add mul add rlineto
    8.62 +       dx arrl w add mul neg dy w 2 div arrw add mul sub
    8.63 +       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto
    8.64 +       arrw dy dx neg lrl
    8.65 +       len w sub arrl sub neg dx dy lrl
    8.66 +       closepath fill } bind def
    8.67 +/cshow { 2 index 2 index moveto dup stringwidth pop
    8.68 +         neg 2 div fosi .35 mul neg rmoveto show pop pop} def
    8.69 +
    8.70 +gsave
    8.71 +100 dup scale
    8.72 +%Edges:
    8.73 +gsave
    8.74 +grestore
    8.75 +%Nodes:
    8.76 +gsave
    8.77 +1 1 1 0.2 1 0.2 nmale
    8.78 +grestore
    8.79 +grestore
    8.80 +showpage
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/doc/images/nodeshape_4.eps	Mon Apr 28 11:12:33 2008 +0100
     9.3 @@ -0,0 +1,77 @@
     9.4 +%!PS-Adobe-2.0 EPSF-2.0
     9.5 +%%Title: LEMON GraphToEps figure
     9.6 +%%Creator: LEMON GraphToEps function
     9.7 +%%BoundingBox: 0 -199 200 200
     9.8 +%%EndComments
     9.9 +/lb { setlinewidth setrgbcolor newpath moveto
    9.10 +      4 2 roll 1 index 1 index curveto stroke } bind def
    9.11 +/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def
    9.12 +/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def
    9.13 +/sq { newpath 2 index 1 index add 2 index 2 index add moveto
    9.14 +      2 index 1 index sub 2 index 2 index add lineto
    9.15 +      2 index 1 index sub 2 index 2 index sub lineto
    9.16 +      2 index 1 index add 2 index 2 index sub lineto
    9.17 +      closepath pop pop pop} bind def
    9.18 +/di { newpath 2 index 1 index add 2 index moveto
    9.19 +      2 index             2 index 2 index add lineto
    9.20 +      2 index 1 index sub 2 index             lineto
    9.21 +      2 index             2 index 2 index sub lineto
    9.22 +      closepath pop pop pop} bind def
    9.23 +/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill
    9.24 +     setrgbcolor 1.1 div c fill
    9.25 +   } bind def
    9.26 +/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill
    9.27 +     setrgbcolor 1.1 div sq fill
    9.28 +   } bind def
    9.29 +/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill
    9.30 +     setrgbcolor 1.1 div di fill
    9.31 +   } bind def
    9.32 +/nfemale { 0 0 0 setrgbcolor 3 index 0.0909091 1.5 mul mul setlinewidth
    9.33 +  newpath 5 index 5 index moveto 5 index 5 index 5 index 3.01 mul sub
    9.34 +  lineto 5 index 4 index .7 mul sub 5 index 5 index 2.2 mul sub moveto
    9.35 +  5 index 4 index .7 mul add 5 index 5 index 2.2 mul sub lineto stroke
    9.36 +  5 index 5 index 5 index c fill
    9.37 +  setrgbcolor 1.1 div c fill
    9.38 +  } bind def
    9.39 +/nmale {
    9.40 +  0 0 0 setrgbcolor 3 index 0.0909091 1.5 mul mul setlinewidth
    9.41 +  newpath 5 index 5 index moveto
    9.42 +  5 index 4 index 1 mul 1.5 mul add
    9.43 +  5 index 5 index 3 sqrt 1.5 mul mul add
    9.44 +  1 index 1 index lineto
    9.45 +  1 index 1 index 7 index sub moveto
    9.46 +  1 index 1 index lineto
    9.47 +  exch 5 index 3 sqrt .5 mul mul sub exch 5 index .5 mul sub lineto
    9.48 +  stroke
    9.49 +  5 index 5 index 5 index c fill
    9.50 +  setrgbcolor 1.1 div c fill
    9.51 +  } bind def
    9.52 +/arrl 1 def
    9.53 +/arrw 0.3 def
    9.54 +/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def
    9.55 +/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def
    9.56 +       /w exch def /len exch def
    9.57 +       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto
    9.58 +       len w sub arrl sub dx dy lrl
    9.59 +       arrw dy dx neg lrl
    9.60 +       dx arrl w add mul dy w 2 div arrw add mul sub
    9.61 +       dy arrl w add mul dx w 2 div arrw add mul add rlineto
    9.62 +       dx arrl w add mul neg dy w 2 div arrw add mul sub
    9.63 +       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto
    9.64 +       arrw dy dx neg lrl
    9.65 +       len w sub arrl sub neg dx dy lrl
    9.66 +       closepath fill } bind def
    9.67 +/cshow { 2 index 2 index moveto dup stringwidth pop
    9.68 +         neg 2 div fosi .35 mul neg rmoveto show pop pop} def
    9.69 +
    9.70 +gsave
    9.71 +100 dup scale
    9.72 +%Edges:
    9.73 +gsave
    9.74 +grestore
    9.75 +%Nodes:
    9.76 +gsave
    9.77 +1 1 1 0.2 1 0.2 nfemale
    9.78 +grestore
    9.79 +grestore
    9.80 +showpage