File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ are similarly undocumented. Following is the list of behaviors that should be re
27
27
parameter with the given index.
28
28
- ` setindex!(::MTKParameters, value, ::ParameterIndex) ` can be used to set the value of a
29
29
parameter with the given index.
30
- - ` parameter_values (sys, sym)` will return a ` ParameterIndex ` object if ` sys ` has been
30
+ - ` parameter_index (sys, sym)` will return a ` ParameterIndex ` object if ` sys ` has been
31
31
` complete ` d (through ` mtkcompile ` , ` complete ` or ` @mtkcompile ` ).
32
32
- ` copy(::MTKParameters) ` is defined and duplicates the parameter object, including the
33
33
memory used by the underlying buffers.
Original file line number Diff line number Diff line change @@ -348,7 +348,12 @@ function modify_nested_subsystem(
348
348
end
349
349
# ignore the name of the root
350
350
if nameof (root) != hierarchy[1 ]
351
- error (" The name of the root system $(nameof (root)) must be included in the name passed to `modify_nested_subsystem`" )
351
+ error ("""
352
+ Invalid analysis point name `$(join (hierarchy, NAMESPACE_SEPARATOR)) `. The name
353
+ must include the name of the root system `$(nameof (root)) `. This typically happens
354
+ when using an analysis point obtained by calling `getproperty` on a system marked
355
+ as `complete` to linearize a system that is not marked as `complete`.
356
+ """ )
352
357
end
353
358
hierarchy = @view hierarchy[2 : end ]
354
359
You can’t perform that action at this time.
0 commit comments