Skip to content

Commit 43fdd90

Browse files
authored
Update README.md
1 parent cf2d1a0 commit 43fdd90

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -63,26 +63,25 @@ Evaluate the behavior of the system at time=5 with a precision of 1x10^-9.
6363
system.uniformization(5,1e-9);
6464
```
6565

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.
6767

6868
```
69-
double[][] dist = system.getMarginalDistributions();
69+
system.gauss_seidel(1e-6);
7070
```
7171

72-
Get the expected number of customers at each queue.
72+
Get the marginal state distribution for each of the network queues.
7373

7474
```
75-
double[] expValue = system.expectedCustomers();
75+
double[][] dist = system.getMarginalDistributions();
7676
```
7777

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.
7979

8080
```
81-
system.gauss_seidel(1e-6);
81+
double[] expValue = system.expectedCustomers();
8282
```
8383

8484

85-
8685
# License
8786
Copyright 2019 Anders Reenberg Andersen, PhD
8887

0 commit comments

Comments
 (0)