From 4e51512d0b293689967b9a7645c4d807032d9733 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Fri, 25 Feb 2011 10:24:29 +0000 Subject: doxygen: opennl tagged. renamed BLO_sys_types.h to superlu_sys_types.h --- intern/opennl/superlu/BLO_sys_types.h | 127 ---------------------------- intern/opennl/superlu/Cnames.h | 3 + intern/opennl/superlu/colamd.c | 3 + intern/opennl/superlu/colamd.h | 3 + intern/opennl/superlu/get_perm_c.c | 3 + intern/opennl/superlu/heap_relax_snode.c | 3 + intern/opennl/superlu/lsame.c | 3 + intern/opennl/superlu/memory.c | 3 + intern/opennl/superlu/mmd.c | 3 + intern/opennl/superlu/relax_snode.c | 3 + intern/opennl/superlu/scolumn_bmod.c | 3 + intern/opennl/superlu/scolumn_dfs.c | 3 + intern/opennl/superlu/scopy_to_ucol.c | 3 + intern/opennl/superlu/sgssv.c | 3 + intern/opennl/superlu/sgstrf.c | 3 + intern/opennl/superlu/sgstrs.c | 3 + intern/opennl/superlu/smemory.c | 5 +- intern/opennl/superlu/smyblas2.c | 3 + intern/opennl/superlu/sp_coletree.c | 3 + intern/opennl/superlu/sp_ienv.c | 3 + intern/opennl/superlu/sp_preorder.c | 3 + intern/opennl/superlu/spanel_bmod.c | 3 + intern/opennl/superlu/spanel_dfs.c | 3 + intern/opennl/superlu/spivotL.c | 3 + intern/opennl/superlu/spruneL.c | 3 + intern/opennl/superlu/ssnode_bmod.c | 3 + intern/opennl/superlu/ssnode_dfs.c | 3 + intern/opennl/superlu/ssp_blas2.c | 3 + intern/opennl/superlu/ssp_blas3.c | 3 + intern/opennl/superlu/ssp_defs.h | 3 + intern/opennl/superlu/strsv.c | 3 + intern/opennl/superlu/superlu_sys_types.h | 133 ++++++++++++++++++++++++++++++ intern/opennl/superlu/superlu_timer.c | 3 + intern/opennl/superlu/supermatrix.h | 3 + intern/opennl/superlu/sutil.c | 3 + intern/opennl/superlu/util.c | 3 + intern/opennl/superlu/util.h | 3 + intern/opennl/superlu/xerbla.c | 3 + 38 files changed, 242 insertions(+), 128 deletions(-) delete mode 100644 intern/opennl/superlu/BLO_sys_types.h create mode 100644 intern/opennl/superlu/superlu_sys_types.h (limited to 'intern/opennl/superlu') diff --git a/intern/opennl/superlu/BLO_sys_types.h b/intern/opennl/superlu/BLO_sys_types.h deleted file mode 100644 index 5a573e28593..00000000000 --- a/intern/opennl/superlu/BLO_sys_types.h +++ /dev/null @@ -1,127 +0,0 @@ -/** - * $Id$ - * - * ***** BEGIN GPL LICENSE BLOCK ***** - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - * A platform-independent definition of [u]intXX_t - * Plus the accompanying header include for htonl/ntohl - * - * This file includes to define [u]intXX_t types, where - * XX can be 8, 16, 32 or 64. Unfortunately, not all systems have this - * file. - * - Windows uses __intXX compiler-builtin types. These are signed, - * so we have to flip the signs. - * For these rogue platforms, we make the typedefs ourselves. - * - */ - -/* -// DG: original BLO_sys_types.h is in source/blender/blenkernel -// but is not allowed be accessed here because of bad-level-call -*/ - -#ifndef BLO_SYS_TYPES_H -#define BLO_SYS_TYPES_H - -#ifdef __cplusplus -extern "C" { -#endif - -#if defined(_WIN32) && !defined(FREE_WINDOWS) - -/* The __intXX are built-in types of the visual complier! So we don't - * need to include anything else here. */ - - -typedef signed __int8 int8_t; -typedef signed __int16 int16_t; -typedef signed __int32 int32_t; -typedef signed __int64 int64_t; - -typedef unsigned __int8 uint8_t; -typedef unsigned __int16 uint16_t; -typedef unsigned __int32 uint32_t; -typedef unsigned __int64 uint64_t; - -#ifndef _INTPTR_T_DEFINED -#ifdef _WIN64 -typedef __int64 intptr_t; -#else -typedef long intptr_t; -#endif -#define _INTPTR_T_DEFINED -#endif - -#ifndef _UINTPTR_T_DEFINED -#ifdef _WIN64 -typedef unsigned __int64 uintptr_t; -#else -typedef unsigned long uintptr_t; -#endif -#define _UINTPTR_T_DEFINED -#endif - -#elif defined(__linux__) || defined(__NetBSD__) - - /* Linux-i386, Linux-Alpha, Linux-ppc */ -#include - -#elif defined (__APPLE__) - -#include - -#elif defined(FREE_WINDOWS) - -#include - -#else - - /* FreeBSD, Irix, Solaris */ -#include - -#endif /* ifdef platform for types */ - - -#ifdef _WIN32 -#ifndef htonl -#define htonl(x) correctByteOrder(x) -#endif -#ifndef ntohl -#define ntohl(x) correctByteOrder(x) -#endif -#elif defined (__FreeBSD__) || defined (__OpenBSD__) -#include -#elif defined (__APPLE__) -#include -#else /* irix sun linux */ -#include -#endif /* ifdef platform for htonl/ntohl */ - -#ifdef __cplusplus -} -#endif - -#endif /* eof */ - diff --git a/intern/opennl/superlu/Cnames.h b/intern/opennl/superlu/Cnames.h index 35ff7b0b665..1be2aa8962a 100644 --- a/intern/opennl/superlu/Cnames.h +++ b/intern/opennl/superlu/Cnames.h @@ -1,3 +1,6 @@ +/** \file opennl/superlu/Cnames.h + * \ingroup opennl + */ /* * -- SuperLU routine (version 2.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/colamd.c b/intern/opennl/superlu/colamd.c index b60718f9938..51f5ed4c659 100644 --- a/intern/opennl/superlu/colamd.c +++ b/intern/opennl/superlu/colamd.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/colamd.c + * \ingroup opennl + */ /* ========================================================================== */ /* === colamd - a sparse matrix column ordering algorithm =================== */ /* ========================================================================== */ diff --git a/intern/opennl/superlu/colamd.h b/intern/opennl/superlu/colamd.h index 00783983b27..00f670ce01f 100644 --- a/intern/opennl/superlu/colamd.h +++ b/intern/opennl/superlu/colamd.h @@ -1,3 +1,6 @@ +/** \file opennl/superlu/colamd.h + * \ingroup opennl + */ /* ========================================================================== */ /* === colamd prototypes and definitions ==================================== */ /* ========================================================================== */ diff --git a/intern/opennl/superlu/get_perm_c.c b/intern/opennl/superlu/get_perm_c.c index 64061725f10..c08d79af81a 100644 --- a/intern/opennl/superlu/get_perm_c.c +++ b/intern/opennl/superlu/get_perm_c.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/get_perm_c.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 2.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/heap_relax_snode.c b/intern/opennl/superlu/heap_relax_snode.c index 86971f59571..d4b3e229224 100644 --- a/intern/opennl/superlu/heap_relax_snode.c +++ b/intern/opennl/superlu/heap_relax_snode.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/heap_relax_snode.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/lsame.c b/intern/opennl/superlu/lsame.c index 79fb4d428a5..2f2337d5001 100644 --- a/intern/opennl/superlu/lsame.c +++ b/intern/opennl/superlu/lsame.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/lsame.c + * \ingroup opennl + */ int lsame_(char *, char *); diff --git a/intern/opennl/superlu/memory.c b/intern/opennl/superlu/memory.c index 279b60b5239..a239f685424 100644 --- a/intern/opennl/superlu/memory.c +++ b/intern/opennl/superlu/memory.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/memory.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 2.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/mmd.c b/intern/opennl/superlu/mmd.c index e103c7de175..a9c20fd9e81 100644 --- a/intern/opennl/superlu/mmd.c +++ b/intern/opennl/superlu/mmd.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/mmd.c + * \ingroup opennl + */ typedef int shortint; diff --git a/intern/opennl/superlu/relax_snode.c b/intern/opennl/superlu/relax_snode.c index 549f3fcf873..49f600533a8 100644 --- a/intern/opennl/superlu/relax_snode.c +++ b/intern/opennl/superlu/relax_snode.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/relax_snode.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 2.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/scolumn_bmod.c b/intern/opennl/superlu/scolumn_bmod.c index c877a27dd53..cb8d83686be 100644 --- a/intern/opennl/superlu/scolumn_bmod.c +++ b/intern/opennl/superlu/scolumn_bmod.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/scolumn_bmod.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/scolumn_dfs.c b/intern/opennl/superlu/scolumn_dfs.c index ecfb5c3b839..8f7da485a86 100644 --- a/intern/opennl/superlu/scolumn_dfs.c +++ b/intern/opennl/superlu/scolumn_dfs.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/scolumn_dfs.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/scopy_to_ucol.c b/intern/opennl/superlu/scopy_to_ucol.c index fd97352923f..14904533e3a 100644 --- a/intern/opennl/superlu/scopy_to_ucol.c +++ b/intern/opennl/superlu/scopy_to_ucol.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/scopy_to_ucol.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/sgssv.c b/intern/opennl/superlu/sgssv.c index ede3dc83907..a653764304a 100644 --- a/intern/opennl/superlu/sgssv.c +++ b/intern/opennl/superlu/sgssv.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sgssv.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/sgstrf.c b/intern/opennl/superlu/sgstrf.c index e48cc33b00b..335f21165ca 100644 --- a/intern/opennl/superlu/sgstrf.c +++ b/intern/opennl/superlu/sgstrf.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sgstrf.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/sgstrs.c b/intern/opennl/superlu/sgstrs.c index b83545f8ce6..0ed59df228e 100644 --- a/intern/opennl/superlu/sgstrs.c +++ b/intern/opennl/superlu/sgstrs.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sgstrs.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/smemory.c b/intern/opennl/superlu/smemory.c index d256d473f1c..3196947b05a 100644 --- a/intern/opennl/superlu/smemory.c +++ b/intern/opennl/superlu/smemory.c @@ -1,3 +1,6 @@ +/** \file smemory.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- @@ -8,7 +11,7 @@ */ #include "ssp_defs.h" -#include "BLO_sys_types.h" // needed for intptr_t +#include "superlu_sys_types.h" // needed for intptr_t /* Constants */ #define NO_MEMTYPE 4 /* 0: lusup; diff --git a/intern/opennl/superlu/smyblas2.c b/intern/opennl/superlu/smyblas2.c index cb2d5cb65af..79f6a11bb6a 100644 --- a/intern/opennl/superlu/smyblas2.c +++ b/intern/opennl/superlu/smyblas2.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/smyblas2.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/sp_coletree.c b/intern/opennl/superlu/sp_coletree.c index d49919167f5..7e7187ae8b0 100644 --- a/intern/opennl/superlu/sp_coletree.c +++ b/intern/opennl/superlu/sp_coletree.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sp_coletree.c + * \ingroup opennl + */ /* Elimination tree computation and layout routines */ diff --git a/intern/opennl/superlu/sp_ienv.c b/intern/opennl/superlu/sp_ienv.c index 5b0ba7b2151..e0f9693ae71 100644 --- a/intern/opennl/superlu/sp_ienv.c +++ b/intern/opennl/superlu/sp_ienv.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sp_ienv.c + * \ingroup opennl + */ /* * File name: sp_ienv.c * History: Modified from lapack routine ILAENV diff --git a/intern/opennl/superlu/sp_preorder.c b/intern/opennl/superlu/sp_preorder.c index c40ebc9a4f7..9504669726e 100644 --- a/intern/opennl/superlu/sp_preorder.c +++ b/intern/opennl/superlu/sp_preorder.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sp_preorder.c + * \ingroup opennl + */ #include "ssp_defs.h" int check_perm(char *, int , int *); diff --git a/intern/opennl/superlu/spanel_bmod.c b/intern/opennl/superlu/spanel_bmod.c index a59a9086df1..c9c17ea861d 100644 --- a/intern/opennl/superlu/spanel_bmod.c +++ b/intern/opennl/superlu/spanel_bmod.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/spanel_bmod.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/spanel_dfs.c b/intern/opennl/superlu/spanel_dfs.c index 7f5f3c7532a..e49adf635b2 100644 --- a/intern/opennl/superlu/spanel_dfs.c +++ b/intern/opennl/superlu/spanel_dfs.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/spanel_dfs.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/spivotL.c b/intern/opennl/superlu/spivotL.c index 6243065bb5b..3d5174e0b90 100644 --- a/intern/opennl/superlu/spivotL.c +++ b/intern/opennl/superlu/spivotL.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/spivotL.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/spruneL.c b/intern/opennl/superlu/spruneL.c index 59702706375..e6603f1d42a 100644 --- a/intern/opennl/superlu/spruneL.c +++ b/intern/opennl/superlu/spruneL.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/spruneL.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/ssnode_bmod.c b/intern/opennl/superlu/ssnode_bmod.c index fe97abd9ff6..21b236feedd 100644 --- a/intern/opennl/superlu/ssnode_bmod.c +++ b/intern/opennl/superlu/ssnode_bmod.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/ssnode_bmod.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/ssnode_dfs.c b/intern/opennl/superlu/ssnode_dfs.c index c8974237a9a..0dfc8d86d82 100644 --- a/intern/opennl/superlu/ssnode_dfs.c +++ b/intern/opennl/superlu/ssnode_dfs.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/ssnode_dfs.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/ssp_blas2.c b/intern/opennl/superlu/ssp_blas2.c index e9f8f53128a..d8889cd4b9d 100644 --- a/intern/opennl/superlu/ssp_blas2.c +++ b/intern/opennl/superlu/ssp_blas2.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/ssp_blas2.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/ssp_blas3.c b/intern/opennl/superlu/ssp_blas3.c index 19086077c4c..789635ceec4 100644 --- a/intern/opennl/superlu/ssp_blas3.c +++ b/intern/opennl/superlu/ssp_blas3.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/ssp_blas3.c + * \ingroup opennl + */ /* diff --git a/intern/opennl/superlu/ssp_defs.h b/intern/opennl/superlu/ssp_defs.h index 7828a47d260..118e3f16eb1 100644 --- a/intern/opennl/superlu/ssp_defs.h +++ b/intern/opennl/superlu/ssp_defs.h @@ -1,3 +1,6 @@ +/** \file opennl/superlu/ssp_defs.h + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/strsv.c b/intern/opennl/superlu/strsv.c index 415f96f5f74..a1d66ed7341 100644 --- a/intern/opennl/superlu/strsv.c +++ b/intern/opennl/superlu/strsv.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/strsv.c + * \ingroup opennl + */ int strsv_(char *, char *, char *, int *, float *, int *, float *, int *); diff --git a/intern/opennl/superlu/superlu_sys_types.h b/intern/opennl/superlu/superlu_sys_types.h new file mode 100644 index 00000000000..63bfbf18635 --- /dev/null +++ b/intern/opennl/superlu/superlu_sys_types.h @@ -0,0 +1,133 @@ +/* + * $Id: superlu_sys_types.h -1 $ + * + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. + * All rights reserved. + * + * The Original Code is: all of this file. + * + * Contributor(s): none yet. + * + * ***** END GPL LICENSE BLOCK ***** + * A platform-independent definition of [u]intXX_t + * Plus the accompanying header include for htonl/ntohl + * + * This file includes to define [u]intXX_t types, where + * XX can be 8, 16, 32 or 64. Unfortunately, not all systems have this + * file. + * - Windows uses __intXX compiler-builtin types. These are signed, + * so we have to flip the signs. + * For these rogue platforms, we make the typedefs ourselves. + * + */ + +/** \file superlu_sys_types.h + * \ingroup opennl + */ + + +/* +// DG: original BLO_sys_types.h is in source/blender/blenkernel +// but is not allowed be accessed here because of bad-level-call +// jesterKing: renamed to superlu_sys_types.h +*/ + +#ifndef BLO_SYS_TYPES_H +#define BLO_SYS_TYPES_H + +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(_WIN32) && !defined(FREE_WINDOWS) + +/* The __intXX are built-in types of the visual complier! So we don't + * need to include anything else here. */ + + +typedef signed __int8 int8_t; +typedef signed __int16 int16_t; +typedef signed __int32 int32_t; +typedef signed __int64 int64_t; + +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int64 uint64_t; + +#ifndef _INTPTR_T_DEFINED +#ifdef _WIN64 +typedef __int64 intptr_t; +#else +typedef long intptr_t; +#endif +#define _INTPTR_T_DEFINED +#endif + +#ifndef _UINTPTR_T_DEFINED +#ifdef _WIN64 +typedef unsigned __int64 uintptr_t; +#else +typedef unsigned long uintptr_t; +#endif +#define _UINTPTR_T_DEFINED +#endif + +#elif defined(__linux__) || defined(__NetBSD__) + + /* Linux-i386, Linux-Alpha, Linux-ppc */ +#include + +#elif defined (__APPLE__) + +#include + +#elif defined(FREE_WINDOWS) + +#include + +#else + + /* FreeBSD, Irix, Solaris */ +#include + +#endif /* ifdef platform for types */ + + +#ifdef _WIN32 +#ifndef htonl +#define htonl(x) correctByteOrder(x) +#endif +#ifndef ntohl +#define ntohl(x) correctByteOrder(x) +#endif +#elif defined (__FreeBSD__) || defined (__OpenBSD__) +#include +#elif defined (__APPLE__) +#include +#else /* irix sun linux */ +#include +#endif /* ifdef platform for htonl/ntohl */ + +#ifdef __cplusplus +} +#endif + +#endif /* eof */ + diff --git a/intern/opennl/superlu/superlu_timer.c b/intern/opennl/superlu/superlu_timer.c index f9e130c8c5a..abcafe8fa1f 100644 --- a/intern/opennl/superlu/superlu_timer.c +++ b/intern/opennl/superlu/superlu_timer.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/superlu_timer.c + * \ingroup opennl + */ /* * Purpose * ======= diff --git a/intern/opennl/superlu/supermatrix.h b/intern/opennl/superlu/supermatrix.h index 665e22dc91f..74dfde4df7c 100644 --- a/intern/opennl/superlu/supermatrix.h +++ b/intern/opennl/superlu/supermatrix.h @@ -1,3 +1,6 @@ +/** \file opennl/superlu/supermatrix.h + * \ingroup opennl + */ #ifndef __SUPERLU_SUPERMATRIX /* allow multiple inclusions */ #define __SUPERLU_SUPERMATRIX diff --git a/intern/opennl/superlu/sutil.c b/intern/opennl/superlu/sutil.c index 78f0b8bc5cc..510ade8233c 100644 --- a/intern/opennl/superlu/sutil.c +++ b/intern/opennl/superlu/sutil.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/sutil.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- diff --git a/intern/opennl/superlu/util.c b/intern/opennl/superlu/util.c index f77da9c4736..7339bbc623a 100644 --- a/intern/opennl/superlu/util.c +++ b/intern/opennl/superlu/util.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/util.c + * \ingroup opennl + */ /* * -- SuperLU routine (version 3.0) -- * Univ. of California Berkeley, Xerox Palo Alto Research Center, diff --git a/intern/opennl/superlu/util.h b/intern/opennl/superlu/util.h index 953242d606d..f13108b2256 100644 --- a/intern/opennl/superlu/util.h +++ b/intern/opennl/superlu/util.h @@ -1,3 +1,6 @@ +/** \file opennl/superlu/util.h + * \ingroup opennl + */ #ifndef __SUPERLU_UTIL /* allow multiple inclusions */ #define __SUPERLU_UTIL diff --git a/intern/opennl/superlu/xerbla.c b/intern/opennl/superlu/xerbla.c index 68cef9d84e4..31baaecf3b0 100644 --- a/intern/opennl/superlu/xerbla.c +++ b/intern/opennl/superlu/xerbla.c @@ -1,3 +1,6 @@ +/** \file opennl/superlu/xerbla.c + * \ingroup opennl + */ #include int xerbla_(char *, int *); -- cgit v1.2.3