File: do_allInOne

package info (click to toggle)
spooles 2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 19,012 kB
  • sloc: ansic: 146,834; csh: 3,615; makefile: 2,040; perl: 74
file content (43 lines) | stat: -rwxr-xr-x 1,055 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /bin/csh -f

set msglvl     = 1
set msgFile    = stdout

# type -- type of entries
#   1 -- real entries
#   2 -- complex entries
set type = 2

# symmetryflag -- type of symmetry in the matrix
#   0 -- symmetric
#   1 -- hermitian
#   2 -- nonsymmetric
set symmetryflag = 0

# pivotingflag -- type of pivoting in the factorization
#   0 -- no pivoting
#   1 -- pivoting
set pivotingflag = 0

set matrixFileName = complex.sym.mtx.input
set matrixFileName = complex.herm.mtx.input
set matrixFileName = complex.nonsym.mtx.input
set matrixFileName = matrix.input
set matrixFileName = haggar.matrix.input

set rhsFileName = complex.herm.rhs.input
set rhsFileName = complex.nonsym.rhs.input
set rhsFileName = rhs.input
set rhsFileName = haggar.rhs.input

set msgFile = complex.sym.sol.output
set msgFile = complex.herm.sol.output
set msgFile = complex.nonsym.sol.output
set msgFile = real.sym.sol.output
set msgFile = haggar.output

set seed = 10101

allInOne $msglvl $msgFile $type $symmetryflag $pivotingflag \
         $matrixFileName $rhsFileName $seed