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
Right now, the representation of Action::Set looks like this: Set(Head, Vec<GenericAtomTerm<Leaf>>, GenericAtomTerm<Leaf>)
While this is good because it disallows variables or literals as the left child to the set, it's bad because it makes it hard to map over set terms.
The map_exprs function is a bit inconsistent right now because it doesn't map over the first argument of Set.
The text was updated successfully, but these errors were encountered:
Right now, the representation of
Action::Set
looks like this:Set(Head, Vec<GenericAtomTerm<Leaf>>, GenericAtomTerm<Leaf>)
While this is good because it disallows variables or literals as the left child to the set, it's bad because it makes it hard to map over set terms.
The
map_exprs
function is a bit inconsistent right now because it doesn't map over the first argument ofSet
.The text was updated successfully, but these errors were encountered: