when I use
system SparseGeneral -piv
will be break by this messgae
Run-Time Check Failure #3 - The variable 'iperm_r' is being used without being defined.
source code file is dgstrf.c
superLU 3.0 problems
Moderators: silvia, selimgunay, Moderators
-
- Posts: 5
- Joined: Fri Jul 02, 2004 4:26 am
- Location: University of Ljubljana, FGG - IKPIR
- Contact:
The iperm_r variable is indeed undefined under certain conditions. Take a look at this topic for the solution:
http://opensees.berkeley.edu/community/ ... =1286#1286.
http://opensees.berkeley.edu/community/ ... =1286#1286.
thank you!
int *iperm_r;
change to:
int *iperm_r = NULL;
It run ok in debug mode!
my platform is XP+vs.net2003
superLU 3.0 have updated in
http://crd.lbl.gov/~xiaoye/SuperLU/
int *iperm_r;
change to:
int *iperm_r = NULL;
It run ok in debug mode!
my platform is XP+vs.net2003
superLU 3.0 have updated in
http://crd.lbl.gov/~xiaoye/SuperLU/