Skip to content

Commit 6bb7d11

Browse files
committed
ResumableFunctions needs no longer to be imported
1 parent 8b93e08 commit 6bb7d11

File tree

5 files changed

+1
-4
lines changed

5 files changed

+1
-4
lines changed

src/SimJulia.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ module SimJulia
1818
export Event, succeed, fail, @callback, remove_callback
1919
export timeout
2020
export Operator, (&), (|)
21+
export @resumable, @yield
2122
export AbstractProcess, Simulation, run, now, active_process, StopSimulation
2223
export Process, @process, interrupt
2324
export Container, Resource, Store, put, get, request, release, cancel

test/processes.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using SimJulia
2-
using ResumableFunctions
32

43
@resumable function fibonnaci(sim::Simulation)
54
a = 0

test/resources/containers.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using SimJulia
2-
using ResumableFunctions
32

43
@resumable function client(sim::Simulation, res::Resource, i::Int, priority::Int)
54
println("$(now(sim)), client $i is waiting")

test/resources/stores.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using SimJulia
2-
using ResumableFunctions
32

43
struct StoreObject
54
i :: Int

test/utils/time.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using SimJulia
2-
using ResumableFunctions
32
using Dates
43

54
@resumable function datetimetest(sim::Simulation)

0 commit comments

Comments
 (0)