Skip to content

Commit 589e94b

Browse files
committed
doc
1 parent a12d63a commit 589e94b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/data.ml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,11 @@ and prolog_prog = {
161161

162162
and clause_list = clause Bl.t
163163
and index = first_lvl_idx
164-
and first_lvl_idx = { idx : second_lvl_idx Ptmap.t; time : int; times : times }
164+
and first_lvl_idx = {
165+
idx : second_lvl_idx Ptmap.t;
166+
time : int; (* ticking clock, to timestamp clauses so to recover total order after retrieval if necessary. positive at compile time, negative at run time *)
167+
times : times; (* timestamp of named clauses, for grafting at compile time *)
168+
}
165169
and second_lvl_idx =
166170
| TwoLevelIndex of {
167171
mode : mode;

0 commit comments

Comments
 (0)