package lrgrep

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Kernel.LrcSource

Sourcetype 'g n
Sourcetype ('g, 'n) t = {
  1. lr1_of : ('n, 'g Info.lr1 Fix.Indexing.index) Fix.Indexing.vector;
  2. lrcs_of : ('g Info.lr1, 'n Utils.Misc.indexset) Fix.Indexing.vector;
  3. all_wait : 'n Utils.Misc.indexset;
  4. all_leaf : 'n Utils.Misc.indexset;
  5. all_successors : ('n, 'n Utils.Misc.indexset) Fix.Indexing.vector;
  6. reachable_from : ('n, 'n Utils.Misc.indexset) Fix.Indexing.vector;
}
Sourceval make : 'g Info.grammar -> 'g Reachability.t -> ('g, 'g n) t
Sourceval to_string : 'g Info.grammar -> ('g, 'g n) t -> 'g n Fix.Indexing.index -> string
Sourceval set_to_string : 'g Info.grammar -> ('g, 'g n) t -> 'g n Utils.Misc.indexset -> string
Sourcetype 'n entrypoints = {
  1. reachable : 'n Utils.Misc.indexset;
  2. wait : 'n Utils.Misc.indexset;
  3. entrypoints : 'n Utils.Misc.indexset;
  4. successors : ('n, 'n Utils.Misc.indexset) Fix.Indexing.vector;
  5. predecessors : ('n, 'n Utils.Misc.indexset) Fix.Indexing.vector;
  6. some_prefix : 'n Fix.Indexing.index -> 'n Fix.Indexing.index list;
}
Sourceval from_entrypoints : 'g Info.grammar -> ('g, 'n) t -> 'n Utils.Misc.indexset -> 'n entrypoints
Sourceval check_deterministic : 'g Info.grammar -> 'g Reachability.t -> unit
Sourcetype 'g mlrc
Sourceval make_minimal : 'g Info.grammar -> 'g Reachability.t -> ('g, 'g mlrc) t
Sourceval check_equivalence : 'g Info.grammar -> ('g, 'n1) t -> ('g, 'n2) t -> 'n1 Utils.Misc.indexset -> 'n2 Utils.Misc.indexset -> unit