refactor(network): removed unused phoenix dependency and defauled stiff=false to use explicit solver
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user