Print

Print


Commit in trf++/test/trfutil on MAIN
smatrix_t.cpp-591.1 removed
delete

trf++/test/trfutil
smatrix_t.cpp removed after 1.1
diff -N smatrix_t.cpp
--- smatrix_t.cpp	7 Jul 2010 16:11:06 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,59 +0,0 @@
-// smatrix_t.cpp
-
-#include "trfutil/smatrix.h"
-
-#include <iostream>
-#include <string>
-#include <cassert>
-
-using std::cout;
-using std::cerr;
-using std::endl;
-using std::string;
-
-//**********************************************************************
-
-int main( ) {
-
-  string component = "smatrix";
-  string ok_prefix = component + " (I): ";
-  string error_prefix = component + " test (E): ";
-
-  cout << ok_prefix
-       << "---------- Testing component " + component
-          + ". ----------" << endl;
-
-  // Make sure assert is enabled.
-  bool assert_flag = false;
-  assert ( ( assert_flag = true, assert_flag ) );
-  if ( ! assert_flag ) {
-    cerr << "Assert is disabled" << endl;
-    return 1;
-  }
-
-  //********************************************************************
-
-  smatrix<double> sma(3);
-  sma(0,0) = 0.0;
-  sma(1,0) = 1.0;
-  sma(1,1) = 1.1;
-  sma(2,0) = 2.0;
-  sma(2,1) = 2.1;
-  sma(2,2) = 2.2;
-  cout << trf::trf_format;
-  cout << sma << endl;
-
-  smatrix<double> nsma(sma);
-  normalize(nsma);
-  cout << nsma << endl;
-
-  //********************************************************************
-
-  cout << ok_prefix
-       << "------------- All tests passed. -------------" << endl;
-  return 0;
-
-  //********************************************************************
-
-}
-
CVSspam 0.2.12