forked from caterinaurban/function
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e259b5
commit 168ea8b
Showing
13 changed files
with
423 additions
and
307 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(library | ||
(name banal) | ||
(libraries zarith utils apron frontend oUnit apron.boxMPQ apron.octMPQ | ||
apron.polkaMPQ) | ||
(foreign_stubs | ||
(language c) | ||
(names ml_float)) | ||
(flags | ||
(:standard -open Utils -open Frontend -open Apron))) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
(library | ||
(name cfgfrontend) | ||
(libraries zarith utils frontend) | ||
(flags | ||
(:standard -open Utils -open Frontend))) | ||
|
||
(ocamllex | ||
(modules program_lexer)) | ||
|
||
(menhir | ||
(modules program_parser)) | ||
|
||
;;(flags --explain)) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(library | ||
(name domains) | ||
(libraries utils frontend banal apron apron.boxMPQ apron.octMPQ | ||
apron.polkaMPQ) | ||
(flags | ||
(:standard -open Utils -open Banal -open Frontend -open Apron))) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
(lang dune 2.4) | ||
( using menhir 2.0) | ||
(wrapped_executables false) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(library | ||
(name frontend) | ||
(libraries apron)) | ||
|
||
(ocamllex | ||
(modules Lexer PropertyLexer CTLPropertyLexer)) | ||
|
||
(menhir | ||
(modules Parser PropertyParser CTLPropertyParser)) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "A short synopsis" | ||
description: "A longer description" | ||
maintainer: ["Maintainer Name"] | ||
authors: ["Author Name"] | ||
license: "LICENSE" | ||
tags: ["topics" "to describe" "your" "project"] | ||
homepage: "https://github.com/username/reponame" | ||
doc: "https://url/to/documentation" | ||
bug-reports: "https://github.com/username/reponame/issues" | ||
depends: [ | ||
"ocaml" | ||
"dune" {>= "3.6"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/username/reponame.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(executable | ||
(public_name main) | ||
(name main) | ||
(promote | ||
(until-clean) | ||
(into ..)) | ||
(flags | ||
(:standard -open Frontend -open Domains -open Cfgfrontend -open Utils)) | ||
(libraries frontend cfgfrontend utils domains)) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
(library | ||
(name utils) | ||
(libraries frontend) | ||
(flags | ||
(:standard -open Frontend))) | ||
|
||
(env | ||
(dev | ||
(flags | ||
(:standard -w -9-27-32-33-35 -warn-error -A)))) |