DistributedSparseGenRowLinSolver.hGo to the documentation of this file.00001 /* ****************************************************************** ** 00002 ** OpenSees - Open System for Earthquake Engineering Simulation ** 00003 ** Pacific Earthquake Engineering Research Center ** 00004 ** ** 00005 ** ** 00006 ** (C) Copyright 1999, The Regents of the University of California ** 00007 ** All Rights Reserved. ** 00008 ** ** 00009 ** Commercial use of this program without express permission of the ** 00010 ** University of California, Berkeley, is strictly prohibited. See ** 00011 ** file 'COPYRIGHT' in main directory for information on usage and ** 00012 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. ** 00013 ** ** 00014 ** Developed by: ** 00015 ** Frank McKenna (fmckenna@ce.berkeley.edu) ** 00016 ** Gregory L. Fenves (fenves@ce.berkeley.edu) ** 00017 ** Filip C. Filippou (filippou@ce.berkeley.edu) ** 00018 ** ** 00019 ** ****************************************************************** */ 00020 00021 #ifndef DistributedSparseGenRowLinSolver_h 00022 #define DistributedSparseGenRowLinSolver_h 00023 00024 // $Revision: 1.1 $ 00025 // $Date: 2005/12/06 22:20:18 $ 00026 // $Source: /usr/local/cvs/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN/DistributedSparseGenRowLinSolver.h,v $ 00027 00028 // Written: fmk 00029 // Created: 04/05 00030 // Revision: A 00031 // 00032 // Description: This file contains the class definition for DistributedSparseGenRowLinSolver. 00033 // DistributedSparseGenRowLinSolver is an abstract base class and thus no objects of it's type 00034 // can be instantiated. It has pure virtual functions which must be 00035 // implemented in it's derived classes. Instances of DistributedSparseGenRowLinSolver 00036 // are used to solve a system of equations of type DistributedSparseGenRowLinSOE. 00037 // 00038 // What: "@(#) DistributedSparseGenRowLinSolver.h, revA" 00039 00040 #include <LinearSOESolver.h> 00041 class DistributedSparseGenRowLinSOE; 00042 00043 class DistributedSparseGenRowLinSolver : public LinearSOESolver 00044 { 00045 public: 00046 DistributedSparseGenRowLinSolver(int classTag); 00047 virtual ~DistributedSparseGenRowLinSolver(); 00048 00049 virtual int setLinearSOE(DistributedSparseGenRowLinSOE &theSOE); 00050 00051 protected: 00052 DistributedSparseGenRowLinSOE *theSOE; 00053 00054 private: 00055 00056 }; 00057 00058 #endif 00059 |