"Fossies" - the Fresh Open Source Software Archive

Member "laspack/examples/matropt/testproc.h" (10 Feb 1995, 1423 Bytes) of package /linux/privat/old/laspack.tgz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /****************************************************************************/
    2 /*                                testproc.h                                */
    3 /****************************************************************************/
    4 /*                                                                          */
    5 /* TEST PROCedures for matrix operation optimization for laspack            */
    6 /*                                                                          */
    7 /* Copyright (C) 1992-1995 Tomas Skalicky. All rights reserved.             */
    8 /*                                                                          */
    9 /****************************************************************************/
   10 /*                                                                          */
   11 /*        ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS          */
   12 /*              OF THE COPYRIGHT NOTICE (SEE FILE COPYRGHT.H)               */
   13 /*                                                                          */
   14 /****************************************************************************/
   15 
   16 #ifndef TESTPROC_H
   17 #define TESTPROC_H
   18 
   19 #include <laspack/vector.h>
   20 #include <laspack/qmatrix.h>
   21 #include <laspack/copyrght.h>
   22 
   23 Vector *Test1_QV(QMatrix *Q, Vector *V);
   24 Vector *Test2_QV(QMatrix *Q, Vector *V);
   25 Vector *Test3_QV(QMatrix *Q, Vector *V);
   26 Vector *Test4_QV(QMatrix *Q, Vector *V);
   27 
   28 #endif /* TESTPROC_H */