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
77c43c8f
Commit
77c43c8f
authored
1 year ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
[proof_strategy] Strategy for native nn provers splits top-level conjunctions in goal formula.
parent
3901e213
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/proof_strategy.ml
+25
-29
25 additions, 29 deletions
src/proof_strategy.ml
src/proof_strategy.mli
+2
-2
2 additions, 2 deletions
src/proof_strategy.mli
src/verification.ml
+6
-6
6 additions, 6 deletions
src/verification.ml
with
33 additions
and
37 deletions
src/proof_strategy.ml
+
25
−
29
View file @
77c43c8f
...
@@ -20,9 +20,10 @@
...
@@ -20,9 +20,10 @@
(* *)
(* *)
(**************************************************************************)
(**************************************************************************)
open
Base
open
Why3
open
Why3
let
do_count
_nn_ls
~
lookup
=
let
set_of
_nn_ls
~
lookup
sls
=
let
rec
aux
acc
term
=
let
rec
aux
acc
term
=
let
acc
=
Term
.
t_fold
aux
acc
term
in
let
acc
=
Term
.
t_fold
aux
acc
term
in
match
term
.
t_node
with
match
term
.
t_node
with
...
@@ -30,38 +31,33 @@ let do_count_nn_ls ~lookup =
...
@@ -30,38 +31,33 @@ let do_count_nn_ls ~lookup =
match
lookup
ls
with
None
->
acc
|
Some
_
->
Term
.
Sls
.
add
ls
acc
)
match
lookup
ls
with
None
->
acc
|
Some
_
->
Term
.
Sls
.
add
ls
acc
)
|
_
->
acc
|
_
->
acc
in
in
Trans
.
bind
Trans
.
fold_decl
(
fun
decl
acc
->
Decl
.
decl_fold
aux
acc
decl
)
sls
(
Trans
.
fold_decl
(
fun
decl
acc
->
Decl
.
decl_fold
aux
acc
decl
)
Term
.
Sls
.
empty
)
(
fun
s
->
Trans
.
return
(
Term
.
Sls
.
cardinal
s
))
let
apply_
classic_prover
env
task
=
let
do_
apply_
prover
~
lookup
~
trans
task
s
=
let
nb
_nn_
apply
=
let
set
_nn_
ls
=
let
count_nn_apply
=
do_count_nn_ls
~
lookup
:
Language
.
lookup_loaded_nets
in
List
.
fold
tasks
~
init
:
Term
.
Sls
.
empty
~
f
:
(
fun
accum
task
->
Trans
.
apply
count_nn_apply
task
Trans
.
apply
(
set_of_nn_ls
~
lookup
accum
)
task
)
in
in
match
nb_nn_apply
with
let
count_nn_ls
=
Term
.
Sls
.
cardinal
set_nn_ls
in
|
0
->
task
match
count_nn_ls
with
|
1
->
Trans
.
apply
(
Nn2smt
.
trans
env
)
task
|
0
->
tasks
|
1
->
List
.
map
tasks
~
f
:
(
Trans
.
apply
trans
)
|
_
->
|
_
->
invalid_arg
"Two or more neural network applications are not supported yet"
invalid_arg
"Two or more neural network applications are not supported yet"
let
apply_classic_prover
env
task
=
let
lookup
=
Language
.
lookup_loaded_nets
in
let
trans
=
Nn2smt
.
trans
env
in
do_apply_prover
~
lookup
~
trans
[
task
]
let
apply_native_nn_prover
env
task
=
let
apply_native_nn_prover
env
task
=
let
nb_nn_applications
=
let
lookup
=
Language
.
lookup_nn
in
let
count_nn_applications
=
do_count_nn_ls
~
lookup
:
Language
.
lookup_nn
in
let
trans
=
Trans
.
apply
count_nn_applications
task
Trans
.
seq
[
Introduction
.
introduce_premises
;
Native_nn_prover
.
trans_nn_application
env
;
]
in
in
match
nb_nn_applications
with
let
tasks
=
Trans
.
apply
Split_goal
.
split_goal_full
task
in
|
0
->
task
do_apply_prover
~
lookup
~
trans
tasks
|
1
->
Trans
.(
apply
(
seq
[
Introduction
.
introduce_premises
;
Native_nn_prover
.
trans_nn_application
env
;
]))
task
|
_
->
invalid_arg
"Two or more neural network applications are not supported yet"
This diff is collapsed.
Click to expand it.
src/proof_strategy.mli
+
2
−
2
View file @
77c43c8f
...
@@ -22,8 +22,8 @@
...
@@ -22,8 +22,8 @@
open
Why3
open
Why3
val
apply_classic_prover
:
Env
.
env
->
Task
.
task
->
Task
.
task
val
apply_classic_prover
:
Env
.
env
->
Task
.
task
->
Task
.
task
list
(** Detect and translate applications of neural networks into SMT-LIB. *)
(** Detect and translate applications of neural networks into SMT-LIB. *)
val
apply_native_nn_prover
:
Env
.
env
->
Task
.
task
->
Task
.
task
val
apply_native_nn_prover
:
Env
.
env
->
Task
.
task
->
Task
.
task
list
(** Detect and execute applications of neural networks. *)
(** Detect and execute applications of neural networks. *)
This diff is collapsed.
Click to expand it.
src/verification.ml
+
6
−
6
View file @
77c43c8f
...
@@ -223,8 +223,8 @@ let answer_dataset limit config env prover config_prover driver dataset task =
...
@@ -223,8 +223,8 @@ let answer_dataset limit config env prover config_prover driver dataset task =
in
in
(
prover_answer
,
additional_info
)
(
prover_answer
,
additional_info
)
let
answer_generic
limit
config
prover
config_prover
driver
task
=
let
answer_generic
limit
config
env
prover
config_prover
driver
~
strategy
task
=
let
tasks
=
Trans
.
apply
Split_goal
.
split_goal_full
task
in
let
tasks
=
strategy
env
task
in
let
answers
=
let
answers
=
List
.
concat_map
tasks
~
f
:
(
fun
task
->
List
.
concat_map
tasks
~
f
:
(
fun
task
->
let
task
=
Driver
.
prepare_task
driver
task
in
let
task
=
Driver
.
prepare_task
driver
task
in
...
@@ -263,11 +263,11 @@ let call_prover ~cwd ~limit config env prover config_prover driver ?dataset task
...
@@ -263,11 +263,11 @@ let call_prover ~cwd ~limit config env prover config_prover driver ?dataset task
answer_dataset
limit
config
env
prover
config_prover
driver
dataset
task
answer_dataset
limit
config
env
prover
config_prover
driver
dataset
task
|
Marabou
|
Pyrat
|
Nnenum
->
|
Marabou
|
Pyrat
|
Nnenum
->
let
task
=
Interpretation
.
interpret_task
~
cwd
env
task
in
let
task
=
Interpretation
.
interpret_task
~
cwd
env
task
in
let
task
=
Proof_strategy
.
apply_native_nn_prover
env
task
in
let
strategy
=
Proof_strategy
.
apply_native_nn_prover
in
answer_generic
limit
config
prover
config_prover
driver
task
answer_generic
limit
config
env
prover
config_prover
driver
~
strategy
task
|
CVC5
->
|
CVC5
->
let
task
=
Proof_strategy
.
apply_classic_prover
env
task
in
let
strategy
=
Proof_strategy
.
apply_classic_prover
in
answer_generic
limit
config
prover
config_prover
driver
task
answer_generic
limit
config
env
prover
config_prover
driver
~
strategy
task
in
in
let
id
=
Task
.
task_goal
task
in
let
id
=
Task
.
task_goal
task
in
{
id
;
prover_answer
;
additional_info
}
{
id
;
prover_answer
;
additional_info
}
...
...
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