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
Instead of relying on flattening the model, which introduces the need for dots (".") in identifiers, find a more functional routine to traverse the graph of the model to map a given variable to its value in a Sample.
Note that the Scalars and nested Functions within the DataType (a.k.a. model) graph can be logically zipped with the Data values of a Sample. (Tuples map to the value representing the first element.) The goal of getPath is to provide a mapping from a given variable identifier to its location in a Sample. The implementation using SamplePath is open for redesign.
The text was updated successfully, but these errors were encountered:
Instead of relying on flattening the model, which introduces the need for dots (".") in identifiers, find a more functional routine to traverse the graph of the model to map a given variable to its value in a
Sample
.Note that the
Scalars
and nestedFunctions
within theDataType
(a.k.a. model) graph can be logically zipped with theData
values of aSample
. (Tuples
map to the value representing the first element.) The goal ofgetPath
is to provide a mapping from a given variable identifier to its location in aSample
. The implementation usingSamplePath
is open for redesign.The text was updated successfully, but these errors were encountered: