Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] fix typo in objective state tutorial #506

Merged
merged 1 commit into from Feb 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/tutorial/advanced/11_objective_states.jl
Expand Up @@ -143,8 +143,8 @@ print("Finished training and simulating.")
[stage[:noise_term] for stage in simulations[1]]

# This, the fuel cost in the first stage should be `0.75 * 50 = 37.5`. The fuel
# cost in the second stage should be `0.9 * 37.5 = 33.75`. The fuel cost in the
# third stage should be `1.25 * 33.75 = 42.1875`.
# cost in the second stage should be `1.1 * 37.5 = 41.25`. The fuel cost in the
# third stage should be `0.75 * 41.25 = 30.9375`.

# To confirm this, the values of the objective state in a simulation can be
# queried using the `:objective_state` key.
Expand Down