Skip to content

Commit 5114a2e

Browse files
committed
changed files accidentally in root dir
1 parent 7034fdb commit 5114a2e

5 files changed

Lines changed: 4 additions & 188 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

SRC/dcombssq.f

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ SUBROUTINE DCOMBSSQ( V1, V2 )
8080
IF( V1( 1 ).GE.V2( 1 ) ) THEN
8181
IF( V1( 1 ).NE.ZERO ) THEN
8282
V1( 2 ) = V1( 2 ) + ( V2( 1 ) / V1( 1 ) )**2 * V2( 2 )
83+
ELSE
84+
V1( 2 ) = V1( 2 ) + V2( 2 )
8385
END IF
8486
ELSE
8587
V1( 2 ) = V2( 2 ) + ( V1( 1 ) / V2( 1 ) )**2 * V1( 2 )

SRC/scombssq.f

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ SUBROUTINE SCOMBSSQ( V1, V2 )
8080
IF( V1( 1 ).GE.V2( 1 ) ) THEN
8181
IF( V1( 1 ).NE.ZERO ) THEN
8282
V1( 2 ) = V1( 2 ) + ( V2( 1 ) / V1( 1 ) )**2 * V2( 2 )
83+
ELSE
84+
V1( 2 ) = V1( 2 ) + V2( 2 )
8385
END IF
8486
ELSE
8587
V1( 2 ) = V2( 2 ) + ( V1( 1 ) / V2( 1 ) )**2 * V1( 2 )

dcombssq.f

Lines changed: 0 additions & 94 deletions
This file was deleted.

scombssq.f

Lines changed: 0 additions & 94 deletions
This file was deleted.

0 commit comments

Comments
 (0)