limit print precision to 9 decimals

This commit is contained in:
Krishna Vedala 2020-06-21 17:50:04 -04:00
parent 9c186095a8
commit 21e93919f3
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -128,7 +128,7 @@ void test3() {
/** Main function */
int main() {
std::cout.precision(18);
std::cout.precision(9);
std::cout << "Computations performed with machine epsilon: " << EPSILON
<< "\n";