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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
*DECK PLPIVT
SUBROUTINE PLPIVT(N,M,L,K,P,IROW,ICOL)
*
*-----------------------------------------------------------------------
*
*Purpose:
* Performs a pivot (L,K) on matrix P.
* PLPIVT = Linear Programming PIVoT
*
*Copyright:
* Copyright (C) 2002 Ecole Polytechnique de Montreal
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version
*
*Author(s):
* A. Hebert and T. Falcon
*
*Parameters: input
* N number of control variables.
* M number of constraints.
* L row index.
* K column index.
* P coefficient matrix.
* IROW permutation vector for row elements.
* ICOL permutation vector for column elements.
*
*Parameters: ouput
* P coefficient matrix.
* IROW permutation vector for row elements.
* ICOL permutation vector for column elements.
*
*-----------------------------------------------------------------------
*
IMPLICIT NONE
*----
* SUBROUTINE ARGUMENTS
*----
INTEGER M,N,L,K,IROW(N),ICOL(N+1)
DOUBLE PRECISION P(N,M)
*----
* LOCAL VARIABLES
*----
DOUBLE PRECISION PVT
INTEGER I,J
DOUBLE PRECISION, ALLOCATABLE, DIMENSION(:) :: PLJ
*----
* SCRATCH STORAGE ALLOCATION
*----
ALLOCATE(PLJ(M))
*
PVT = 1.0D0/P(L,K)
DO J=1,M
PLJ(J) = -PVT*P(L,J)
P(L,J) = PLJ(J)
ENDDO
*
DO I=1,N
IF(I.EQ.L) CYCLE
DO J=1,M
IF(J.EQ.K) CYCLE
P(I,J) = P(I,J) + PLJ(J)*P(I,K)
ENDDO
P(I,K) = PVT*P(I,K)
ENDDO
*
P(L,K) = PVT
I = IROW(L)
IROW(L) = ICOL(K)
ICOL(K) = I
*----
* SCRATCH STORAGE DEALLOCATION
*----
DEALLOCATE(PLJ)
RETURN
END
|