summaryrefslogtreecommitdiff
path: root/abstract/_domain.ml
blob: 643a6ec4b34e4cc4b1a36eddcce31b76a7ff4190 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
open Abstract_syntax_tree

module type S =
  sig
    type tv
    type ts

    val top_ts : ts

    val interp_abs : stat -> ts -> ts
    
  end