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

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";