|
Anasazi Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Anasazi: Block Eigensolvers Package 00005 // Copyright (2010) 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 Michael A. Heroux (maherou@sandia.gov) 00025 // 00026 // *********************************************************************** 00027 // @HEADER 00028 00029 #ifndef __TSQR_Test_verifyTimerConcept_hpp 00030 #define __TSQR_Test_verifyTimerConcept_hpp 00031 00032 #include <stdexcept> 00033 00036 00064 namespace TSQR { 00065 namespace Test { 00066 template< class TimerType > 00067 double 00068 verifyTimerConcept () 00069 { 00070 TimerType timer (std::string("NameOfTimer")); 00071 00072 std::string timerName = timer.name(); 00073 if (timerName != "NameOfTimer") 00074 throw std::logic_error ("TimerType does not correctly store the timer name"); 00075 00076 // Test default argument of start() 00077 if (timer.isRunning()) 00078 throw std::logic_error ("TimerType does not correctly initialize isRunning"); 00079 timer.start (); 00080 if (! timer.isRunning()) 00081 throw std::logic_error ("TimerType does not correctly set isRunning"); 00082 double result1 = timer.stop(); 00083 if (timer.isRunning()) 00084 throw std::logic_error ("TimerType does not correctly reset isRunning"); 00085 00086 // Test nondefault argument of start() 00087 if (timer.isRunning()) 00088 throw std::logic_error ("TimerType does not correctly initialize isRunning"); 00089 timer.start (true); 00090 if (! timer.isRunning()) 00091 throw std::logic_error ("TimerType does not correctly set isRunning"); 00092 double result2 = timer.stop(); 00093 if (timer.isRunning()) 00094 throw std::logic_error ("TimerType does not correctly reset isRunning"); 00095 00096 return result1 + result2; 00097 } 00098 } // namespace Test 00099 } // namespace TSQR 00100 00101 #endif // __TSQR_Test_verifyTimerConcept_hpp
1.7.4