OpenSeesMP bug
Posted: Tue Apr 05, 2016 3:24 am
In trunk i found a bug which affect compilation, causing failure.
SRC/system_of_eqn/linearSOE/sparseGEN/DistributedSuperLU.cpp
original is:
//
// Initialize ScalePermstruct and LUstruct.
//
ScalePermstructInit(n, n, &ScalePermstruct);
LUstructInit(n, &LUstruct);
must be:
//
// Initialize ScalePermstruct and LUstruct.
//
ScalePermstructInit(n, n, &ScalePermstruct);
LUstructInit(n, n, &LUstruct);
SRC/system_of_eqn/linearSOE/sparseGEN/DistributedSuperLU.cpp
original is:
//
// Initialize ScalePermstruct and LUstruct.
//
ScalePermstructInit(n, n, &ScalePermstruct);
LUstructInit(n, &LUstruct);
must be:
//
// Initialize ScalePermstruct and LUstruct.
//
ScalePermstructInit(n, n, &ScalePermstruct);
LUstructInit(n, n, &LUstruct);