package smtml
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
An SMT solver frontend for OCaml
Install
dune-project
Dependency
Authors
-
JJoão Pereira <joaomhmpereira@tecnico.ulisboa.pt>
-
FFilipe Marques <filipe.s.marques@tecnico.ulisboa.pt>
-
HHichem Rami Ait El Hara <hra@ocamlpro.com>
-
Rredianthus <redopam@pm.me>
-
AArthur Carcano <arthur.carcano@ocamlpro.com>
-
PPierre Chambart <pierre.chambart@ocamlpro.com>
-
JJosé Fragoso Santos <jose.fragoso@tecnico.ulisboa.pt>
Maintainers
Sources
v0.30.0.tar.gz
md5=afedffddc52bc135ea1bd98b19ca0455
sha512=ed7d21125c7441de37c3326fb667822ccd97e5880449886ff6bcbdddcac39d0cd7821c86982e8b21fa97b308edf92b7c8b4de127a993d56360cef10b63c7c8fa
doc/src/smtml/binder.ml.html
Source file binder.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22(* SPDX-License-Identifier: MIT *) (* Copyright (C) 2023-2026 formalsec *) (* Written by Hichem Rami Ait El Hara *) (* Dolmen's binders *) type t = | Forall | Exists | Let_in [@@deriving ord] let equal a b = match (a, b) with | Forall, Forall | Exists, Exists | Let_in, Let_in -> true | (Forall | Exists | Let_in), _ -> false let hash = function Forall -> 0 | Exists -> 1 | Let_in -> 2 let pp fmt = function | Forall -> Fmt.string fmt "forall" | Exists -> Fmt.string fmt "exists" | Let_in -> Fmt.string fmt "let"
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>