WithTemporalStore configures a temporal fact store for temporal reasoning.
(store factstore.TemporalFactStore)
| 120 | |
| 121 | // WithTemporalStore configures a temporal fact store for temporal reasoning. |
| 122 | func WithTemporalStore(store factstore.TemporalFactStore) EvalOption { |
| 123 | return func(o *EvalOptions) { o.temporalStore = store } |
| 124 | } |
| 125 | |
| 126 | // WithEvaluationTime sets the evaluation time for temporal queries. |
| 127 | func WithEvaluationTime(t time.Time) EvalOption { |
no outgoing calls