We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 521d442 commit 4d894faCopy full SHA for 4d894fa
internal/core/adt/states.go
@@ -318,7 +318,8 @@ func (v *Vertex) allChildConjunctsKnown() bool {
318
return true
319
}
320
321
- if v.Status() == finalized {
+ // TODO(refcount): allow partial processed?
322
+ if v.Status() == finalized || (v.state == nil && v.status != unprocessed) {
323
// This can happen, for instance, if this is called on a parent of a
324
// rooted node that is marked as a parent for a dynamic node.
325
// In practice this should be handled by the caller, but we add this
0 commit comments