File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -63,26 +63,25 @@ Evaluate the behavior of the system at time=5 with a precision of 1x10^-9.
63
63
system.uniformization(5,1e-9);
64
64
```
65
65
66
- Get the marginal state distribution for each of the network queues .
66
+ Evaluate the steady- state behavior of the system (i.e. at time=Inf) with a precision of 1x10^-6 .
67
67
68
68
```
69
- double[][] dist = system.getMarginalDistributions( );
69
+ system.gauss_seidel(1e-6 );
70
70
```
71
71
72
- Get the expected number of customers at each queue .
72
+ Get the marginal state distribution for each of the network queues .
73
73
74
74
```
75
- double[] expValue = system.expectedCustomers ();
75
+ double[][] dist = system.getMarginalDistributions ();
76
76
```
77
77
78
- Evaluate the steady-state behavior of the system (i.e. at time=Inf) with a precision of 1x10^-6 .
78
+ Get the expected number of customers at each queue .
79
79
80
80
```
81
- system.gauss_seidel(1e-6 );
81
+ double[] expValue = system.expectedCustomers( );
82
82
```
83
83
84
84
85
-
86
85
# License
87
86
Copyright 2019 Anders Reenberg Andersen, PhD
88
87
You can’t perform that action at this time.
0 commit comments