package incremental
Library for incremental computations
Install
Dune Dependency
Authors
Maintainers
Sources
v0.16.1.tar.gz
md5=c1c01831c72847296ce2569d2cc4372f
sha512=0116a82509c9037529092c5a31bdc8f0c64ed3d4c7a58a67f5250685196c9830e352100c83185bba8b2db949ffc9e3f39a0bbfe14c07e0da63e0302ca24aaa7a
doc/src/incremental/incremental.ml.html
Source file incremental.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
(* This module is mostly a wrapper around [State] functions. *) open! Core open! Import include Incremental_intf module type Incremental_config = Config.Incremental_config module Config = Config let default_max_height_allowed = 128 module Generic = struct module Cutoff = Cutoff module Step_function = Step_function module State = struct include State module type S = sig type state_witness [@@deriving sexp_of] val t : t end let create_internal = create let create ?(max_height_allowed = default_max_height_allowed) () : (module S) = (module struct type state_witness [@@deriving sexp_of] let t = create (module Config.Default ()) ~max_height_allowed end) ;; end module Scope = struct include Scope let current (state : State.t) () = state.current_scope let within state t ~f = State.within_scope state t ~f end include Node let state t = t.state let pack t = Packed.T t let const state a = State.const state a let return = const let observe = State.create_observer let map = State.map let bind = State.bind module N_ary_map_and_bind = struct let map2 = State.map2 let map3 = State.map3 let map4 = State.map4 let map5 = State.map5 let map6 = State.map6 let map7 = State.map7 let map8 = State.map8 let map9 = State.map9 let map10 = State.map10 let map11 = State.map11 let map12 = State.map12 let map13 = State.map13 let map14 = State.map14 let map15 = State.map15 let bind2 = State.bind2 let bind3 = State.bind3 let bind4 = State.bind4 end include N_ary_map_and_bind module Infix = struct let ( >>| ) t f = map t ~f let ( >>= ) t f = bind t ~f end include Infix let join = State.join let if_ = State.if_ let lazy_from_fun state f = State.lazy_from_fun state ~f let default_hash_table_initial_size = State.default_hash_table_initial_size let memoize_fun_by_key = State.memoize_fun_by_key let memoize_fun ?initial_size state hashable f = memoize_fun_by_key state ?initial_size hashable Fn.id f ;; let array_fold state ts ~init ~f = State.array_fold state ts ~init ~f let reduce_balanced state ts ~f ~reduce = Reduce_balanced.create state ts ~f ~reduce module Unordered_array_fold_update = State.Unordered_array_fold_update let unordered_array_fold = State.unordered_array_fold let opt_unordered_array_fold = State.opt_unordered_array_fold let all = State.all let exists = State.exists let for_all = State.for_all let both = State.both let sum = State.sum let opt_sum = State.opt_sum let sum_int = State.sum_int let sum_float = State.sum_float module Var = struct include Var let create = State.create_var let set = State.set_var let value t = t.value let watch t = t.watch (* We override [sexp_of_t] to just show the value, rather than the internal representation. *) let sexp_of_t sexp_of_a t = t.value |> [%sexp_of: a] let replace t ~f = set t (f (latest_value t)) end module Observer = struct include Observer module Update = struct type 'a t = | Initialized of 'a | Changed of 'a * 'a | Invalidated [@@deriving compare, sexp_of] end let on_update_exn t ~(f : _ Update.t -> unit) = State.observer_on_update_exn t ~f:(function | Necessary a -> f (Initialized a) | Changed (a1, a2) -> f (Changed (a1, a2)) | Invalidated -> f Invalidated | Unnecessary -> failwiths ~here:[%here] "Incremental bug -- Observer.on_update_exn got unexpected update Unnecessary" t [%sexp_of: _ t]) ;; let disallow_future_use t = State.disallow_future_use !t let value = State.observer_value let value_exn = State.observer_value_exn (* We override [sexp_of_t] to just show the value, rather than the internal representation. *) let sexp_of_t sexp_of_a (t : _ t) = match !t.state with | Created -> [%message "<unstabilized>"] | Disallowed | Unlinked -> [%message "<disallowed>"] | In_use -> let uopt = !t.observing.value_opt in if Uopt.is_none uopt then [%message "<invalid>"] else [%sexp (Uopt.unsafe_value uopt : a)] ;; end module Before_or_after = Before_or_after module Clock = struct include State.Clock let state = incr_state let default_timing_wheel_config = let alarm_precision = Alarm_precision.about_one_millisecond in let level_bits = [ 14; 13; 5 ] in Timing_wheel.Config.create ~alarm_precision ~level_bits: (Timing_wheel.Level_bits.create_exn level_bits ~extend_to_max_num_bits:true) () ;; let create state ?(timing_wheel_config = default_timing_wheel_config) ~start () = (* Make sure [start] is rounded to the nearest microsecond. Otherwise, if you feed [Clock.now ()] to a time function, it can be rounded down to a time in the past, causing errors. *) let start = Time_ns.of_time_float_round_nearest_microsecond (Time_ns.to_time_float_round_nearest_microsecond start) in State.create_clock state ~timing_wheel_config ~start ;; let alarm_precision t = Timing_wheel.alarm_precision t.timing_wheel let timing_wheel_length = State.timing_wheel_length let now = State.now let watch_now t = t.now.watch let at = State.at let after = State.after let at_intervals = State.at_intervals let advance_clock = State.advance_clock let advance_clock_by t span = advance_clock t ~to_:(Time_ns.add (now t) span) let incremental_step_function = State.incremental_step_function let step_function t ~init steps = incremental_step_function t (const (incr_state t) (Step_function.create_exn ~init ~steps)) ;; let snapshot = State.snapshot end let freeze ?(when_ = fun _ -> true) t = State.freeze t ~only_freeze_when:when_ let depend_on t ~depend_on = State.depend_on t ~depend_on let necessary_if_alive = State.necessary_if_alive module Update = On_update_handler.Node_update let on_update = State.node_on_update let stabilize state = State.stabilize state let am_stabilizing state = State.am_stabilizing state let save_dot = State.save_dot let save_dot_to_file = State.save_dot_to_file module Node_value = struct type 'a t = | Invalid | Necessary_maybe_stale of 'a option | Unnecessary_maybe_stale of 'a option [@@deriving sexp_of] end let node_value t : _ Node_value.t = if not (is_valid t) then Invalid else if is_necessary t then Necessary_maybe_stale (Uopt.to_option t.value_opt) else Unnecessary_maybe_stale (Uopt.to_option t.value_opt) ;; (* We override [sexp_of_t] to show just the value, rather than the internal representation. We only show the value if it is necessary and valid. *) let sexp_of_t sexp_of_a t = if not (is_valid t) then "<invalid>" |> [%sexp_of: string] else if not (is_necessary t) then "<unnecessary>" |> [%sexp_of: string] else if Uopt.is_none t.value_opt then "<uncomputed>" |> [%sexp_of: string] else unsafe_value t |> [%sexp_of: a] ;; module Expert = Expert1 module Let_syntax = struct let return = return let ( >>| ) = ( >>| ) let ( >>= ) = ( >>= ) module Let_syntax = struct let bind = bind let map = map let both t1 t2 = map2 t1 t2 ~f:(fun x1 x2 -> x1, x2) include N_ary_map_and_bind module Open_on_rhs = struct let watch = Var.watch end end end let weak_memoize_fun_by_key = State.weak_memoize_fun_by_key let weak_memoize_fun ?initial_size state hashable f = weak_memoize_fun_by_key ?initial_size state hashable Fn.id f ;; end module Make_with_config (Incremental_config : Incremental_config) () = struct type state_witness [@@deriving sexp_of] include Generic module State = struct include State let t = create_internal (module Incremental_config) ~max_height_allowed:128 end module Clock = struct include Clock let create ?timing_wheel_config ~start () = create ?timing_wheel_config State.t ~start () ;; end module Expert = struct include Expert module Node = struct include Node let create ?on_observability_change f = create State.t ?on_observability_change f end module Step_result = State.Step_result let do_one_step_of_stabilize () = State.do_one_step_of_stabilize State.t end module Let_syntax = struct include Let_syntax let return a = return State.t a module Let_syntax = struct include Let_syntax let return = return end end module Scope = struct include Scope let current () = current State.t () let within t ~f = within State.t t ~f end module Var = struct include Var let create ?use_current_scope value = create ?use_current_scope State.t value end let const a = const State.t a let return a = return State.t a let all ts = all State.t ts let exists ts = exists State.t ts let for_all ts = for_all State.t ts let lazy_from_fun state f = State.lazy_from_fun state ~f let memoize_fun_by_key ?initial_size hashable project_key f = memoize_fun_by_key ?initial_size State.t hashable project_key f ;; let memoize_fun ?initial_size hashable f = memoize_fun ?initial_size State.t hashable f let array_fold ts ~init ~f = array_fold State.t ts ~init ~f let reduce_balanced ts ~f ~reduce = reduce_balanced State.t ts ~f ~reduce let unordered_array_fold ?full_compute_every_n_changes ts ~init ~f ~update = unordered_array_fold State.t ts ~init ~f ~update ?full_compute_every_n_changes ;; let opt_unordered_array_fold ?full_compute_every_n_changes ts ~init ~f ~f_inverse = opt_unordered_array_fold ?full_compute_every_n_changes State.t ts ~init ~f ~f_inverse ;; let sum ?full_compute_every_n_changes ts ~zero ~add ~sub = sum ?full_compute_every_n_changes State.t ts ~zero ~add ~sub ;; let opt_sum ?full_compute_every_n_changes ts ~zero ~add ~sub = opt_sum ?full_compute_every_n_changes State.t ts ~zero ~add ~sub ;; let sum_int ts = sum_int State.t ts let sum_float ts = sum_float State.t ts let stabilize () = stabilize State.t let am_stabilizing () = am_stabilizing State.t let save_dot out = save_dot State.t out let save_dot_to_file file = Out_channel.with_file file ~f:save_dot let lazy_from_fun f = lazy_from_fun State.t f let weak_memoize_fun_by_key ?initial_size hashable project_key f = weak_memoize_fun_by_key ?initial_size State.t hashable project_key f ;; let weak_memoize_fun ?initial_size hashable f = weak_memoize_fun ?initial_size State.t hashable f ;; end module Make () = Make_with_config (Config.Default ()) () include Generic module Add_witness0 (M : sig type t [@@deriving sexp_of] include Invariant.S with type t := t end) : sig type 'w t = M.t [@@deriving sexp_of] include Invariant.S1 with type 'a t := 'a t end = struct type 'w t = M.t let invariant _ t = M.invariant t let sexp_of_t _ t = M.sexp_of_t t end module Add_witness1 (M : sig type 'a t [@@deriving sexp_of] include Invariant.S1 with type 'a t := 'a t end) : sig type ('a, 'w) t = 'a M.t [@@deriving sexp_of] include Invariant.S2 with type ('a, 'b) t := ('a, 'b) t end = struct type ('a, 'w) t = 'a M.t let invariant invariant_a _ t = M.invariant invariant_a t let sexp_of_t sexp_of_a _ t = M.sexp_of_t sexp_of_a t end module Clock = struct include Clock include Add_witness0 (Clock) end module Expert = struct include Expert module Dependency = struct include Dependency include Add_witness1 (struct include Dependency let invariant _ _ = () end) end module Node = struct include Node include Add_witness1 (struct include Node let invariant _ _ = () end) end module Step_result = State.Step_result let do_one_step_of_stabilize state = State.do_one_step_of_stabilize state end module Node = struct include Node include Add_witness1 (Node) end type ('a, 'w) t = ('a, 'w) Node.t [@@deriving sexp_of] type ('a, 'w) incremental = ('a, 'w) t let invariant = Node.invariant module Observer = struct include Observer include Add_witness1 (Observer) end module Scope = struct include Scope include Add_witness0 (Scope) end module State = struct include State include Add_witness0 (State) end module Var = struct include Var include Add_witness1 (Var) end module type S = sig type state_witness [@@deriving sexp_of] include S_gen with type 'a t = ('a, state_witness) incremental with type Before_or_after.t = Before_or_after.t with type Clock.t = state_witness Clock.t with type 'a Cutoff.t = 'a Cutoff.t with type 'a Expert.Dependency.t = ('a, state_witness) Expert.Dependency.t with type 'a Expert.Node.t = ('a, state_witness) Expert.Node.t with type Expert.Step_result.t = Expert.Step_result.t with type 'a Observer.t = ('a, state_witness) Observer.t with type 'a Observer.Update.t = 'a Observer.Update.t with type Packed.t = Packed.t with type Scope.t = state_witness Scope.t with type State.t = state_witness State.t with type State.Stats.t = State.Stats.t with type ('a, 'b) Unordered_array_fold_update.t = ('a, 'b) Unordered_array_fold_update.t with type 'a Update.t = 'a Update.t with type 'a Var.t = ('a, state_witness) Var.t end module Private = struct let debug = debug end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>