bugGNU Scientific Library - Bugs: bug #26503, blas drotm: error in vector size...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #26503: blas drotm: error in vector size checking

Submitter:  -Deleted Account- <bjg>
Submitted:  Fri 08 May 2009 10:59:35 AM UTC
   
 
Category:  Runtime error Severity:  3 - Normal
Operating System:  Status:  Fixed
Assigned to:  bjg Open/Closed:  Closed
Release:  1.12

Fri 08 May 2009 11:00:18 AM UTC, comment #1: 

fixed by 07806b6858c8ebf866bc1fad024f637d1e2df505

-Deleted Account- <bjg>
Fri 08 May 2009 10:59:35 AM UTC, original submission:  

From: Marco Maggi <mrc.mgg@gmail.com>
To: -email is unavailable-
Subject: [Bug-gsl] blas drotm: error in vector size checking
Date: Thu, 30 Apr 2009 11:31:34 +0200

In GSL version 1.12:

int
gsl_blas_drotm (gsl_vector X, gsl_vector Y, const double P[])
{
  if (X->size != Y->size)

should be:

int
gsl_blas_drotm (gsl_vector X, gsl_vector Y, const double P[])
{
  if (X->size == Y->size)
              ^^
--
Marco Maggi


-Deleted Account- <bjg>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

Follow 2 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2009-05-08 bjg StatusConfirmed Fixed
    Open/ClosedOpen Closed

Back to the top

Powered by Savane 3.13-d3ae.
Corresponding source code