Click here to Skip to main content
15,886,063 members
Articles / Programming Languages / C#

Windows Development in C++, COM API Clients

Rate me:
Please Sign up or sign in to vote.
4.98/5 (31 votes)
3 Jan 2015CPOL7 min read 62.8K   1.6K   106  
Using the Facade Pattern to simplify development with COM based APIs
#include "stdafx.h"


/*
 * -- SuperLU MT routine (version 2.0) --
 * Lawrence Berkeley National Lab, Univ. of California Berkeley,
 * and Xerox Palo Alto Research Center.
 * September 10, 2007
 *
 * History:     Modified from lapack routines DGECON.
 */
#include <math.h>
#include "hnum_pdsp_defs.h"
namespace harlinn
{
    namespace numerics
    {
        namespace SuperLU
        {
            namespace Double
            {
/*
    Purpose   
    =======   

    DGSCON estimates the reciprocal of the condition number of a general 
    real matrix A, in either the 1-norm or the infinity-norm, using   
    the LU factorization computed by DGETRF.   

    An estimate is obtained for norm(inv(A)), and the reciprocal of the   
    condition number is computed as   
       RCOND = 1 / ( norm(A) * norm(inv(A)) ).   

    See supermatrix.h for the definition of 'SuperMatrix' structure.
 
    Arguments   
    =========   

    NORM    (input) char*
            Specifies whether the 1-norm condition number or the   
            infinity-norm condition number is required:   
            = '1' or 'O':  1-norm;   
            = 'I':         Infinity-norm.
	    
    L       (input) SuperMatrix*
            The factor L from the factorization Pr*A*Pc=L*U as computed by
            dgstrf(). Use compressed row subscripts storage for supernodes,
            i.e., L has types: Stype = SLU_SCP, Dtype = SLU_D, Mtype = SLU_TRLU.
 
    U       (input) SuperMatrix*
            The factor U from the factorization Pr*A*Pc=L*U as computed by
            dgstrf(). Use column-wise storage scheme, i.e., U has types:
            Stype = SLU_NCP, Dtype = SLU_D, Mtype = SLU_TRU.
	    
    ANORM   (input) double
            If NORM = '1' or 'O', the 1-norm of the original matrix A.   
            If NORM = 'I', the infinity-norm of the original matrix A.
	    
    RCOND   (output) double*
            The reciprocal of the condition number of the matrix A,   
            computed as RCOND = 1/(norm(A) * norm(inv(A))).
	    
    INFO    (output) int*
            = 0:  successful exit   
            < 0:  if INFO = -i, the i-th argument had an illegal value   

    ===================================================================== 
*/
                void dgscon(char *norm, SuperMatrix *L, SuperMatrix *U, double anorm, double *rcond, int *info)
                {

                    /* Local variables */
                    int    kase, kase1, onenrm, i;
                    double ainvnm;
                    double *work;
                    int    *iwork;
                    

    
                    /* Test the input parameters. */
                    *info = 0;
                    onenrm = *(unsigned char *)norm == '1' || lsame_(norm, "O");
                    if (! onenrm && ! lsame_(norm, "I")) *info = -1;
                    else if (L->nrow < 0 || L->nrow != L->ncol ||
                             L->Stype != SLU_SCP || L->Dtype != SLU_D || L->Mtype != SLU_TRLU)
	                 *info = -2;
                    else if (U->nrow < 0 || U->nrow != U->ncol ||
                             U->Stype != SLU_NCP || U->Dtype != SLU_D || U->Mtype != SLU_TRU) 
	                *info = -3;
                    if (*info != 0) {
	                i = -(*info);
	                xerbla_("dgscon", &i);
	                return;
                    }

                    /* Quick return if possible */
                    *rcond = 0.;
                    if ( L->nrow == 0 || U->nrow == 0) {
	                *rcond = 1.;
	                return;
                    }

                    work = doubleCalloc( 3*L->nrow );
                    iwork = intMalloc( L->nrow );


                    if ( !work || !iwork )
	                SUPERLU_ABORT("Malloc fails for work arrays in dgscon.");
    
                    /* Estimate the norm of inv(A). */
                    ainvnm = 0.;
                    if ( onenrm ) kase1 = 1;
                    else kase1 = 2;
                    kase = 0;

                    do {
	                dlacon_(&L->nrow, &work[L->nrow], &work[0], &iwork[0], &ainvnm, &kase);

	                if (kase == 0) break;

	                if (kase == kase1) {
	                    /* Multiply by inv(L). */
	                    sp_dtrsv("Lower", "No transpose", "Unit", L, U, &work[0], info);

	                    /* Multiply by inv(U). */
	                    sp_dtrsv("Upper", "No transpose", "Non-unit", L, U, &work[0],info);
	    
	                } else {

	                    /* Multiply by inv(U'). */
	                    sp_dtrsv("Upper", "Transpose", "Non-unit", L, U, &work[0], info);

	                    /* Multiply by inv(L'). */
	                    sp_dtrsv("Lower", "Transpose", "Unit", L, U, &work[0], info);
	    
	                }

                    } while ( kase != 0 );

                    /* Compute the estimate of the reciprocal condition number. */
                    if (ainvnm != 0.) *rcond = (1. / ainvnm) / anorm;

                    SUPERLU_FREE (work);
                    SUPERLU_FREE (iwork);
                    return;

                } /* dgscon */
            };
        };
    };
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Sea Surveillance AS
Norway Norway
Chief Architect - Sea Surveillance AS.

Specializing in integrated operations and high performance computing solutions.

I’ve been fooling around with computers since the early eighties, I’ve even done work on CP/M and MP/M.

Wrote my first “real” program on a BBC micro model B based on a series in a magazine at that time. It was fun and I got hooked on this thing called programming ...

A few Highlights:

  • High performance application server development
  • Model Driven Architecture and Code generators
  • Real-Time Distributed Solutions
  • C, C++, C#, Java, TSQL, PL/SQL, Delphi, ActionScript, Perl, Rexx
  • Microsoft SQL Server, Oracle RDBMS, IBM DB2, PostGreSQL
  • AMQP, Apache qpid, RabbitMQ, Microsoft Message Queuing, IBM WebSphereMQ, Oracle TuxidoMQ
  • Oracle WebLogic, IBM WebSphere
  • Corba, COM, DCE, WCF
  • AspenTech InfoPlus.21(IP21), OsiSoft PI


More information about what I do for a living can be found at: harlinn.com or LinkedIn

You can contact me at espen@harlinn.no

Comments and Discussions