diff options
author | julie <julielangou@users.noreply.github.com> | 2016-01-12 05:37:08 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2016-01-12 05:37:08 +0000 |
commit | cecc7c762f59aab89e3bac7209f803595348ad59 (patch) | |
tree | 68492b88ca7d7056540e4480bd210412354674fb /DOCS/Doxyfile | |
parent | 21c91533ffb3b82114b7b37a74bee5542b262815 (diff) | |
download | lapack-cecc7c762f59aab89e3bac7209f803595348ad59.tar.gz lapack-cecc7c762f59aab89e3bac7209f803595348ad59.tar.bz2 lapack-cecc7c762f59aab89e3bac7209f803595348ad59.zip |
Committing Christoph Conrads patch sent on Jan 11th on LAPACK Mailing List
From Christoph:
after the changes of the Doxygen config file in SVN revisions 1625
and 1626, routines are grouped together in the documentation, e.g., all
eigenvalue solvers for symmetric matrices in double precision.
Currently, the documentation for all routines in one group is put on
the same HTML page. I find this confusing and it slows my browser.
If every function has its own HTML page, then you can jump to the top
of the page by pressing POS1 to see the function arguments and their
description. Also you can jump to the bottom of the page with END to
see the callgraph of the respective function.
The patch in the attachment enables the SEPARATE_MEMBER_PAGES option
that puts each function documentation on its own HTML page. Please
consider applying this patch.
Diffstat (limited to 'DOCS/Doxyfile')
-rw-r--r-- | DOCS/Doxyfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DOCS/Doxyfile b/DOCS/Doxyfile index 2ffed29f..1dedbe7a 100644 --- a/DOCS/Doxyfile +++ b/DOCS/Doxyfile @@ -210,7 +210,7 @@ INHERIT_DOCS = YES # of the file/class/namespace that contains it. # The default value is: NO. -SEPARATE_MEMBER_PAGES = NO +SEPARATE_MEMBER_PAGES = YES # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. |