Untitled

 avatar
unknown
plain_text
a year ago
607 B
6
Indexable
let rec createBooleanMap  (edges:List<Compiler.Edge>) sofarBooleanMap:Map<string,List<Compiler.Edge>> =
  match edges with
  | [] -> sofarBooleanMap
  | ei :: tail ->  match ei.label with
                    | Compiler.BoolLabel(b)-> 
                        match (sofarBooleanMap |> Map.tryFind ei.source) with
                            | Some(lE) -> createBooleanMap tail (sofarBooleanMap |> Map.add ei.source (lE@[ei]))
                            | None(_) -> createBooleanMap tail (sofarBooleanMap |> Map.add ei.source ([ei]))
                    | _ -> createBooleanMap tail sofarBooleanMap
Editor is loading...
Leave a Comment