1 # This file describes the settings to be used by the documentation system 2 # doxygen (www.doxygen.org) for a project 3 # 4 # All text after a hash (#) is considered a comment and will be ignored 5 # The format is: 6 # TAG = value [value, ...] 7 # For lists items can also be appended using: 8 # TAG += value [value, ...] 9 # Values that contain spaces should be placed between quotes (" ") 10 11 #--------------------------------------------------------------------------- 12 # Project related configuration options 13 #--------------------------------------------------------------------------- 14 15 # This tag specifies the encoding used for all characters in the config file 16 # that follow. The default is UTF-8 which is also the encoding used for all 17 # text before the first occurrence of this tag. Doxygen uses libiconv (or the 18 # iconv built into libc) for the transcoding. See 19 # http://www.gnu.org/software/libiconv for the list of possible encodings. 20 21 DOXYFILE_ENCODING = UTF-8 22 23 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 24 # by quotes) that should identify the project. 25 26 PROJECT_NAME = Eigen 27 28 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 29 # This could be handy for archiving the generated documentation or 30 # if some version control system is used. 31 32 #EIGEN_VERSION is set in the root CMakeLists.txt 33 PROJECT_NUMBER = "${EIGEN_VERSION}" 34 35 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 36 # base path where the generated documentation will be put. 37 # If a relative path is entered, it will be relative to the location 38 # where doxygen was started. If left blank the current directory will be used. 39 40 OUTPUT_DIRECTORY = "${Eigen_BINARY_DIR}/doc" 41 42 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 43 # 4096 sub-directories (in 2 levels) under the output directory of each output 44 # format and will distribute the generated files over these directories. 45 # Enabling this option can be useful when feeding doxygen a huge amount of 46 # source files, where putting all generated files in the same directory would 47 # otherwise cause performance problems for the file system. 48 49 CREATE_SUBDIRS = NO 50 51 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 52 # documentation generated by doxygen is written. Doxygen will use this 53 # information to generate all constant output in the proper language. 54 # The default language is English, other supported languages are: 55 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 56 # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, 57 # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), 58 # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, 59 # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, 60 # and Ukrainian. 61 62 OUTPUT_LANGUAGE = English 63 64 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 65 # include brief member descriptions after the members that are listed in 66 # the file and class documentation (similar to JavaDoc). 67 # Set to NO to disable this. 68 69 BRIEF_MEMBER_DESC = YES 70 71 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 72 # the brief description of a member or function before the detailed description. 73 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 74 # brief descriptions will be completely suppressed. 75 76 REPEAT_BRIEF = YES 77 78 # This tag implements a quasi-intelligent brief description abbreviator 79 # that is used to form the text in various listings. Each string 80 # in this list, if found as the leading text of the brief description, will be 81 # stripped from the text and the result after processing the whole list, is 82 # used as the annotated text. Otherwise, the brief description is used as-is. 83 # If left blank, the following values are used ("$name" is automatically 84 # replaced with the name of the entity): "The $name class" "The $name widget" 85 # "The $name file" "is" "provides" "specifies" "contains" 86 # "represents" "a" "an" "the" 87 88 ABBREVIATE_BRIEF = "The $name class" \ 89 "The $name widget" \ 90 "The $name file" \ 91 is \ 92 provides \ 93 specifies \ 94 contains \ 95 represents \ 96 a \ 97 an \ 98 the 99 100 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 101 # Doxygen will generate a detailed section even if there is only a brief 102 # description. 103 104 ALWAYS_DETAILED_SEC = NO 105 106 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 107 # inherited members of a class in the documentation of that class as if those 108 # members were ordinary class members. Constructors, destructors and assignment 109 # operators of the base classes will not be shown. 110 111 INLINE_INHERITED_MEMB = YES 112 113 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 114 # path before files name in the file list and in the header files. If set 115 # to NO the shortest path that makes the file name unique will be used. 116 117 FULL_PATH_NAMES = NO 118 119 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 120 # can be used to strip a user-defined part of the path. Stripping is 121 # only done if one of the specified strings matches the left-hand part of 122 # the path. The tag can be used to show relative paths in the file list. 123 # If left blank the directory from which doxygen is run is used as the 124 # path to strip. 125 126 STRIP_FROM_PATH = 127 128 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 129 # the path mentioned in the documentation of a class, which tells 130 # the reader which header file to include in order to use a class. 131 # If left blank only the name of the header file containing the class 132 # definition is used. Otherwise one should specify the include paths that 133 # are normally passed to the compiler using the -I flag. 134 135 STRIP_FROM_INC_PATH = 136 137 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 138 # (but less readable) file names. This can be useful is your file systems 139 # doesn't support long names like on DOS, Mac, or CD-ROM. 140 141 SHORT_NAMES = NO 142 143 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 144 # will interpret the first line (until the first dot) of a JavaDoc-style 145 # comment as the brief description. If set to NO, the JavaDoc 146 # comments will behave just like regular Qt-style comments 147 # (thus requiring an explicit @brief command for a brief description.) 148 149 JAVADOC_AUTOBRIEF = NO 150 151 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will 152 # interpret the first line (until the first dot) of a Qt-style 153 # comment as the brief description. If set to NO, the comments 154 # will behave just like regular Qt-style comments (thus requiring 155 # an explicit \brief command for a brief description.) 156 157 QT_AUTOBRIEF = NO 158 159 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 160 # treat a multi-line C++ special comment block (i.e. a block of //! or /// 161 # comments) as a brief description. This used to be the default behaviour. 162 # The new default is to treat a multi-line C++ comment block as a detailed 163 # description. Set this tag to YES if you prefer the old behaviour instead. 164 165 MULTILINE_CPP_IS_BRIEF = NO 166 167 # If the DETAILS_AT_TOP tag is set to YES then Doxygen 168 # will output the detailed description near the top, like JavaDoc. 169 # If set to NO, the detailed description appears after the member 170 # documentation. 171 172 DETAILS_AT_TOP = YES 173 174 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 175 # member inherits the documentation from any documented member that it 176 # re-implements. 177 178 INHERIT_DOCS = YES 179 180 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 181 # a new page for each member. If set to NO, the documentation of a member will 182 # be part of the file/class/namespace that contains it. 183 184 SEPARATE_MEMBER_PAGES = NO 185 186 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 187 # Doxygen uses this value to replace tabs by spaces in code fragments. 188 189 TAB_SIZE = 8 190 191 # This tag can be used to specify a number of aliases that acts 192 # as commands in the documentation. An alias has the form "name=value". 193 # For example adding "sideeffect=\par Side Effects:\n" will allow you to 194 # put the command \sideeffect (or @sideeffect) in the documentation, which 195 # will result in a user-defined paragraph with heading "Side Effects:". 196 # You can put \n's in the value part of an alias to insert newlines. 197 198 ALIASES = "only_for_vectors=This is only for vectors (either row-vectors or column-vectors), i.e. matrices which are known at compile-time to have either one row or one column." \ 199 "array_module=This is defined in the %Array module. \code #include <Eigen/Array> \endcode" \ 200 "cholesky_module=This is defined in the %Cholesky module. \code #include <Eigen/Cholesky> \endcode" \ 201 "eigenvalues_module=This is defined in the %Eigenvalues module. \code #include <Eigen/Eigenvalues> \endcode" \ 202 "geometry_module=This is defined in the %Geometry module. \code #include <Eigen/Geometry> \endcode" \ 203 "householder_module=This is defined in the %Householder module. \code #include <Eigen/Householder> \endcode" \ 204 "jacobi_module=This is defined in the %Jacobi module. \code #include <Eigen/Jacobi> \endcode" \ 205 "lu_module=This is defined in the %LU module. \code #include <Eigen/LU> \endcode" \ 206 "qr_module=This is defined in the %QR module. \code #include <Eigen/QR> \endcode" \ 207 "svd_module=This is defined in the %SVD module. \code #include <Eigen/SVD> \endcode" \ 208 "label=\bug" \ 209 "matrixworld=<a href='#matrixonly' style='color:green;text-decoration: none;'>*</a>" \ 210 "arrayworld=<a href='#arrayonly' style='color:blue;text-decoration: none;'>*</a>" \ 211 "note_about_arbitrary_choice_of_solution=If there exists more than one solution, this method will arbitrarily choose one." \ 212 "note_about_using_kernel_to_study_multiple_solutions=If you need a complete analysis of the space of solutions, take the one solution obtained by this method and add to it elements of the kernel, as determined by kernel()." \ 213 "note_about_checking_solutions=This method just tries to find as good a solution as possible. If you want to check whether a solution exists or if it is accurate, just call this function to get a result and then compute the error of this result, or use MatrixBase::isApprox() directly, for instance like this: \code bool a_solution_exists = (A*result).isApprox(b, precision); \endcode This method avoids dividing by zero, so that the non-existence of a solution doesn't by itself mean that you'll get \c inf or \c nan values." \ 214 "note_try_to_help_rvo=This function returns the result by value. In order to make that efficient, it is implemented as just a return statement using a special constructor, hopefully allowing the compiler to perform a RVO (return value optimization)." 215 216 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 217 # sources only. Doxygen will then generate output that is more tailored for C. 218 # For instance, some of the names that are used will be different. The list 219 # of all members will be omitted, etc. 220 221 OPTIMIZE_OUTPUT_FOR_C = NO 222 223 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 224 # sources only. Doxygen will then generate output that is more tailored for 225 # Java. For instance, namespaces will be presented as packages, qualified 226 # scopes will look different, etc. 227 228 OPTIMIZE_OUTPUT_JAVA = NO 229 230 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 231 # sources only. Doxygen will then generate output that is more tailored for 232 # Fortran. 233 234 OPTIMIZE_FOR_FORTRAN = NO 235 236 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 237 # sources. Doxygen will then generate output that is tailored for 238 # VHDL. 239 240 OPTIMIZE_OUTPUT_VHDL = NO 241 242 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 243 # to include (a tag file for) the STL sources as input, then you should 244 # set this tag to YES in order to let doxygen match functions declarations and 245 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 246 # func(std::string) {}). This also make the inheritance and collaboration 247 # diagrams that involve STL classes more complete and accurate. 248 249 BUILTIN_STL_SUPPORT = NO 250 251 # If you use Microsoft's C++/CLI language, you should set this option to YES to 252 # enable parsing support. 253 254 CPP_CLI_SUPPORT = NO 255 256 # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 257 # Doxygen will parse them like normal C++ but will assume all classes use public 258 # instead of private inheritance when no explicit protection keyword is present. 259 260 SIP_SUPPORT = NO 261 262 # For Microsoft's IDL there are propget and propput attributes to indicate getter 263 # and setter methods for a property. Setting this option to YES (the default) 264 # will make doxygen to replace the get and set methods by a property in the 265 # documentation. This will only work if the methods are indeed getting or 266 # setting a simple type. If this is not the case, or you want to show the 267 # methods anyway, you should set this option to NO. 268 269 IDL_PROPERTY_SUPPORT = YES 270 271 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 272 # tag is set to YES, then doxygen will reuse the documentation of the first 273 # member in the group (if any) for the other members of the group. By default 274 # all members of a group must be documented explicitly. 275 276 DISTRIBUTE_GROUP_DOC = NO 277 278 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of 279 # the same type (for instance a group of public functions) to be put as a 280 # subgroup of that type (e.g. under the Public Functions section). Set it to 281 # NO to prevent subgrouping. Alternatively, this can be done per class using 282 # the \nosubgrouping command. 283 284 SUBGROUPING = YES 285 286 # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 287 # is documented as struct, union, or enum with the name of the typedef. So 288 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct 289 # with name TypeT. When disabled the typedef will appear as a member of a file, 290 # namespace, or class. And the struct will be named TypeS. This can typically 291 # be useful for C code in case the coding convention dictates that all compound 292 # types are typedef'ed and only the typedef is referenced, never the tag name. 293 294 TYPEDEF_HIDES_STRUCT = NO 295 296 #--------------------------------------------------------------------------- 297 # Build related configuration options 298 #--------------------------------------------------------------------------- 299 300 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 301 # documentation are documented, even if no documentation was available. 302 # Private class members and static file members will be hidden unless 303 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 304 305 EXTRACT_ALL = YES 306 307 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 308 # will be included in the documentation. 309 310 EXTRACT_PRIVATE = NO 311 312 # If the EXTRACT_STATIC tag is set to YES all static members of a file 313 # will be included in the documentation. 314 315 EXTRACT_STATIC = NO 316 317 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 318 # defined locally in source files will be included in the documentation. 319 # If set to NO only classes defined in header files are included. 320 321 EXTRACT_LOCAL_CLASSES = NO 322 323 # This flag is only useful for Objective-C code. When set to YES local 324 # methods, which are defined in the implementation section but not in 325 # the interface are included in the documentation. 326 # If set to NO (the default) only methods in the interface are included. 327 328 EXTRACT_LOCAL_METHODS = NO 329 330 # If this flag is set to YES, the members of anonymous namespaces will be 331 # extracted and appear in the documentation as a namespace called 332 # 'anonymous_namespace{file}', where file will be replaced with the base 333 # name of the file that contains the anonymous namespace. By default 334 # anonymous namespace are hidden. 335 336 EXTRACT_ANON_NSPACES = NO 337 338 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 339 # undocumented members of documented classes, files or namespaces. 340 # If set to NO (the default) these members will be included in the 341 # various overviews, but no documentation section is generated. 342 # This option has no effect if EXTRACT_ALL is enabled. 343 344 HIDE_UNDOC_MEMBERS = YES 345 346 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 347 # undocumented classes that are normally visible in the class hierarchy. 348 # If set to NO (the default) these classes will be included in the various 349 # overviews. This option has no effect if EXTRACT_ALL is enabled. 350 351 HIDE_UNDOC_CLASSES = YES 352 353 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 354 # friend (class|struct|union) declarations. 355 # If set to NO (the default) these declarations will be included in the 356 # documentation. 357 358 HIDE_FRIEND_COMPOUNDS = YES 359 360 # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 361 # documentation blocks found inside the body of a function. 362 # If set to NO (the default) these blocks will be appended to the 363 # function's detailed documentation block. 364 365 HIDE_IN_BODY_DOCS = NO 366 367 # The INTERNAL_DOCS tag determines if documentation 368 # that is typed after a \internal command is included. If the tag is set 369 # to NO (the default) then the documentation will be excluded. 370 # Set it to YES to include the internal documentation. 371 372 INTERNAL_DOCS = NO 373 374 # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 375 # file names in lower-case letters. If set to YES upper-case letters are also 376 # allowed. This is useful if you have classes or files whose names only differ 377 # in case and if your file system supports case sensitive file names. Windows 378 # and Mac users are advised to set this option to NO. 379 380 CASE_SENSE_NAMES = YES 381 382 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 383 # will show members with their full class and namespace scopes in the 384 # documentation. If set to YES the scope will be hidden. 385 386 HIDE_SCOPE_NAMES = YES 387 388 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 389 # will put a list of the files that are included by a file in the documentation 390 # of that file. 391 392 SHOW_INCLUDE_FILES = YES 393 394 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 395 # is inserted in the documentation for inline members. 396 397 INLINE_INFO = YES 398 399 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 400 # will sort the (detailed) documentation of file and class members 401 # alphabetically by member name. If set to NO the members will appear in 402 # declaration order. 403 404 SORT_MEMBER_DOCS = YES 405 406 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 407 # brief documentation of file, namespace and class members alphabetically 408 # by member name. If set to NO (the default) the members will appear in 409 # declaration order. 410 411 SORT_BRIEF_DOCS = YES 412 413 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 414 # hierarchy of group names into alphabetical order. If set to NO (the default) 415 # the group names will appear in their defined order. 416 417 SORT_GROUP_NAMES = NO 418 419 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 420 # sorted by fully-qualified names, including namespaces. If set to 421 # NO (the default), the class list will be sorted only by class name, 422 # not including the namespace part. 423 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 424 # Note: This option applies only to the class list, not to the 425 # alphabetical list. 426 427 SORT_BY_SCOPE_NAME = NO 428 429 # The GENERATE_TODOLIST tag can be used to enable (YES) or 430 # disable (NO) the todo list. This list is created by putting \todo 431 # commands in the documentation. 432 433 GENERATE_TODOLIST = NO 434 435 # The GENERATE_TESTLIST tag can be used to enable (YES) or 436 # disable (NO) the test list. This list is created by putting \test 437 # commands in the documentation. 438 439 GENERATE_TESTLIST = NO 440 441 # The GENERATE_BUGLIST tag can be used to enable (YES) or 442 # disable (NO) the bug list. This list is created by putting \bug 443 # commands in the documentation. 444 445 GENERATE_BUGLIST = NO 446 447 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 448 # disable (NO) the deprecated list. This list is created by putting 449 # \deprecated commands in the documentation. 450 451 GENERATE_DEPRECATEDLIST= NO 452 453 # The ENABLED_SECTIONS tag can be used to enable conditional 454 # documentation sections, marked by \if sectionname ... \endif. 455 456 ENABLED_SECTIONS = 457 458 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines 459 # the initial value of a variable or define consists of for it to appear in 460 # the documentation. If the initializer consists of more lines than specified 461 # here it will be hidden. Use a value of 0 to hide initializers completely. 462 # The appearance of the initializer of individual variables and defines in the 463 # documentation can be controlled using \showinitializer or \hideinitializer 464 # command in the documentation regardless of this setting. 465 466 MAX_INITIALIZER_LINES = 0 467 468 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated 469 # at the bottom of the documentation of classes and structs. If set to YES the 470 # list will mention the files that were used to generate the documentation. 471 472 SHOW_USED_FILES = YES 473 474 # If the sources in your project are distributed over multiple directories 475 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 476 # in the documentation. The default is NO. 477 478 SHOW_DIRECTORIES = NO 479 480 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. 481 # This will remove the Files entry from the Quick Index and from the 482 # Folder Tree View (if specified). The default is YES. 483 484 SHOW_FILES = YES 485 486 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the 487 # Namespaces page. This will remove the Namespaces entry from the Quick Index 488 # and from the Folder Tree View (if specified). The default is YES. 489 490 SHOW_NAMESPACES = YES 491 492 # The FILE_VERSION_FILTER tag can be used to specify a program or script that 493 # doxygen should invoke to get the current version for each file (typically from 494 # the version control system). Doxygen will invoke the program by executing (via 495 # popen()) the command <command> <input-file>, where <command> is the value of 496 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 497 # provided by doxygen. Whatever the program writes to standard output 498 # is used as the file version. See the manual for examples. 499 500 FILE_VERSION_FILTER = 501 502 #--------------------------------------------------------------------------- 503 # configuration options related to warning and progress messages 504 #--------------------------------------------------------------------------- 505 506 # The QUIET tag can be used to turn on/off the messages that are generated 507 # by doxygen. Possible values are YES and NO. If left blank NO is used. 508 509 QUIET = NO 510 511 # The WARNINGS tag can be used to turn on/off the warning messages that are 512 # generated by doxygen. Possible values are YES and NO. If left blank 513 # NO is used. 514 515 WARNINGS = YES 516 517 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 518 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 519 # automatically be disabled. 520 521 WARN_IF_UNDOCUMENTED = NO 522 523 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 524 # potential errors in the documentation, such as not documenting some 525 # parameters in a documented function, or documenting parameters that 526 # don't exist or using markup commands wrongly. 527 528 WARN_IF_DOC_ERROR = YES 529 530 # This WARN_NO_PARAMDOC option can be abled to get warnings for 531 # functions that are documented, but have no documentation for their parameters 532 # or return value. If set to NO (the default) doxygen will only warn about 533 # wrong or incomplete parameter documentation, but not about the absence of 534 # documentation. 535 536 WARN_NO_PARAMDOC = NO 537 538 # The WARN_FORMAT tag determines the format of the warning messages that 539 # doxygen can produce. The string should contain the $file, $line, and $text 540 # tags, which will be replaced by the file and line number from which the 541 # warning originated and the warning text. Optionally the format may contain 542 # $version, which will be replaced by the version of the file (if it could 543 # be obtained via FILE_VERSION_FILTER) 544 545 WARN_FORMAT = "$file:$line: $text" 546 547 # The WARN_LOGFILE tag can be used to specify a file to which warning 548 # and error messages should be written. If left blank the output is written 549 # to stderr. 550 551 WARN_LOGFILE = 552 553 #--------------------------------------------------------------------------- 554 # configuration options related to the input files 555 #--------------------------------------------------------------------------- 556 557 # The INPUT tag can be used to specify the files and/or directories that contain 558 # documented source files. You may enter file names like "myfile.cpp" or 559 # directories like "/usr/src/myproject". Separate the files or directories 560 # with spaces. 561 562 INPUT = "${Eigen_SOURCE_DIR}/Eigen" \ 563 "${Eigen_SOURCE_DIR}/doc" 564 565 # This tag can be used to specify the character encoding of the source files 566 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 567 # also the default input encoding. Doxygen uses libiconv (or the iconv built 568 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 569 # the list of possible encodings. 570 571 INPUT_ENCODING = UTF-8 572 573 # If the value of the INPUT tag contains directories, you can use the 574 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 575 # and *.h) to filter out the source-files in the directories. If left 576 # blank the following patterns are tested: 577 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 578 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 579 580 FILE_PATTERNS = * 581 582 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 583 # should be searched for input files as well. Possible values are YES and NO. 584 # If left blank NO is used. 585 586 RECURSIVE = YES 587 588 # The EXCLUDE tag can be used to specify files and/or directories that should 589 # excluded from the INPUT source files. This way you can easily exclude a 590 # subdirectory from a directory tree whose root is specified with the INPUT tag. 591 592 EXCLUDE = "${Eigen_SOURCE_DIR}/Eigen/Eigen2Support" \ 593 "${Eigen_SOURCE_DIR}/Eigen/src/Eigen2Support" \ 594 "${Eigen_SOURCE_DIR}/doc/examples" \ 595 "${Eigen_SOURCE_DIR}/doc/special_examples" \ 596 "${Eigen_SOURCE_DIR}/doc/snippets" 597 598 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or 599 # directories that are symbolic links (a Unix filesystem feature) are excluded 600 # from the input. 601 602 EXCLUDE_SYMLINKS = NO 603 604 # If the value of the INPUT tag contains directories, you can use the 605 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 606 # certain files from those directories. Note that the wildcards are matched 607 # against the file with absolute path, so to exclude all test directories 608 # for example use the pattern */test/* 609 610 EXCLUDE_PATTERNS = CMake* \ 611 *.txt \ 612 *.sh \ 613 *.orig \ 614 *.diff \ 615 diff \ 616 *~ \ 617 *. \ 618 *.sln \ 619 *.sdf \ 620 *.tmp \ 621 *.vcxproj \ 622 *.filters \ 623 *.user \ 624 *.suo 625 626 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 627 # (namespaces, classes, functions, etc.) that should be excluded from the 628 # output. The symbol name can be a fully qualified name, a word, or if the 629 # wildcard * is used, a substring. Examples: ANamespace, AClass, 630 # AClass::ANamespace, ANamespace::*Test 631 632 # This could used to clean up the "class hierarchy" page 633 EXCLUDE_SYMBOLS = internal::* Flagged* *InnerIterator* DenseStorage<* 634 635 # The EXAMPLE_PATH tag can be used to specify one or more files or 636 # directories that contain example code fragments that are included (see 637 # the \include command). 638 639 EXAMPLE_PATH = "${Eigen_SOURCE_DIR}/doc/snippets" \ 640 "${Eigen_BINARY_DIR}/doc/snippets" \ 641 "${Eigen_SOURCE_DIR}/doc/examples" \ 642 "${Eigen_BINARY_DIR}/doc/examples" \ 643 "${Eigen_SOURCE_DIR}/doc/special_examples" \ 644 "${Eigen_BINARY_DIR}/doc/special_examples" 645 646 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 647 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 648 # and *.h) to filter out the source-files in the directories. If left 649 # blank all files are included. 650 651 EXAMPLE_PATTERNS = * 652 653 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 654 # searched for input files to be used with the \include or \dontinclude 655 # commands irrespective of the value of the RECURSIVE tag. 656 # Possible values are YES and NO. If left blank NO is used. 657 658 EXAMPLE_RECURSIVE = NO 659 660 # The IMAGE_PATH tag can be used to specify one or more files or 661 # directories that contain image that are included in the documentation (see 662 # the \image command). 663 664 IMAGE_PATH = 665 666 # The INPUT_FILTER tag can be used to specify a program that doxygen should 667 # invoke to filter for each input file. Doxygen will invoke the filter program 668 # by executing (via popen()) the command <filter> <input-file>, where <filter> 669 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 670 # input file. Doxygen will then use the output that the filter program writes 671 # to standard output. If FILTER_PATTERNS is specified, this tag will be 672 # ignored. 673 674 INPUT_FILTER = 675 676 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 677 # basis. Doxygen will compare the file name with each pattern and apply the 678 # filter if there is a match. The filters are a list of the form: 679 # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 680 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 681 # is applied to all files. 682 683 FILTER_PATTERNS = 684 685 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 686 # INPUT_FILTER) will be used to filter the input files when producing source 687 # files to browse (i.e. when SOURCE_BROWSER is set to YES). 688 689 FILTER_SOURCE_FILES = NO 690 691 #--------------------------------------------------------------------------- 692 # configuration options related to source browsing 693 #--------------------------------------------------------------------------- 694 695 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 696 # be generated. Documented entities will be cross-referenced with these sources. 697 # Note: To get rid of all source code in the generated output, make sure also 698 # VERBATIM_HEADERS is set to NO. 699 700 SOURCE_BROWSER = NO 701 702 # Setting the INLINE_SOURCES tag to YES will include the body 703 # of functions and classes directly in the documentation. 704 705 INLINE_SOURCES = NO 706 707 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 708 # doxygen to hide any special comment blocks from generated source code 709 # fragments. Normal C and C++ comments will always remain visible. 710 711 STRIP_CODE_COMMENTS = YES 712 713 # If the REFERENCED_BY_RELATION tag is set to YES 714 # then for each documented function all documented 715 # functions referencing it will be listed. 716 717 REFERENCED_BY_RELATION = YES 718 719 # If the REFERENCES_RELATION tag is set to YES 720 # then for each documented function all documented entities 721 # called/used by that function will be listed. 722 723 REFERENCES_RELATION = YES 724 725 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 726 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 727 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 728 # link to the source code. Otherwise they will link to the documentstion. 729 730 REFERENCES_LINK_SOURCE = YES 731 732 # If the USE_HTAGS tag is set to YES then the references to source code 733 # will point to the HTML generated by the htags(1) tool instead of doxygen 734 # built-in source browser. The htags tool is part of GNU's global source 735 # tagging system (see http://www.gnu.org/software/global/global.html). You 736 # will need version 4.8.6 or higher. 737 738 USE_HTAGS = NO 739 740 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 741 # will generate a verbatim copy of the header file for each class for 742 # which an include is specified. Set to NO to disable this. 743 744 VERBATIM_HEADERS = YES 745 746 #--------------------------------------------------------------------------- 747 # configuration options related to the alphabetical class index 748 #--------------------------------------------------------------------------- 749 750 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 751 # of all compounds will be generated. Enable this if the project 752 # contains a lot of classes, structs, unions or interfaces. 753 754 ALPHABETICAL_INDEX = NO 755 756 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 757 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 758 # in which this list will be split (can be a number in the range [1..20]) 759 760 COLS_IN_ALPHA_INDEX = 5 761 762 # In case all classes in a project start with a common prefix, all 763 # classes will be put under the same header in the alphabetical index. 764 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 765 # should be ignored while generating the index headers. 766 767 IGNORE_PREFIX = 768 769 #--------------------------------------------------------------------------- 770 # configuration options related to the HTML output 771 #--------------------------------------------------------------------------- 772 773 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 774 # generate HTML output. 775 776 GENERATE_HTML = YES 777 778 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 779 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 780 # put in front of it. If left blank `html' will be used as the default path. 781 782 HTML_OUTPUT = html 783 784 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for 785 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank 786 # doxygen will generate files with .html extension. 787 788 HTML_FILE_EXTENSION = .html 789 790 # The HTML_HEADER tag can be used to specify a personal HTML header for 791 # each generated HTML page. If it is left blank doxygen will generate a 792 # standard header. 793 794 HTML_HEADER = "${Eigen_BINARY_DIR}/doc/eigendoxy_header.html" 795 796 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 797 # each generated HTML page. If it is left blank doxygen will generate a 798 # standard footer. 799 800 # the footer has not been customized yet, so let's use the default one 801 # ${Eigen_BINARY_DIR}/doc/eigendoxy_footer.html 802 HTML_FOOTER = 803 804 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading 805 # style sheet that is used by each HTML page. It can be used to 806 # fine-tune the look of the HTML output. If the tag is left blank doxygen 807 # will generate a default style sheet. Note that doxygen will try to copy 808 # the style sheet file to the HTML output directory, so don't put your own 809 # stylesheet in the HTML output directory as well, or it will be erased! 810 811 HTML_STYLESHEET = "${Eigen_SOURCE_DIR}/doc/eigendoxy.css" 812 813 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 814 # files or namespaces will be aligned in HTML using tables. If set to 815 # NO a bullet list will be used. 816 817 HTML_ALIGN_MEMBERS = YES 818 819 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 820 # will be generated that can be used as input for tools like the 821 # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 822 # of the generated HTML documentation. 823 824 GENERATE_HTMLHELP = NO 825 826 # If the GENERATE_DOCSET tag is set to YES, additional index files 827 # will be generated that can be used as input for Apple's Xcode 3 828 # integrated development environment, introduced with OSX 10.5 (Leopard). 829 # To create a documentation set, doxygen will generate a Makefile in the 830 # HTML output directory. Running make will produce the docset in that 831 # directory and running "make install" will install the docset in 832 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 833 # it at startup. 834 835 GENERATE_DOCSET = NO 836 837 # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 838 # feed. A documentation feed provides an umbrella under which multiple 839 # documentation sets from a single provider (such as a company or product suite) 840 # can be grouped. 841 842 DOCSET_FEEDNAME = "Doxygen generated docs" 843 844 # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 845 # should uniquely identify the documentation set bundle. This should be a 846 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 847 # will append .docset to the name. 848 849 DOCSET_BUNDLE_ID = org.doxygen.Project 850 851 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 852 # documentation will contain sections that can be hidden and shown after the 853 # page has loaded. For this to work a browser that supports 854 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 855 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 856 857 HTML_DYNAMIC_SECTIONS = YES 858 859 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 860 # be used to specify the file name of the resulting .chm file. You 861 # can add a path in front of the file if the result should not be 862 # written to the html output directory. 863 864 CHM_FILE = 865 866 # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 867 # be used to specify the location (absolute path including file name) of 868 # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 869 # the HTML help compiler on the generated index.hhp. 870 871 HHC_LOCATION = 872 873 # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 874 # controls if a separate .chi index file is generated (YES) or that 875 # it should be included in the master .chm file (NO). 876 877 GENERATE_CHI = NO 878 879 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING 880 # is used to encode HtmlHelp index (hhk), content (hhc) and project file 881 # content. 882 883 CHM_INDEX_ENCODING = 884 885 # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 886 # controls whether a binary table of contents is generated (YES) or a 887 # normal table of contents (NO) in the .chm file. 888 889 BINARY_TOC = NO 890 891 # The TOC_EXPAND flag can be set to YES to add extra items for group members 892 # to the contents of the HTML help documentation and to the tree view. 893 894 TOC_EXPAND = NO 895 896 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 897 # top of each HTML page. The value NO (the default) enables the index and 898 # the value YES disables it. 899 900 DISABLE_INDEX = NO 901 902 # This tag can be used to set the number of enum values (range [1..20]) 903 # that doxygen will group on one line in the generated HTML documentation. 904 905 ENUM_VALUES_PER_LINE = 1 906 907 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 908 # structure should be generated to display hierarchical information. 909 # If the tag value is set to FRAME, a side panel will be generated 910 # containing a tree-like index structure (just like the one that 911 # is generated for HTML Help). For this to work a browser that supports 912 # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 913 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 914 # probably better off using the HTML help feature. Other possible values 915 # for this tag are: HIERARCHIES, which will generate the Groups, Directories, 916 # and Class Hiererachy pages using a tree view instead of an ordered list; 917 # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which 918 # disables this behavior completely. For backwards compatibility with previous 919 # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE 920 # respectively. 921 922 GENERATE_TREEVIEW = NO 923 924 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 925 # used to set the initial width (in pixels) of the frame in which the tree 926 # is shown. 927 928 TREEVIEW_WIDTH = 250 929 930 # Use this tag to change the font size of Latex formulas included 931 # as images in the HTML documentation. The default is 10. Note that 932 # when you change the font size after a successful doxygen run you need 933 # to manually remove any form_*.png images from the HTML output directory 934 # to force them to be regenerated. 935 936 FORMULA_FONTSIZE = 12 937 938 #--------------------------------------------------------------------------- 939 # configuration options related to the LaTeX output 940 #--------------------------------------------------------------------------- 941 942 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 943 # generate Latex output. 944 945 GENERATE_LATEX = NO 946 947 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 948 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 949 # put in front of it. If left blank `latex' will be used as the default path. 950 951 LATEX_OUTPUT = latex 952 953 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 954 # invoked. If left blank `latex' will be used as the default command name. 955 956 LATEX_CMD_NAME = latex 957 958 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 959 # generate index for LaTeX. If left blank `makeindex' will be used as the 960 # default command name. 961 962 MAKEINDEX_CMD_NAME = makeindex 963 964 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 965 # LaTeX documents. This may be useful for small projects and may help to 966 # save some trees in general. 967 968 COMPACT_LATEX = NO 969 970 # The PAPER_TYPE tag can be used to set the paper type that is used 971 # by the printer. Possible values are: a4, a4wide, letter, legal and 972 # executive. If left blank a4wide will be used. 973 974 PAPER_TYPE = a4wide 975 976 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 977 # packages that should be included in the LaTeX output. 978 979 EXTRA_PACKAGES = amssymb \ 980 amsmath 981 982 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 983 # the generated latex document. The header should contain everything until 984 # the first chapter. If it is left blank doxygen will generate a 985 # standard header. Notice: only use this tag if you know what you are doing! 986 987 LATEX_HEADER = 988 989 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 990 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 991 # contain links (just like the HTML output) instead of page references 992 # This makes the output suitable for online browsing using a pdf viewer. 993 994 PDF_HYPERLINKS = NO 995 996 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 997 # plain latex in the generated Makefile. Set this option to YES to get a 998 # higher quality PDF documentation. 999 1000 USE_PDFLATEX = NO 1001 1002 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 1003 # command to the generated LaTeX files. This will instruct LaTeX to keep 1004 # running if errors occur, instead of asking the user for help. 1005 # This option is also used when generating formulas in HTML. 1006 1007 LATEX_BATCHMODE = NO 1008 1009 # If LATEX_HIDE_INDICES is set to YES then doxygen will not 1010 # include the index chapters (such as File Index, Compound Index, etc.) 1011 # in the output. 1012 1013 LATEX_HIDE_INDICES = NO 1014 1015 #--------------------------------------------------------------------------- 1016 # configuration options related to the RTF output 1017 #--------------------------------------------------------------------------- 1018 1019 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 1020 # The RTF output is optimized for Word 97 and may not look very pretty with 1021 # other RTF readers or editors. 1022 1023 GENERATE_RTF = NO 1024 1025 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 1026 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 1027 # put in front of it. If left blank `rtf' will be used as the default path. 1028 1029 RTF_OUTPUT = rtf 1030 1031 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 1032 # RTF documents. This may be useful for small projects and may help to 1033 # save some trees in general. 1034 1035 COMPACT_RTF = NO 1036 1037 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 1038 # will contain hyperlink fields. The RTF file will 1039 # contain links (just like the HTML output) instead of page references. 1040 # This makes the output suitable for online browsing using WORD or other 1041 # programs which support those fields. 1042 # Note: wordpad (write) and others do not support links. 1043 1044 RTF_HYPERLINKS = NO 1045 1046 # Load stylesheet definitions from file. Syntax is similar to doxygen's 1047 # config file, i.e. a series of assignments. You only have to provide 1048 # replacements, missing definitions are set to their default value. 1049 1050 RTF_STYLESHEET_FILE = 1051 1052 # Set optional variables used in the generation of an rtf document. 1053 # Syntax is similar to doxygen's config file. 1054 1055 RTF_EXTENSIONS_FILE = 1056 1057 #--------------------------------------------------------------------------- 1058 # configuration options related to the man page output 1059 #--------------------------------------------------------------------------- 1060 1061 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 1062 # generate man pages 1063 1064 GENERATE_MAN = NO 1065 1066 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 1067 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 1068 # put in front of it. If left blank `man' will be used as the default path. 1069 1070 MAN_OUTPUT = man 1071 1072 # The MAN_EXTENSION tag determines the extension that is added to 1073 # the generated man pages (default is the subroutine's section .3) 1074 1075 MAN_EXTENSION = .3 1076 1077 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, 1078 # then it will generate one additional man file for each entity 1079 # documented in the real man page(s). These additional files 1080 # only source the real man page, but without them the man command 1081 # would be unable to find the correct page. The default is NO. 1082 1083 MAN_LINKS = NO 1084 1085 #--------------------------------------------------------------------------- 1086 # configuration options related to the XML output 1087 #--------------------------------------------------------------------------- 1088 1089 # If the GENERATE_XML tag is set to YES Doxygen will 1090 # generate an XML file that captures the structure of 1091 # the code including all documentation. 1092 1093 GENERATE_XML = NO 1094 1095 # The XML_OUTPUT tag is used to specify where the XML pages will be put. 1096 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 1097 # put in front of it. If left blank `xml' will be used as the default path. 1098 1099 XML_OUTPUT = xml 1100 1101 # The XML_SCHEMA tag can be used to specify an XML schema, 1102 # which can be used by a validating XML parser to check the 1103 # syntax of the XML files. 1104 1105 XML_SCHEMA = 1106 1107 # The XML_DTD tag can be used to specify an XML DTD, 1108 # which can be used by a validating XML parser to check the 1109 # syntax of the XML files. 1110 1111 XML_DTD = 1112 1113 # If the XML_PROGRAMLISTING tag is set to YES Doxygen will 1114 # dump the program listings (including syntax highlighting 1115 # and cross-referencing information) to the XML output. Note that 1116 # enabling this will significantly increase the size of the XML output. 1117 1118 XML_PROGRAMLISTING = YES 1119 1120 #--------------------------------------------------------------------------- 1121 # configuration options for the AutoGen Definitions output 1122 #--------------------------------------------------------------------------- 1123 1124 # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 1125 # generate an AutoGen Definitions (see autogen.sf.net) file 1126 # that captures the structure of the code including all 1127 # documentation. Note that this feature is still experimental 1128 # and incomplete at the moment. 1129 1130 GENERATE_AUTOGEN_DEF = NO 1131 1132 #--------------------------------------------------------------------------- 1133 # configuration options related to the Perl module output 1134 #--------------------------------------------------------------------------- 1135 1136 # If the GENERATE_PERLMOD tag is set to YES Doxygen will 1137 # generate a Perl module file that captures the structure of 1138 # the code including all documentation. Note that this 1139 # feature is still experimental and incomplete at the 1140 # moment. 1141 1142 GENERATE_PERLMOD = NO 1143 1144 # If the PERLMOD_LATEX tag is set to YES Doxygen will generate 1145 # the necessary Makefile rules, Perl scripts and LaTeX code to be able 1146 # to generate PDF and DVI output from the Perl module output. 1147 1148 PERLMOD_LATEX = NO 1149 1150 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 1151 # nicely formatted so it can be parsed by a human reader. This is useful 1152 # if you want to understand what is going on. On the other hand, if this 1153 # tag is set to NO the size of the Perl module output will be much smaller 1154 # and Perl will parse it just the same. 1155 1156 PERLMOD_PRETTY = YES 1157 1158 # The names of the make variables in the generated doxyrules.make file 1159 # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 1160 # This is useful so different doxyrules.make files included by the same 1161 # Makefile don't overwrite each other's variables. 1162 1163 PERLMOD_MAKEVAR_PREFIX = 1164 1165 #--------------------------------------------------------------------------- 1166 # Configuration options related to the preprocessor 1167 #--------------------------------------------------------------------------- 1168 1169 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1170 # evaluate all C-preprocessor directives found in the sources and include 1171 # files. 1172 1173 ENABLE_PREPROCESSING = YES 1174 1175 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1176 # names in the source code. If set to NO (the default) only conditional 1177 # compilation will be performed. Macro expansion can be done in a controlled 1178 # way by setting EXPAND_ONLY_PREDEF to YES. 1179 1180 MACRO_EXPANSION = YES 1181 1182 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1183 # then the macro expansion is limited to the macros specified with the 1184 # PREDEFINED and EXPAND_AS_DEFINED tags. 1185 1186 EXPAND_ONLY_PREDEF = YES 1187 1188 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1189 # in the INCLUDE_PATH (see below) will be search if a #include is found. 1190 1191 SEARCH_INCLUDES = YES 1192 1193 # The INCLUDE_PATH tag can be used to specify one or more directories that 1194 # contain include files that are not input files but should be processed by 1195 # the preprocessor. 1196 1197 INCLUDE_PATH = "${Eigen_SOURCE_DIR}/Eigen/src/plugins" 1198 1199 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1200 # patterns (like *.h and *.hpp) to filter out the header-files in the 1201 # directories. If left blank, the patterns specified with FILE_PATTERNS will 1202 # be used. 1203 1204 INCLUDE_FILE_PATTERNS = 1205 1206 # The PREDEFINED tag can be used to specify one or more macro names that 1207 # are defined before the preprocessor is started (similar to the -D option of 1208 # gcc). The argument of the tag is a list of macros of the form: name 1209 # or name=definition (no spaces). If the definition and the = are 1210 # omitted =1 is assumed. To prevent a macro definition from being 1211 # undefined via #undef or recursively expanded use the := operator 1212 # instead of the = operator. 1213 1214 PREDEFINED = EIGEN_EMPTY_STRUCT \ 1215 EIGEN_PARSED_BY_DOXYGEN \ 1216 EIGEN_VECTORIZE \ 1217 EIGEN_QT_SUPPORT \ 1218 EIGEN_STRONG_INLINE=inline \ 1219 EIGEN2_SUPPORT_STAGE=99 1220 1221 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1222 # this tag can be used to specify a list of macro names that should be expanded. 1223 # The macro definition that is found in the sources will be used. 1224 # Use the PREDEFINED tag if you want to use a different macro definition. 1225 1226 EXPAND_AS_DEFINED = EIGEN_MAKE_TYPEDEFS \ 1227 EIGEN_MAKE_FIXED_TYPEDEFS \ 1228 EIGEN_MAKE_TYPEDEFS_ALL_SIZES \ 1229 EIGEN_MAKE_CWISE_BINARY_OP \ 1230 EIGEN_CWISE_UNOP_RETURN_TYPE \ 1231 EIGEN_CWISE_BINOP_RETURN_TYPE \ 1232 EIGEN_CWISE_PRODUCT_RETURN_TYPE \ 1233 EIGEN_CURRENT_STORAGE_BASE_CLASS \ 1234 _EIGEN_GENERIC_PUBLIC_INTERFACE \ 1235 EIGEN2_SUPPORT 1236 1237 # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1238 # doxygen's preprocessor will remove all function-like macros that are alone 1239 # on a line, have an all uppercase name, and do not end with a semicolon. Such 1240 # function macros are typically used for boiler-plate code, and will confuse 1241 # the parser if not removed. 1242 1243 SKIP_FUNCTION_MACROS = YES 1244 1245 #--------------------------------------------------------------------------- 1246 # Configuration::additions related to external references 1247 #--------------------------------------------------------------------------- 1248 1249 # The TAGFILES option can be used to specify one or more tagfiles. 1250 # Optionally an initial location of the external documentation 1251 # can be added for each tagfile. The format of a tag file without 1252 # this location is as follows: 1253 # TAGFILES = file1 file2 ... 1254 # Adding location for the tag files is done as follows: 1255 # TAGFILES = file1=loc1 "file2 = loc2" ... 1256 # where "loc1" and "loc2" can be relative or absolute paths or 1257 # URLs. If a location is present for each tag, the installdox tool 1258 # does not have to be run to correct the links. 1259 # Note that each tag file must have a unique name 1260 # (where the name does NOT include the path) 1261 # If a tag file is not located in the directory in which doxygen 1262 # is run, you must also specify the path to the tagfile here. 1263 1264 TAGFILES = "${Eigen_BINARY_DIR}/doc/eigen-unsupported.doxytags"=unsupported 1265 1266 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 1267 # a tag file that is based on the input files it reads. 1268 1269 GENERATE_TAGFILE = "${Eigen_BINARY_DIR}/doc/eigen.doxytags" 1270 1271 # If the ALLEXTERNALS tag is set to YES all external classes will be listed 1272 # in the class index. If set to NO only the inherited external classes 1273 # will be listed. 1274 1275 ALLEXTERNALS = NO 1276 1277 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1278 # in the modules index. If set to NO, only the current project's groups will 1279 # be listed. 1280 1281 EXTERNAL_GROUPS = YES 1282 1283 # The PERL_PATH should be the absolute path and name of the perl script 1284 # interpreter (i.e. the result of `which perl'). 1285 1286 PERL_PATH = /usr/bin/perl 1287 1288 #--------------------------------------------------------------------------- 1289 # Configuration options related to the dot tool 1290 #--------------------------------------------------------------------------- 1291 1292 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1293 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1294 # or super classes. Setting the tag to NO turns the diagrams off. Note that 1295 # this option is superseded by the HAVE_DOT option below. This is only a 1296 # fallback. It is recommended to install and use dot, since it yields more 1297 # powerful graphs. 1298 1299 CLASS_DIAGRAMS = YES 1300 1301 # You can define message sequence charts within doxygen comments using the \msc 1302 # command. Doxygen will then run the mscgen tool (see 1303 # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 1304 # documentation. The MSCGEN_PATH tag allows you to specify the directory where 1305 # the mscgen tool resides. If left empty the tool is assumed to be found in the 1306 # default search path. 1307 1308 MSCGEN_PATH = 1309 1310 # If set to YES, the inheritance and collaboration graphs will hide 1311 # inheritance and usage relations if the target is undocumented 1312 # or is not a class. 1313 1314 HIDE_UNDOC_RELATIONS = NO 1315 1316 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1317 # available from the path. This tool is part of Graphviz, a graph visualization 1318 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 1319 # have no effect if this option is set to NO (the default) 1320 1321 HAVE_DOT = YES 1322 1323 # By default doxygen will write a font called FreeSans.ttf to the output 1324 # directory and reference it in all dot files that doxygen generates. This 1325 # font does not include all possible unicode characters however, so when you need 1326 # these (or just want a differently looking font) you can specify the font name 1327 # using DOT_FONTNAME. You need need to make sure dot is able to find the font, 1328 # which can be done by putting it in a standard location or by setting the 1329 # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory 1330 # containing the font. 1331 1332 DOT_FONTNAME = FreeSans 1333 1334 # By default doxygen will tell dot to use the output directory to look for the 1335 # FreeSans.ttf font (which doxygen will put there itself). If you specify a 1336 # different font using DOT_FONTNAME you can set the path where dot 1337 # can find it using this tag. 1338 1339 DOT_FONTPATH = 1340 1341 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1342 # will generate a graph for each documented class showing the direct and 1343 # indirect inheritance relations. Setting this tag to YES will force the 1344 # the CLASS_DIAGRAMS tag to NO. 1345 1346 CLASS_GRAPH = YES 1347 1348 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1349 # will generate a graph for each documented class showing the direct and 1350 # indirect implementation dependencies (inheritance, containment, and 1351 # class references variables) of the class with other documented classes. 1352 1353 COLLABORATION_GRAPH = NO 1354 1355 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1356 # will generate a graph for groups, showing the direct groups dependencies 1357 1358 GROUP_GRAPHS = NO 1359 1360 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1361 # collaboration diagrams in a style similar to the OMG's Unified Modeling 1362 # Language. 1363 1364 UML_LOOK = YES 1365 1366 # If set to YES, the inheritance and collaboration graphs will show the 1367 # relations between templates and their instances. 1368 1369 TEMPLATE_RELATIONS = NO 1370 1371 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1372 # tags are set to YES then doxygen will generate a graph for each documented 1373 # file showing the direct and indirect include dependencies of the file with 1374 # other documented files. 1375 1376 INCLUDE_GRAPH = NO 1377 1378 # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1379 # HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1380 # documented header file showing the documented files that directly or 1381 # indirectly include this file. 1382 1383 INCLUDED_BY_GRAPH = NO 1384 1385 # If the CALL_GRAPH and HAVE_DOT options are set to YES then 1386 # doxygen will generate a call dependency graph for every global function 1387 # or class method. Note that enabling this option will significantly increase 1388 # the time of a run. So in most cases it will be better to enable call graphs 1389 # for selected functions only using the \callgraph command. 1390 1391 CALL_GRAPH = NO 1392 1393 # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 1394 # doxygen will generate a caller dependency graph for every global function 1395 # or class method. Note that enabling this option will significantly increase 1396 # the time of a run. So in most cases it will be better to enable caller 1397 # graphs for selected functions only using the \callergraph command. 1398 1399 CALLER_GRAPH = NO 1400 1401 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1402 # will graphical hierarchy of all classes instead of a textual one. 1403 1404 GRAPHICAL_HIERARCHY = NO 1405 1406 # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1407 # then doxygen will show the dependencies a directory has on other directories 1408 # in a graphical way. The dependency relations are determined by the #include 1409 # relations between the files in the directories. 1410 1411 DIRECTORY_GRAPH = NO 1412 1413 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1414 # generated by dot. Possible values are png, jpg, or gif 1415 # If left blank png will be used. 1416 1417 DOT_IMAGE_FORMAT = png 1418 1419 # The tag DOT_PATH can be used to specify the path where the dot tool can be 1420 # found. If left blank, it is assumed the dot tool can be found in the path. 1421 1422 DOT_PATH = 1423 1424 # The DOTFILE_DIRS tag can be used to specify one or more directories that 1425 # contain dot files that are included in the documentation (see the 1426 # \dotfile command). 1427 1428 DOTFILE_DIRS = 1429 1430 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1431 # nodes that will be shown in the graph. If the number of nodes in a graph 1432 # becomes larger than this value, doxygen will truncate the graph, which is 1433 # visualized by representing a node as a red box. Note that doxygen if the 1434 # number of direct children of the root node in a graph is already larger than 1435 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 1436 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1437 1438 DOT_GRAPH_MAX_NODES = 50 1439 1440 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1441 # graphs generated by dot. A depth value of 3 means that only nodes reachable 1442 # from the root by following a path via at most 3 edges will be shown. Nodes 1443 # that lay further from the root node will be omitted. Note that setting this 1444 # option to 1 or 2 may greatly reduce the computation time needed for large 1445 # code bases. Also note that the size of a graph can be further restricted by 1446 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1447 1448 MAX_DOT_GRAPH_DEPTH = 0 1449 1450 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1451 # background. This is enabled by default, which results in a transparent 1452 # background. Warning: Depending on the platform used, enabling this option 1453 # may lead to badly anti-aliased labels on the edges of a graph (i.e. they 1454 # become hard to read). 1455 1456 DOT_TRANSPARENT = NO 1457 1458 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1459 # files in one run (i.e. multiple -o and -T options on the command line). This 1460 # makes dot run faster, but since only newer versions of dot (>1.8.10) 1461 # support this, this feature is disabled by default. 1462 1463 DOT_MULTI_TARGETS = NO 1464 1465 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1466 # generate a legend page explaining the meaning of the various boxes and 1467 # arrows in the dot generated graphs. 1468 1469 GENERATE_LEGEND = YES 1470 1471 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1472 # remove the intermediate dot files that are used to generate 1473 # the various graphs. 1474 1475 DOT_CLEANUP = YES 1476 1477 #--------------------------------------------------------------------------- 1478 # Configuration::additions related to the search engine 1479 #--------------------------------------------------------------------------- 1480 1481 # The SEARCHENGINE tag specifies whether or not a search engine should be 1482 # used. If set to NO the values of all tags below this one will be ignored. 1483 1484 SEARCHENGINE = NO 1485