~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to intern/opennl/doc/SuperLU_Readme.txt

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
                SuperLU (Version 3.0)
 
2
                =====================
 
3
 
 
4
Copyright (c) 2003, The Regents of the University of California, through
 
5
Lawrence Berkeley National Laboratory (subject to receipt of any required 
 
6
approvals from U.S. Dept. of Energy) 
 
7
 
 
8
All rights reserved. 
 
9
 
 
10
Redistribution and use in source and binary forms, with or without
 
11
modification, are permitted provided that the following conditions are met: 
 
12
 
 
13
(1) Redistributions of source code must retain the above copyright notice,
 
14
this list of conditions and the following disclaimer. 
 
15
(2) Redistributions in binary form must reproduce the above copyright notice,
 
16
this list of conditions and the following disclaimer in the documentation
 
17
and/or other materials provided with the distribution. 
 
18
(3) Neither the name of Lawrence Berkeley National Laboratory, U.S. Dept. of
 
19
Energy nor the names of its contributors may be used to endorse or promote
 
20
products derived from this software without specific prior written permission.
 
21
 
 
22
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 
23
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
24
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
25
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
26
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
27
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
28
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
29
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
30
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
31
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
32
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
33
  
 
34
 
 
35
SuperLU contains a set of subroutines to solve a sparse linear system 
 
36
A*X=B. It uses Gaussian elimination with partial pivoting (GEPP). 
 
37
The columns of A may be preordered before factorization; the 
 
38
preordering for sparsity is completely separate from the factorization.
 
39
 
 
40
SuperLU is implemented in ANSI C, and must be compiled with standard 
 
41
ANSI C compilers. It provides functionality for both real and complex
 
42
matrices, in both single and double precision. The file names for the 
 
43
single-precision real version start with letter "s" (such as sgstrf.c);
 
44
the file names for the double-precision real version start with letter "d"
 
45
(such as dgstrf.c); the file names for the single-precision complex
 
46
version start with letter "c" (such as cgstrf.c); the file names
 
47
for the double-precision complex version start with letter "z" 
 
48
(such as zgstrf.c).
 
49
 
 
50
SuperLU was modified for Blender to only include single-precision
 
51
functionality.
 
52