correct include

This commit is contained in:
dwarning 2020-11-01 18:50:39 +01:00 committed by Holger Vogt
parent 6ff354c4a7
commit c7e1b16cd7
2 changed files with 4 additions and 4 deletions

View File

@ -13,11 +13,11 @@ Model Author : 1990 Michael Schröter TU Dresden
* - lambda functions are used to calculate derivatives of larger Verilog Macros * - lambda functions are used to calculate derivatives of larger Verilog Macros
*/ */
#include "cmath" #include <cmath>
#ifndef M_PI #ifndef M_PI
#define M_PI 3.1415926535897932384626433832795 #define M_PI 3.1415926535897932384626433832795
#endif #endif
#include <duals/dual> #include "duals/dual"
#include "hicumL2.hpp" #include "hicumL2.hpp"
#include "hicumL2temp.hpp" #include "hicumL2temp.hpp"
#include <functional> #include <functional>

View File

@ -4,11 +4,11 @@ Spice3 Implementation: 2019-2020 Dietmar Warning, Markus Müller, Mario Krattenm
Model Author : 1990 Michael Schröter TU Dresden Model Author : 1990 Michael Schröter TU Dresden
**********/ **********/
#include "cmath" #include <cmath>
#ifndef M_PI #ifndef M_PI
#define M_PI 3.1415926535897932384626433832795 #define M_PI 3.1415926535897932384626433832795
#endif #endif
#include <duals/dual> #include "duals/dual"
#include "hicumL2.hpp" #include "hicumL2.hpp"
#include <functional> #include <functional>