-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We should add the following connivence function for calculate_p where instead of specifying indices in an ind_to_ind_value_map we can assume single site ind per vertex and just pass vertices
Similar to
function calculate_p(input, s::IndsNetworkMap)
ndim = dimension(s)
x = zeros(ndim)
for (v, value) in input
ind = only(s[v])
d = dimension(s, ind)
x[d] += index_value_to_scalar(s, ind, value - 1)
end
return x
endReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request