COIN-OR::LEMON - Graph Library

Changeset 939:1559584ca634 in lemon-0.x


Ignore:
Timestamp:
10/07/04 09:39:42 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1279
Message:
  • Change version 0.2 -> 0.3
  • Doxyfile change for right #include< >'s (in Doxygen 1.9 only)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r934 r939  
    11dnl Process this file with autoconf to produce a configure script.
    2 AC_INIT([LEMON], [0.2], [etik-ol@cs.elte.hu], [lemon])
     2AC_INIT([LEMON], [0.3], [etik-ol@cs.elte.hu], [lemon])
    33AC_CONFIG_AUX_DIR([config])
    44AM_INIT_AUTOMAKE(1.7)
  • doc/Doxyfile

    r922 r939  
    1 # Doxyfile 1.3.6
     1# Doxyfile 1.3.9
    22
    33# This file describes the settings to be used by the documentation system
     
    2424# if some version control system is used.
    2525
    26 PROJECT_NUMBER         = 0.2
     26PROJECT_NUMBER         = 0.3
    2727
    2828# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
     
    3333OUTPUT_DIRECTORY       =
    3434
     35# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
     36# 4096 sub-directories (in 2 levels) under the output directory of each output
     37# format and will distribute the generated files over these directories.
     38# Enabling this option can be useful when feeding doxygen a huge amount of source
     39# files, where putting all generated files in the same directory would otherwise
     40# cause performance problems for the file system.
     41
     42CREATE_SUBDIRS         = NO
     43
    3544# The OUTPUT_LANGUAGE tag is used to specify the language in which all
    3645# documentation generated by doxygen is written. Doxygen will use this
    3746# information to generate all constant output in the proper language.
    3847# The default language is English, other supported languages are:
    39 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
    40 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
    41 # (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese,
    42 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
     48# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
     49# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
     50# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
     51# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
     52# Swedish, and Ukrainian.
    4353
    4454OUTPUT_LANGUAGE        = English
     
    96106# to NO the shortest path that makes the file name unique will be used.
    97107
    98 FULL_PATH_NAMES        = NO
     108FULL_PATH_NAMES        = YES
    99109
    100110# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
    101111# can be used to strip a user-defined part of the path. Stripping is
    102112# only done if one of the specified strings matches the left-hand part of
    103 # the path. It is allowed to use relative paths in the argument list.
     113# the path. The tag can be used to show relative paths in the file list.
    104114# If left blank the directory from which doxygen is run is used as the
    105115# path to strip.
    106116
    107 STRIP_FROM_PATH        =
     117STRIP_FROM_PATH        = ../src
     118
     119# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
     120# the path mentioned in the documentation of a class, which tells
     121# the reader which header file to include in order to use a class.
     122# If left blank only the name of the header file containing the class
     123# definition is used. Otherwise one should specify the include paths that
     124# are normally passed to the compiler using the -I flag.
     125
     126STRIP_FROM_INC_PATH    = ../src
    108127
    109128# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
     
    212231EXTRACT_LOCAL_CLASSES  = YES
    213232
     233# This flag is only useful for Objective-C code. When set to YES local
     234# methods, which are defined in the implementation section but not in
     235# the interface are included in the documentation.
     236# If set to NO (the default) only methods in the interface are included.
     237
     238EXTRACT_LOCAL_METHODS  = NO
     239
    214240# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
    215241# undocumented members of documented classes, files or namespaces.
     
    252278# allowed. This is useful if you have classes or files whose names only differ
    253279# in case and if your file system supports case sensitive file names. Windows
    254 # users are advised to set this option to NO.
     280# and Mac users are advised to set this option to NO.
    255281
    256282CASE_SENSE_NAMES       = YES
     
    342368SHOW_USED_FILES        = YES
    343369
     370# If the sources in your project are distributed over multiple directories
     371# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
     372# in the documentation.
     373
     374SHOW_DIRECTORIES       = YES
     375
    344376#---------------------------------------------------------------------------
    345377# configuration options related to warning and progress messages
     
    393425
    394426INPUT                  = mainpage.dox \
    395                         graphs.dox \
     427                        graphs.dox \
    396428                         maps.dox \
    397429                         coding_style.dox \
     
    407439# blank the following patterns are tested:
    408440# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
    409 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
     441# *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
    410442
    411443FILE_PATTERNS          =
     
    465497# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
    466498# input file. Doxygen will then use the output that the filter program writes
    467 # to standard output.
     499# to standard output.  If FILTER_PATTERNS is specified, this tag will be
     500# ignored.
    468501
    469502INPUT_FILTER           =
     503
     504# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
     505# basis.  Doxygen will compare the file name with each pattern and apply the
     506# filter if there is a match.  The filters are a list of the form:
     507# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
     508# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
     509# is applied to all files.
     510
     511FILTER_PATTERNS        =
    470512
    471513# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
     
    921963# gcc). The argument of the tag is a list of macros of the form: name
    922964# or name=definition (no spaces). If the definition and the = are
    923 # omitted =1 is assumed.
     965# omitted =1 is assumed. To prevent a macro definition from being
     966# undefined via #undef or recursively expanded use the := operator
     967# instead of the = operator.
    924968
    925969PREDEFINED             = DOXYGEN
  • src/work/Doxyfile

    r922 r939  
    2424# if some version control system is used.
    2525
    26 PROJECT_NUMBER         = 0.2
     26PROJECT_NUMBER         = 0.3
    2727
    2828# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
Note: See TracChangeset for help on using the changeset viewer.