copilot-language: A Haskell-embedded DSL for monitoring hard real-time distributed systems.

[ bsd3, embedded, language, library ] [ Propose Tags ]

The concrete syntax for Copilot.

Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in Haskell that compiles into embedded C. Copilot contains an interpreter, multiple back-end compilers, and other verification tools.

A tutorial, examples, and other information are available at https://copilot-language.github.io.


[Skip to Readme]

Modules

[Last Documentation]

  • Copilot
    • Copilot.Language
      • Operators
        • Copilot.Language.Operators.Array
        • Copilot.Language.Operators.BitWise
        • Copilot.Language.Operators.Boolean
        • Copilot.Language.Operators.Cast
        • Copilot.Language.Operators.Constant
        • Copilot.Language.Operators.Eq
        • Copilot.Language.Operators.Extern
        • Copilot.Language.Operators.Integral
        • Copilot.Language.Operators.Label
        • Copilot.Language.Operators.Local
        • Copilot.Language.Operators.Mux
        • Copilot.Language.Operators.Ord
        • Copilot.Language.Operators.Propositional
        • Copilot.Language.Operators.Struct
        • Copilot.Language.Operators.Temporal
      • Copilot.Language.Prelude
      • Copilot.Language.Reify
      • Copilot.Language.Spec
      • Copilot.Language.Stream

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.9.1, 2.1.1, 2.1.2, 2.2.0, 2.2.1, 3.0, 3.0.1, 3.1, 3.2, 3.2.1, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14, 3.15, 3.16, 3.16.1, 3.17, 3.18, 3.18.1, 3.19
Change log CHANGELOG
Dependencies array (>=0.5 && <0.6), base (>=4.9 && <5), containers (>=0.4 && <0.7), copilot-core (>=3.18 && <3.19), copilot-interpreter (>=3.18 && <3.19), copilot-theorem (>=3.18 && <3.19), data-reify (>=0.6 && <0.7), mtl (>=2.0 && <3) [details]
License BSD-3-Clause
Author Frank Dedden, Lee Pike, Robin Morisset, Alwyn Goodloe, Sebastian Niller, Nis Nordby Wegmann, Ivan Perez
Maintainer Ivan Perez <ivan.perezdominguez@nasa.gov>
Category Language, Embedded
Home page https://copilot-language.github.io
Bug tracker https://github.com/Copilot-Language/copilot/issues
Source repo head: git clone https://github.com/Copilot-Language/copilot.git(copilot-language)
Uploaded by IvanPerez at 2024-01-08T00:22:34Z
Distributions
Reverse Dependencies 8 direct, 0 indirect [details]
Downloads 16040 total (109 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2024-01-08 [all 2 reports]

Readme for copilot-language-3.18

[back to package description]

Build Status

Copilot: a stream DSL

Copilot-language contains the actual embedded domain specific language that Copilot provides to its users. It comes with a series of basic operators and functionality, typically enough for most applications. Extended functionality is provided by the copilot-libraries module.

Copilot is a runtime verification framework written in Haskell. It allows the user to write programs in a simple but powerful way using a stream-based approach.

Programs can be interpreted for testing, or translated C99 code to be incorporated in a project, or as a standalone application. The C99 backend ensures us that the output is constant in memory and time, making it suitable for systems with hard realtime requirements.

Installation

Copilot-language can be found on Hackage. It is typically only installed as part of the complete Copilot distribution. For installation instructions, please refer to the Copilot website.

Further information

For further information, install instructions and documentation, please visit the Copilot website: https://copilot-language.github.io

License

Copilot is distributed under the BSD-3-Clause license, which can be found here.