superLU 3.0 problems

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
gqw
Posts: 5
Joined: Mon Jul 18, 2005 7:31 am
Location: hunan university

superLU 3.0 problems

Post by gqw »

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
Jaka Zevnik
Posts: 5
Joined: Fri Jul 02, 2004 4:26 am
Location: University of Ljubljana, FGG - IKPIR
Contact:

Post by Jaka Zevnik »

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.
gqw
Posts: 5
Joined: Mon Jul 18, 2005 7:31 am
Location: hunan university

Post by gqw »

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/
Post Reply