File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1333,8 +1333,8 @@ julia> @varname(x) in keys(vi)
13331333true
13341334```
13351335
1336- Variable `a` is not tracked since it can be computed from the random variable `x` that was
1337- tracked when running `demo1`:
1336+ The variable `a` is not tracked. However, it will be assigned the return value of `demo1`,
1337+ and can be used in subsequent lines of the model, as shown above.
13381338```jldoctest submodel-returned
13391339julia> @varname(a) in keys(vi)
13401340false
@@ -1375,8 +1375,8 @@ julia> @varname(var"sub2.x") in keys(vi)
13751375true
13761376```
13771377
1378- Variables `a` and `b` are not tracked since they can be computed from the random variables `sub1.x` and
1379- `sub2.x` that were tracked when running `demo1`:
1378+ Variables `a` and `b` are not tracked, but are assigned the return values of the respective
1379+ calls to `demo1`:
13801380```jldoctest submodel-returned-prefix
13811381julia> @varname(a) in keys(vi)
13821382false
You can’t perform that action at this time.
0 commit comments