Skip to content

Commit 1938661

Browse files
committed
remove read/write files from docs
1 parent 77d32e9 commit 1938661

File tree

4 files changed

+3
-79
lines changed

4 files changed

+3
-79
lines changed

docs/Guides/from_file.rst

Lines changed: 0 additions & 75 deletions
This file was deleted.

docs/Guides/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ Contents:
2828
state_trackers.rst
2929
deadlock.rst
3030
process_based.rst
31-
from_file.rst
3231
behaviour/index.rst
3332
parallel_process.rst

docs/Guides/time_dependent.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Let's implement this into a one node infinite server queue::
5454
>>> N = ciw.create_network(
5555
... arrival_distributions=[TimeDependentDist()],
5656
... service_distributions=[ciw.dists.Deterministic(value=0.0)],
57-
... number_of_servers=['Inf']
57+
... number_of_servers=[float('Inf')]
5858
... )
5959

6060
We'll then simulate this for 1 day.
@@ -87,7 +87,7 @@ For example::
8787
>>> N = ciw.create_network(
8888
... arrival_distributions=[TimeDependentDist()],
8989
... service_distributions=[ciw.dists.Deterministic(value=0.0)],
90-
... number_of_servers=['Inf']
90+
... number_of_servers=[float('Inf')]
9191
... )
9292
>>> Q = ciw.Simulation(N)
9393
>>> Q.simulate_until_max_time(101)

docs/Reference/parameters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ List of Parameters
55
==================
66

77
Below is a full list of the parameters that the :code:`create_network` function can take, along with a description of the values required.
8-
If using a parameters file then here are the arguments and values of the required :code:`.yml` file.
8+
99

1010
arrival_distributions
1111
~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)