You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ The interface includes:
8
8
*`Simulation` type to hold simulation variables
9
9
*`initialize!(sim::Simulation)` to initialize/reset the system under test
10
10
*`evaluate!(sim::Simulation)` to evaluate/execute the system under test
11
-
*`transition_model!(sim::Simulation)` to transition the simulator, returning the log-likelihood
12
-
*`isevent!(sim::Simulation)` to indicate if a failure event occurred
13
-
*`miss_distance!(sim::Simulation)` to return how close we are to an event
11
+
*`transition!(sim::Simulation)` to transition the simulator, returning the log-likelihood
12
+
*`distance!(sim::Simulation)` to return how close we are to an event
13
+
*`isevent!(sim::Simulation)` to indicate if a failure event occurred
14
14
*`isterminal!(sim::Simulation)` to indicate the simulation is in a terminal state
15
15
16
16
All of these functions can modify the `Simulation` object in place.
@@ -20,5 +20,16 @@ All of these functions can modify the `Simulation` object in place.
20
20
21
21
See example implementation of the AST interface for the Walk1D problem: [`test/Walk1D.jl`](https://github.com/mossr/POMDPStressTesting.jl/blob/master/test/Walk1D.jl).
22
22
23
-
With an accompanying notebook: [`Walk1D.ipynb`](https://github.com/mossr/POMDPStressTesting.jl/blob/master/notebooks/Walk1D.ipynb)
23
+
With an accompanying descriptive write-up: [`walk1d.pdf`](./test/pdf/walk1d.pdf)
0 commit comments