Sibling-node-based cost function and indexed operators #285
Unanswered
cgjohannsen
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Not sure what is meant by sibling node here. For part 2, I don't see a specific problem in altering the indices, as long as they are represented in the normal egraph-y way. So I assume |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there! I'm looking into using egg for minimizing the encoding size of a interval-bounded temporal logic. Formulas look something like
G[0,5] (p && q)
meaningp
orq
must occur from now until 5 time steps from now.I have two problems that, judging from previous questions and messing with examples, egg does not provide support for:
G[0,5]
vsG[2,7]
. Some rewrite rules alter these indices, like the rewrite rule(G[0,5] p) && (G[0,10] p) => G[0,10] p
. Is this possible to define in egg?Are my suspicions correct? Any help would be appreciated, thanks!
Beta Was this translation helpful? Give feedback.
All reactions