1
- # Doxyfile 1.8.9.1
1
+ # Doxyfile 1.8.13
2
2
3
3
# This file describes the settings to be used by the documentation system
4
4
# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = fermisurfer
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = 1.10.1
41
+ PROJECT_NUMBER = 2.0.0
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# for a project that appears at the top of each page and should give viewer a
@@ -252,7 +252,7 @@ TCL_SUBST =
252
252
# members will be omitted, etc.
253
253
# The default value is: NO.
254
254
255
- OPTIMIZE_OUTPUT_FOR_C = YES
255
+ OPTIMIZE_OUTPUT_FOR_C = NO
256
256
257
257
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
258
258
# Python sources only. Doxygen will then generate output that is more tailored
@@ -303,6 +303,15 @@ EXTENSION_MAPPING =
303
303
304
304
MARKDOWN_SUPPORT = YES
305
305
306
+ # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
307
+ # to that level are automatically included in the table of contents, even if
308
+ # they do not have an id attribute.
309
+ # Note: This feature currently applies only to Markdown headings.
310
+ # Minimum value: 0, maximum value: 99, default value: 0.
311
+ # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
312
+
313
+ TOC_INCLUDE_HEADINGS = 0
314
+
306
315
# When enabled doxygen tries to link words that correspond to documented
307
316
# classes, or namespaces to their corresponding documentation. Such a link can
308
317
# be prevented in individual cases by putting a % sign in front of the word or
@@ -353,6 +362,13 @@ IDL_PROPERTY_SUPPORT = YES
353
362
354
363
DISTRIBUTE_GROUP_DOC = NO
355
364
365
+ # If one adds a struct or class to a group and this option is enabled, then also
366
+ # any nested class or struct is added to the same group. By default this option
367
+ # is disabled and one has to add nested compounds explicitly via \ingroup.
368
+ # The default value is: NO.
369
+
370
+ GROUP_NESTED_COMPOUNDS = NO
371
+
356
372
# Set the SUBGROUPING tag to YES to allow class member groups of the same type
357
373
# (for instance a group of public functions) to be put as a subgroup of that
358
374
# type (e.g. under the Public Functions section). Set it to NO to prevent
@@ -515,7 +531,7 @@ CASE_SENSE_NAMES = NO
515
531
# scope will be hidden.
516
532
# The default value is: NO.
517
533
518
- HIDE_SCOPE_NAMES = YES
534
+ HIDE_SCOPE_NAMES = NO
519
535
520
536
# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
521
537
# append additional text to a page's title, such as Class Reference. If set to
@@ -742,6 +758,12 @@ WARN_IF_DOC_ERROR = YES
742
758
743
759
WARN_NO_PARAMDOC = NO
744
760
761
+ # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
762
+ # a warning is encountered.
763
+ # The default value is: NO.
764
+
765
+ WARN_AS_ERROR = NO
766
+
745
767
# The WARN_FORMAT tag determines the format of the warning messages that doxygen
746
768
# can produce. The string should contain the $file, $line, and $text tags, which
747
769
# will be replaced by the file and line number from which the warning originated
@@ -765,11 +787,10 @@ WARN_LOGFILE =
765
787
# The INPUT tag is used to specify the files and/or directories that contain
766
788
# documented source files. You may enter file names like myfile.cpp or
767
789
# directories like /usr/src/myproject. Separate the files or directories with
768
- # spaces.
790
+ # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
769
791
# Note: If this tag is empty the current directory is searched.
770
792
771
- INPUT = ../src \
772
- ../src/variable.h
793
+ INPUT = ../src
773
794
774
795
# This tag can be used to specify the character encoding of the source files
775
796
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -782,14 +803,20 @@ INPUT_ENCODING = UTF-8
782
803
783
804
# If the value of the INPUT tag contains directories, you can use the
784
805
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
785
- # *.h) to filter out the source-files in the directories. If left blank the
786
- # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
787
- # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
788
- # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
789
- # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
790
- # *.qsf, *.as and *.js.
806
+ # *.h) to filter out the source-files in the directories.
807
+ #
808
+ # Note that for custom extensions or not directly supported extensions you also
809
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
810
+ # read by doxygen.
811
+ #
812
+ # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
813
+ # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
814
+ # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
815
+ # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
816
+ # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf.
791
817
792
- FILE_PATTERNS = *.c
818
+ FILE_PATTERNS = *.cpp \
819
+ *.hpp
793
820
794
821
# The RECURSIVE tag can be used to specify whether or not subdirectories should
795
822
# be searched for input files as well.
@@ -873,6 +900,10 @@ IMAGE_PATH =
873
900
# Note that the filter must not add or remove lines; it is applied before the
874
901
# code is scanned, but not when the output code is generated. If lines are added
875
902
# or removed, the anchors will not be placed correctly.
903
+ #
904
+ # Note that for custom extensions or not directly supported extensions you also
905
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
906
+ # properly processed by doxygen.
876
907
877
908
INPUT_FILTER =
878
909
@@ -882,6 +913,10 @@ INPUT_FILTER =
882
913
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
883
914
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
884
915
# patterns match the file name, INPUT_FILTER is applied.
916
+ #
917
+ # Note that for custom extensions or not directly supported extensions you also
918
+ # need to set EXTENSION_MAPPING for the extension otherwise the files are not
919
+ # properly processed by doxygen.
885
920
886
921
FILTER_PATTERNS =
887
922
@@ -999,7 +1034,7 @@ VERBATIM_HEADERS = YES
999
1034
# rich C++ code for which doxygen's built-in parser lacks the necessary type
1000
1035
# information.
1001
1036
# Note: The availability of this option depends on whether or not doxygen was
1002
- # compiled with the --with- libclang option.
1037
+ # generated with the -Duse- libclang=ON option for CMake .
1003
1038
# The default value is: NO.
1004
1039
1005
1040
CLANG_ASSISTED_PARSING = NO
@@ -1159,8 +1194,9 @@ HTML_COLORSTYLE_GAMMA = 80
1159
1194
1160
1195
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1161
1196
# page will contain the date and time when the page was generated. Setting this
1162
- # to NO can help when comparing the output of multiple runs.
1163
- # The default value is: YES.
1197
+ # to YES can help to show when doxygen was last run and thus if the
1198
+ # documentation is up to date.
1199
+ # The default value is: NO.
1164
1200
# This tag requires that the tag GENERATE_HTML is set to YES.
1165
1201
1166
1202
HTML_TIMESTAMP = YES
@@ -1634,9 +1670,12 @@ COMPACT_LATEX = NO
1634
1670
PAPER_TYPE = a4
1635
1671
1636
1672
# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1637
- # that should be included in the LaTeX output. To get the times font for
1638
- # instance you can specify
1639
- # EXTRA_PACKAGES=times
1673
+ # that should be included in the LaTeX output. The package can be specified just
1674
+ # by its name or with the correct syntax as to be used with the LaTeX
1675
+ # \usepackage command. To get the times font for instance you can specify :
1676
+ # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
1677
+ # To use the option intlimits with the amsmath package you can specify:
1678
+ # EXTRA_PACKAGES=[intlimits]{amsmath}
1640
1679
# If left blank no extra packages will be included.
1641
1680
# This tag requires that the tag GENERATE_LATEX is set to YES.
1642
1681
@@ -1739,6 +1778,14 @@ LATEX_SOURCE_CODE = NO
1739
1778
1740
1779
LATEX_BIB_STYLE = plain
1741
1780
1781
+ # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1782
+ # page will contain the date and time when the page was generated. Setting this
1783
+ # to NO can help when comparing the output of multiple runs.
1784
+ # The default value is: NO.
1785
+ # This tag requires that the tag GENERATE_LATEX is set to YES.
1786
+
1787
+ LATEX_TIMESTAMP = NO
1788
+
1742
1789
#---------------------------------------------------------------------------
1743
1790
# Configuration options related to the RTF output
1744
1791
#---------------------------------------------------------------------------
@@ -2123,7 +2170,7 @@ HIDE_UNDOC_RELATIONS = YES
2123
2170
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2124
2171
# Bell Labs. The other options in this section have no effect if this option is
2125
2172
# set to NO
2126
- # The default value is: NO .
2173
+ # The default value is: YES .
2127
2174
2128
2175
HAVE_DOT = YES
2129
2176
@@ -2237,7 +2284,8 @@ INCLUDED_BY_GRAPH = YES
2237
2284
#
2238
2285
# Note that enabling this option will significantly increase the time of a run.
2239
2286
# So in most cases it will be better to enable call graphs for selected
2240
- # functions only using the \callgraph command.
2287
+ # functions only using the \callgraph command. Disabling a call graph can be
2288
+ # accomplished by means of the command \hidecallgraph.
2241
2289
# The default value is: NO.
2242
2290
# This tag requires that the tag HAVE_DOT is set to YES.
2243
2291
@@ -2248,7 +2296,8 @@ CALL_GRAPH = YES
2248
2296
#
2249
2297
# Note that enabling this option will significantly increase the time of a run.
2250
2298
# So in most cases it will be better to enable caller graphs for selected
2251
- # functions only using the \callergraph command.
2299
+ # functions only using the \callergraph command. Disabling a caller graph can be
2300
+ # accomplished by means of the command \hidecallergraph.
2252
2301
# The default value is: NO.
2253
2302
# This tag requires that the tag HAVE_DOT is set to YES.
2254
2303
@@ -2271,11 +2320,17 @@ GRAPHICAL_HIERARCHY = YES
2271
2320
DIRECTORY_GRAPH = YES
2272
2321
2273
2322
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2274
- # generated by dot.
2323
+ # generated by dot. For an explanation of the image formats see the section
2324
+ # output formats in the documentation of the dot tool (Graphviz (see:
2325
+ # http://www.graphviz.org/)).
2275
2326
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2276
2327
# to make the SVG files visible in IE 9+ (other browsers do not have this
2277
2328
# requirement).
2278
- # Possible values are: png, jpg, gif and svg.
2329
+ # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,
2330
+ # png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,
2331
+ # gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo,
2332
+ # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2333
+ # png:gdiplus:gdiplus.
2279
2334
# The default value is: png.
2280
2335
# This tag requires that the tag HAVE_DOT is set to YES.
2281
2336
@@ -2326,6 +2381,11 @@ DIAFILE_DIRS =
2326
2381
2327
2382
PLANTUML_JAR_PATH =
2328
2383
2384
+ # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
2385
+ # configuration file for plantuml.
2386
+
2387
+ PLANTUML_CFG_FILE =
2388
+
2329
2389
# When using plantuml, the specified paths are searched for files specified by
2330
2390
# the !include statement in a plantuml block.
2331
2391
0 commit comments