#ifndef ROOT_TQpProbSparse
#define ROOT_TQpProbSparse
#include "TQpProbBase.h"
#ifndef ROOT_TQpDataSparse
#include "TQpDataSparse.h"
#endif
#ifndef ROOT_TQpVars
#include "TQpVar.h"
#endif
#ifndef ROOT_TQpLinSolverSparse
#include "TQpLinSolverSparse.h"
#endif
class TQpProbSparse : public TQpProbBase
{
public:
   TQpProbSparse() {}
   TQpProbSparse(Int_t nx,Int_t my,Int_t mz);
   TQpProbSparse(const TQpProbSparse &another);
   virtual ~TQpProbSparse() {}
#ifndef __CINT__
   virtual TQpDataBase      *MakeData      (Double_t *c,
                                            Int_t nnzQ,Int_t *irowQ,Int_t *icolQ,Double_t *Q,
                                            Double_t *xlo,Bool_t *ixlo,
                                            Double_t *xup,Bool_t *ixup,
                                            Int_t nnzA,Int_t *irowA,Int_t *icolA,Double_t *A,
                                            Double_t *bA,
                                            Int_t nnzC,Int_t *irowC,Int_t *icolC,Double_t *C,
                                            Double_t *clo,Bool_t *iclo,
                                            Double_t *cup,Bool_t *icup);
#endif
   virtual TQpDataBase      *MakeData     (TVectorD     &c,
                                            TMatrixDBase &Q_in,
                                            TVectorD     &xlo, TVectorD &ixlo,
                                            TVectorD     &xup, TVectorD &ixup,
                                            TMatrixDBase &A_in,TVectorD &bA,
                                            TMatrixDBase &C_in,
                                            TVectorD     &clo, TVectorD &iclo,
                                            TVectorD     &cup, TVectorD &icup);
   virtual TQpResidual      *MakeResiduals(const TQpDataBase *data);
   virtual TQpVar           *MakeVariables(const TQpDataBase *data);
   virtual TQpLinSolverBase *MakeLinSys   (const TQpDataBase *data);
   virtual void JoinRHS       (TVectorD &rhs_in,TVectorD &rhs1_in,TVectorD &rhs2_in,TVectorD &rhs3_in);
   virtual void SeparateVars  (TVectorD &x_in,TVectorD &y_in,TVectorD &z_in,TVectorD &vars_in);
           void MakeRandomData(TQpDataSparse *&data,TQpVar *&soln,Int_t nnzQ,Int_t nnzA,Int_t nnzC);
   TQpProbSparse &operator=(const TQpProbSparse &source);
   
   ClassDef(TQpProbSparse,1)                   
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.