Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

OoqpBlas.h

00001 /* OOQP                                                               *
00002  * Authors: E. Michael Gertz, Stephen J. Wright                       *
00003  * (C) 2001 University of Chicago. See Copyright Notification in OOQP */
00004 
00005 #ifndef OOQPBLAS_H
00006 #define OOQPBLAS_H
00007 
00012 extern "C"
00013 void dsymv_ ( char * uplo, int * n, double * alpha,
00014               double * A, int * lda, 
00015               double * x, int * incx,
00016               double * beta, double * y, int * incy );
00017 
00018 extern "C"
00019 void dgemv_ ( char * trans, int * m, int * n, 
00020               double * alpha, double * a, int * lda,
00021               double * x, int * incx,
00022               double * beta, double * y, int * incy );
00023 
00024 extern "C" 
00025 void daxpy_ ( int * n, double * alpha, double x[], int * incx,
00026               double y[], int * incy );
00027 
00028 extern "C"
00029 double ddot_ ( int * n, double dx[], int * incx, double dy[], int * incy );
00030 
00031 extern "C"
00032 double dscal_( int * n, double * da, double dx[], int * incx );
00033 
00034 #endif

Generated on Mon May 24 17:40:46 2004 for OOQP by doxygen1.2.18