EstimateFactCount returns the number of temporal facts (atom + interval pairs).
()
| 290 | |
| 291 | // EstimateFactCount returns the number of temporal facts (atom + interval pairs). |
| 292 | func (s *TemporalStore) EstimateFactCount() int { |
| 293 | return s.count |
| 294 | } |
| 295 | |
| 296 | // Coalesce merges adjacent or overlapping intervals for the same fact. |
| 297 | // This helps prevent interval explosion in recursive rules. |
no outgoing calls