Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
colibrics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
colibrics
Commits
0f5fdc68
Commit
0f5fdc68
authored
4 years ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
[Quant] Add a tests for E-matching
parent
f371ed3f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src_colibri2/tests/solve/smt_quant/unsat/dune.inc
+2
-0
2 additions, 0 deletions
src_colibri2/tests/solve/smt_quant/unsat/dune.inc
src_colibri2/tests/solve/smt_quant/unsat/forall7.smt2
+14
-0
14 additions, 0 deletions
src_colibri2/tests/solve/smt_quant/unsat/forall7.smt2
with
16 additions
and
0 deletions
src_colibri2/tests/solve/smt_quant/unsat/dune.inc
+
2
−
0
View file @
0f5fdc68
...
...
@@ -15,3 +15,5 @@
(
rule
(
alias
runtest
)
(
action
(
diff
oracle
forall5
.
smt2
.
res
)))
(
rule
(
action
(
with
-
stdout
-
to
forall6
.
smt2
.
res
(
run
%
{
bin
:
colibri2
}
--
max
-
step
1000
%
{
dep
:
forall6
.
smt2
}))))
(
rule
(
alias
runtest
)
(
action
(
diff
oracle
forall6
.
smt2
.
res
)))
(
rule
(
action
(
with
-
stdout
-
to
forall7
.
smt2
.
res
(
run
%
{
bin
:
colibri2
}
--
max
-
step
1000
%
{
dep
:
forall7
.
smt2
}))))
(
rule
(
alias
runtest
)
(
action
(
diff
oracle
forall7
.
smt2
.
res
)))
This diff is collapsed.
Click to expand it.
src_colibri2/tests/solve/smt_quant/unsat/forall7.smt2
0 → 100644
+
14
−
0
View file @
0f5fdc68
(set-logic ALL)
(declare-sort S 0)
(declare-fun a () S)
(declare-fun P (S) Bool)
(declare-fun f (S S) S)
(declare-fun g (S) S)
(assert (forall ((x S)) (= (f x x) (g x))))
(assert (forall ((x S)) (P (g x))))
(assert (not (P (f a a))))
(check-sat)
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