pyclustering.nnet.solve_type Class Reference

Enumerator of solver types that are used for network simulation. More...

+ Inheritance diagram for pyclustering.nnet.solve_type:
+ Collaboration diagram for pyclustering.nnet.solve_type:

Static Public Attributes

int FAST = 0;
 Forward Euler first-order method. More...
 
int RK4 = 1;
 Classic fourth-order Runge-Kutta method (fixed step). More...
 
int RKF45 = 2;
 Runge-Kutta-Fehlberg method with order 4 and 5 (float step). More...
 

Detailed Description

Enumerator of solver types that are used for network simulation.

Definition at line 43 of file __init__.py.

Member Data Documentation

◆ FAST

int pyclustering.nnet.solve_type.FAST = 0;
static

Forward Euler first-order method.

Definition at line 50 of file __init__.py.

◆ RK4

int pyclustering.nnet.solve_type.RK4 = 1;
static

Classic fourth-order Runge-Kutta method (fixed step).

Definition at line 53 of file __init__.py.

◆ RKF45

int pyclustering.nnet.solve_type.RKF45 = 2;
static

Runge-Kutta-Fehlberg method with order 4 and 5 (float step).

"

Definition at line 56 of file __init__.py.


The documentation for this class was generated from the following file: