package electrod

  1. Overview
  2. Docs
Formal analysis for the Electrod formal pivot language

Install

Dune Dependency

Authors

Maintainers

Sources

electrod-0.6.2.tbz
sha256=83716b3ec066cbdd807354cec436d93c47f6987e60383094918cc3642107df2b
sha512=469f3c68dd44a95ce89a6b80d73e9938e36342cd99afb7cd77b4612e597f02e03c50bcd99ba33eb4fd21d6836796c04eacb6bf0da415f03f622f5b0a9969c1f9

doc/src/electrod.libelectrod/Elo_to_ltl_intf.ml.html

Source file Elo_to_ltl_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(*******************************************************************************
 * electrod - a model finder for relational first-order linear temporal logic
 * 
 * Copyright (C) 2016-2020 ONERA
 * Authors: Julien Brunel (ONERA), David Chemouil (ONERA)
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * 
 * SPDX-License-Identifier: MPL-2.0
 * License-Filename: LICENSE.md
 ******************************************************************************)

(** Abstract type for a converter from Elo models to (abstract) LTL formulas.  *)

module type S = sig
  type atomic

  (* LTL propositional atoms *)

  type ltl

  (* ltl formula *)

  val convert : Elo.t -> Elo.fml -> string * ltl
end
OCaml

Innovation. Community. Security.