Summary:public Will be needed later to avoid circular dependencies between dom.ml and upcoming numericalDomain.ml. Reviewed By: jberdine Differential Revision: D3126697 fb-gh-sync-id: 678d49f fbshipit-source-id: 678d49fmaster
parent
031f433b15
commit
660250dcf7
@ -0,0 +1,21 @@
|
|||||||
|
(*
|
||||||
|
* Copyright (c) 2016 - present Facebook, Inc.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the BSD style license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||||||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
*)
|
||||||
|
|
||||||
|
(** Object representing the status of the join operation *)
|
||||||
|
|
||||||
|
type mode =
|
||||||
|
| Pre
|
||||||
|
| Post
|
||||||
|
|
||||||
|
(** set to true when we are doing join of footprints *)
|
||||||
|
let footprint = ref false
|
||||||
|
|
||||||
|
let get_footprint () = !footprint
|
||||||
|
|
||||||
|
let set_footprint b = footprint := b
|
@ -0,0 +1,17 @@
|
|||||||
|
(*
|
||||||
|
* Copyright (c) 2016 - present Facebook, Inc.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the BSD style license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||||||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
*)
|
||||||
|
|
||||||
|
(** Object representing the status of the join operation *)
|
||||||
|
|
||||||
|
type mode =
|
||||||
|
| Pre
|
||||||
|
| Post
|
||||||
|
|
||||||
|
val get_footprint : unit -> bool
|
||||||
|
val set_footprint : bool -> unit
|
Loading…
Reference in new issue