Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
b06dc992
Commit
b06dc992
authored
1 year ago
by
Julien Girard-Satabin
Browse files
Options
Downloads
Plain Diff
Merge branch 'stable/0.2'
parents
69c6113a
6def4f13
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+2
-2
2 additions, 2 deletions
Makefile
caisar-xgboost.opam
+39
-0
39 additions, 0 deletions
caisar-xgboost.opam
dune-project
+14
-0
14 additions, 0 deletions
dune-project
lib/xgboost/dune
+1
-1
1 addition, 1 deletion
lib/xgboost/dune
with
56 additions
and
3 deletions
Makefile
+
2
−
2
View file @
b06dc992
all
:
dune build
--root
=
.
@install caisar.opam caisar-nnet.opam caisar-onnx.opam caisar-ovo.opam caisar-ir.opam
dune build
--root
=
.
@install caisar.opam caisar-nnet.opam caisar-onnx.opam caisar-ovo.opam caisar-ir.opam
caisar-xgboost.opam
all-ci
:
dune build
-j2
--root
=
.
@install caisar.opam caisar-nnet.opam caisar-onnx.opam caisar-ovo.opam caisar-ir.opam
dune build
-j2
--root
=
.
@install caisar.opam caisar-nnet.opam caisar-onnx.opam caisar-ovo.opam caisar-ir.opam
caisar-xgboost.opam
install
:
dune
install
...
...
This diff is collapsed.
Click to expand it.
caisar-xgboost.opam
0 → 100644
+
39
−
0
View file @
b06dc992
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.2"
synopsis: "XGBOOST parser for CAISAR"
maintainer: [
"LAISER team, Software Safety and Security Laboratory, CEA-List"
]
authors: ["LAISER team, Software Safety and Security Laboratory, CEA-List"]
license: "LGPL-2.1-only"
homepage: "https://git.frama-c.com/pub/caisar"
doc: "https://git.frama-c.com/pub/caisar"
bug-reports: "https://git.frama-c.com/pub/caisar/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "2.9" & >= "2.9.3"}
"base" {>= "v0.14.0"}
"ocamlgraph" {>= "1.8.8"}
"ppx_deriving" {>= "4.4.1"}
"ppx_deriving_yojson" {>= "3.6.1"}
"csv" {>= "2.4"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://git.frama-c.com/pub/caisar.git"
This diff is collapsed.
Click to expand it.
dune-project
+
14
−
0
View file @
b06dc992
...
...
@@ -49,6 +49,20 @@
)
)
(package
(name caisar-xgboost)
(synopsis "XGBOOST parser for CAISAR")
(depends
(ocaml (>= 4.13))
(dune (>= 2.9.3))
(base (>= v0.14.0))
(ocamlgraph (>= 1.8.8))
(ppx_deriving (>= 4.4.1))
(ppx_deriving_yojson (>= 3.6.1))
(csv (>= 2.4))
)
)
(package
(name caisar-ir)
(synopsis "CAISAR's intermediate representation")
...
...
This diff is collapsed.
Click to expand it.
lib/xgboost/dune
+
1
−
1
View file @
b06dc992
(library
(public_name caisar
.
xgboost)
(public_name caisar
-
xgboost)
(name caisar_xgboost)
(preprocess
(pps ppx_deriving.show ppx_deriving_yojson))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment