|
AbstractLinAlgPack: C++ Interfaces For Vectors, Matrices And Related Linear Algebra Objects Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Moocho: Multi-functional Object-Oriented arCHitecture for Optimization 00005 // Copyright (2003) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // This library is free software; you can redistribute it and/or modify 00011 // it under the terms of the GNU Lesser General Public License as 00012 // published by the Free Software Foundation; either version 2.1 of the 00013 // License, or (at your option) any later version. 00014 // 00015 // This library is distributed in the hope that it will be useful, but 00016 // WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 // Lesser General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU Lesser General Public 00021 // License along with this library; if not, write to the Free Software 00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00023 // USA 00024 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 00025 // 00026 // *********************************************************************** 00027 // @HEADER 00028 00029 #include "AbstractLinAlgPack_MatrixSymOpNonsing.hpp" 00030 00031 namespace AbstractLinAlgPack { 00032 00033 MatrixSymOpNonsing::mat_mswons_mut_ptr_t 00034 MatrixSymOpNonsing::clone_mswons() 00035 { 00036 return Teuchos::null; 00037 } 00038 00039 MatrixSymOpNonsing::mat_mswons_ptr_t 00040 MatrixSymOpNonsing::clone_mswons() const 00041 { 00042 return Teuchos::null; 00043 } 00044 00045 // Overridden from MatrixOp 00046 00047 MatrixSymOpNonsing::mat_mut_ptr_t 00048 MatrixSymOpNonsing::clone() 00049 { 00050 return clone_mswons(); 00051 } 00052 00053 MatrixSymOpNonsing::mat_ptr_t 00054 MatrixSymOpNonsing::clone() const 00055 { 00056 return clone_mswons(); 00057 } 00058 00059 // Overridden from MatrixNonsing 00060 00061 MatrixSymOpNonsing::mat_mns_mut_ptr_t 00062 MatrixSymOpNonsing::clone_mns() 00063 { 00064 return clone_mswons(); 00065 } 00066 00067 MatrixSymOpNonsing::mat_mns_ptr_t 00068 MatrixSymOpNonsing::clone_mns() const 00069 { 00070 return clone_mswons(); 00071 } 00072 00073 // Overridden from MatrixSymOp 00074 00075 MatrixSymOpNonsing::mat_mswo_mut_ptr_t 00076 MatrixSymOpNonsing::clone_mswo() 00077 { 00078 return clone_mswons(); 00079 } 00080 00081 MatrixSymOpNonsing::mat_mswo_ptr_t 00082 MatrixSymOpNonsing::clone_mswo() const 00083 { 00084 return clone_mswons(); 00085 } 00086 00087 // Overridden from MatrixSymNonsing 00088 00089 MatrixSymOpNonsing::mat_msns_mut_ptr_t 00090 MatrixSymOpNonsing::clone_msns() 00091 { 00092 return clone_mswons(); 00093 } 00094 00095 MatrixSymOpNonsing::mat_msns_ptr_t 00096 MatrixSymOpNonsing::clone_msns() const 00097 { 00098 return clone_mswons(); 00099 } 00100 00101 // Overridden from MatrixOpNonsing 00102 00103 MatrixSymOpNonsing::mat_mwons_mut_ptr_t 00104 MatrixSymOpNonsing::clone_mwons() 00105 { 00106 return clone_mswons(); 00107 } 00108 00109 MatrixSymOpNonsing::mat_mwons_ptr_t 00110 MatrixSymOpNonsing::clone_mwons() const 00111 { 00112 return clone_mswons(); 00113 } 00114 00115 } // end namespace AbstractLinAlgPack
1.7.4