replace cstdlib with cmath for float overload of std::abs()

This commit is contained in:
Krishna Vedala
2020-06-26 08:20:53 -04:00
parent 0d2a58409e
commit 7ff384e59b

View File

@@ -10,7 +10,7 @@
* \author [Krishna Vedala](https://github.com/kvedala)
*/
#include <cassert>
#include <cstdlib> // for std::abs
#include <cmath> // for std::abs
#include <iomanip> // for print formatting
#include <iostream>
#include <vector>