From cecc7c762f59aab89e3bac7209f803595348ad59 Mon Sep 17 00:00:00 2001 From: julie Date: Tue, 12 Jan 2016 05:37:08 +0000 Subject: [PATCH] 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. --- DOCS/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.34.1