We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dceb4be commit cc39dddCopy full SHA for cc39ddd
src/analyses/mCPRegistry.ml
@@ -426,7 +426,7 @@ end
426
427
module DomVariantLattice (DLSpec : DomainListLatticeSpec) =
428
struct
429
- include Lattice.Lift (DomVariantLattice0 (DLSpec))
+ include Lattice.LiftConf (struct include Printable.DefaultConf let expand1 = false end) (DomVariantLattice0 (DLSpec))
430
let name () = "MCP.G"
431
end
432
src/common/domains/printable.ml
@@ -237,6 +237,10 @@ end
237
238
module LiftConf (Conf: LiftConf) (Base: S) =
239
240
+ open struct
241
+ module Base = PrefixName (struct let expand = Conf.expand1 end) (Base)
242
+ end
243
+
244
type t = [`Bot | `Lifted of Base.t | `Top] [@@deriving eq, ord, hash]
245
include Std
246
open Conf
0 commit comments