Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OpenNL_Readme.txt « doc « opennl « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6aea3c028653a81d34ce1efbd1c4ab8750056f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

This is OpenNL, a library to easily construct and solve sparse linear systems.
* OpenNL is supplied with a set of iterative solvers (Conjugate gradient,
  BICGSTAB, GMRes) and preconditioners (Jacobi, SSOR). 
* OpenNL can also use other solvers (SuperLU 3.0 supported as an OpenNL
  extension)

Note that to be compatible with OpenNL, SuperLU 3.0 needs to be compiled with
the following flag (see make.inc in SuperLU3.0):
CDEFS = -DAdd_ (the default is -DAdd__, just remove the second underscore)

OpenNL was modified for Blender to be used only as a wrapper for SuperLU.