Skip to content

Commit

Permalink
Removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasale committed Jul 29, 2023
1 parent 6e73854 commit 2b5836c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ def example_mm1():
queue = jmt.Queue(model, "myQueue", jmt.SchedStrategy.FCFS)
sink = jmt.Sink(model, "mySink")
# An open class with priority of 2
openclass = jmt.OpenClass(model, "Class1", 2)
openclass = jmt.OpenClass(model, "Class1")
source.setArrival(openclass, jmt.Exp(0.5))
queue.setService(openclass, jmt.Exp(1.0))
Expand Down
4 changes: 2 additions & 2 deletions getting_started.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ def example_mm1():
queue = jmt.Queue(model, "myQueue", jmt.SchedStrategy.FCFS)
sink = jmt.Sink(model, "mySink")

# An open class with priority of 2
openclass = jmt.OpenClass(model, "Class1", 2)
# An open class
openclass = jmt.OpenClass(model, "Class1")
source.setArrival(openclass, jmt.Exp(0.5))
queue.setService(openclass, jmt.Exp(1.0))

Expand Down

0 comments on commit 2b5836c

Please sign in to comment.