File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1362,8 +1362,8 @@ julia> @varname(x) in keys(vi)
1362
1362
true
1363
1363
```
1364
1364
1365
- Variable `a` is not tracked since it can be computed from the random variable `x` that was
1366
- tracked when running `demo1`:
1365
+ The variable `a` is not tracked. However, it will be assigned the return value of `demo1`,
1366
+ and can be used in subsequent lines of the model, as shown above.
1367
1367
```jldoctest submodel-to_submodel
1368
1368
julia> @varname(a) in keys(vi)
1369
1369
false
@@ -1404,8 +1404,8 @@ julia> @varname(var"sub2.x") in keys(vi)
1404
1404
true
1405
1405
```
1406
1406
1407
- Variables `a` and `b` are not tracked since they can be computed from the random variables `sub1.x` and
1408
- `sub2.x` that were tracked when running `demo1`:
1407
+ Variables `a` and `b` are not tracked, but are assigned the return values of the respective
1408
+ calls to `demo1`:
1409
1409
```jldoctest submodel-to_submodel-prefix
1410
1410
julia> @varname(a) in keys(vi)
1411
1411
false
You can’t perform that action at this time.
0 commit comments