FindRoot headers

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2024-01-27 16:12:53 -07:00
parent fe70638d83
commit e8fc1c17d9
2 changed files with 5 additions and 1 deletions

View File

@ -16,8 +16,12 @@
#include "FindRoot.hh"
#include <algorithm> // abs
namespace sta {
using std::abs;
double
findRoot(FindRootFunc func,
double x1,

View File

@ -16,7 +16,7 @@
#pragma once
#include <algorithm> // abs, min
#include <functional>
namespace sta {