*** empty log message ***

This commit is contained in:
jiri
2009-11-12 21:01:19 +00:00
parent f44662bdab
commit 7f7c4aa553
33 changed files with 457 additions and 309 deletions

6
t2.cc
View File

@@ -28,13 +28,15 @@
#include "traceback.h"
#endif
using namespace LA;
void test(const NRVec<double> &x)
{
NRMat<double> aa(0.,2,2);
NRMat<double> cc(aa);
cc.copyonwrite(); cc[0][0]=1.;
cout << aa << cc <<"\n";
cout <<"test x= "<<x<<"\n";
std::cout << aa << cc <<"\n";
std::cout <<"test x= "<<x<<"\n";
}