EigenSolver.cppGo to the documentation of this file.00001 // File: ~/system_of_eqn/eigenSOE/EigenSolver.C 00002 // 00003 // Written: Jun Peng 00004 // Created: Sat Feb. 6, 1999 00005 // Revision: A 00006 // 00007 // Description: This file contains the class definition of EigenSOE. 00008 // EigenSOE is a subclass of Solver. 00009 // This is an abstract base class and thus no objects of it's type 00010 // can be instantiated. Instances of EigenSolver are used to solve 00011 // a EigenSOE. (perform eigen analysis) 00012 // 00013 // This class is inheritanted from the base class of Solver 00014 // which was created by fmk (Frank). 00015 00016 00017 #include <EigenSolver.h> 00018 00019 00020 EigenSolver::EigenSolver(int classTag) 00021 :Solver(classTag) 00022 { 00023 00024 } 00025 00026 00027 EigenSolver::~EigenSolver() 00028 { 00029 00030 } 00031 |