8 lines
173 B
OCaml
8 lines
173 B
OCaml
open Hsim.Types
|
|
open Solvers.Zls
|
|
|
|
module type Model =
|
|
sig
|
|
type state
|
|
val init : string list -> (state, 'b, 'c, carray, carray, carray, zarray, carray) hnode
|
|
end
|