You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/data.ml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,11 @@ and prolog_prog = {
161
161
162
162
and clause_list = clause Bl.t
163
163
and index = first_lvl_idx
164
-
and first_lvl_idx = { idx : second_lvl_idxPtmap.t;time : int;times : times }
164
+
and first_lvl_idx = {
165
+
idx : second_lvl_idxPtmap.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 *)
0 commit comments