refactor(network): removed unused phoenix dependency and defauled stiff=false to use explicit solver

This commit is contained in:
2025-03-21 14:35:18 -04:00
parent 2b4830f74d
commit 3c657ca85a
2 changed files with 1 additions and 5 deletions

View File

@@ -3,8 +3,6 @@
#include <array> #include <array>
#include <boost/numeric/odeint.hpp> #include <boost/numeric/odeint.hpp>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/operator.hpp>
#include "const.h" #include "const.h"
#include "config.h" #include "config.h"

View File

@@ -4,8 +4,6 @@
#include <array> #include <array>
#include <boost/numeric/odeint.hpp> #include <boost/numeric/odeint.hpp>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/operator.hpp>
#include "network.h" #include "network.h"
@@ -301,7 +299,7 @@ namespace nnApprox8{
vector_type m_y; vector_type m_y;
double m_tmax; double m_tmax;
double m_dt0; double m_dt0;
bool m_stiff; bool m_stiff = false;
/** /**
* @brief Converts the input parameters to the internal state vector. * @brief Converts the input parameters to the internal state vector.