bitvector mantissa implemented

This commit is contained in:
2022-06-24 06:42:32 +02:00
parent 6c22365a48
commit b63373fe7b
2 changed files with 26 additions and 1 deletions

9
t.cc
View File

@@ -2574,7 +2574,7 @@ cout <<test;
cout <<"Error = "<<(expitszsz-test).norm()<<endl;
}
if(1)
if(0)
{
NRVec<double> x({1,2,3});
NRVec<double> y({4,5,6});
@@ -2585,4 +2585,11 @@ x.concatme(y);
cout <<x;
}
if(1)
{
double x;
cin>>x;
cout <<mantissa(x,20)<<endl;
}
}