remove random array functionality

This commit is contained in:
James McClure
2021-09-02 08:19:54 -04:00
parent b3457348bd
commit 47050feb49
4 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@
/********************************************************
* Random number generation *
********************************************************/
template<> char genRand<char>()
/*template<> char genRand<char>()
{
static std::random_device rd;
static std::mt19937 gen( rd() );
@@ -88,7 +88,7 @@ template<> long double genRand<long double>()
static std::uniform_real_distribution<double> dis;
return dis( gen );
}
*/
/********************************************************
* axpy *