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
4f4b7dcb
Commit
4f4b7dcb
authored
3 years ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
Add more complicated example on mult
parent
af9218d5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!20
Better reccursive function handling
Pipeline
#39135
passed
3 years ago
Stage: test
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src_colibri2/tests/solve/smt_nra/unsat/dune.inc
+3
-0
3 additions, 0 deletions
src_colibri2/tests/solve/smt_nra/unsat/dune.inc
src_colibri2/tests/solve/smt_nra/unsat/mult_hard.smt2
+24
-0
24 additions, 0 deletions
src_colibri2/tests/solve/smt_nra/unsat/mult_hard.smt2
with
27 additions
and
0 deletions
src_colibri2/tests/solve/smt_nra/unsat/dune.inc
+
3
−
0
View file @
4f4b7dcb
...
...
@@ -28,3 +28,6 @@
(
rule
(
alias
runtest
)
(
action
(
run
%
{
bin
:
colibri2
}
--
size
=
100
M
--
time
=
30
s
--
max
-
steps
3500
--
check
-
status
unsat
--
dont
-
print
-
result
%
{
dep
:
mul_pos_zero_le
.
smt2
})))
(
rule
(
alias
runtest
-
learning
)
(
action
(
run
%
{
bin
:
colibri2
}
--
size
=
100
M
--
time
=
30
s
--
max
-
steps
3500
--
check
-
status
unsat
--
learning
--
dont
-
print
-
result
%
{
dep
:
mul_pos_zero_le
.
smt2
})))
(
rule
(
alias
runtest
)
(
action
(
run
%
{
bin
:
colibri2
}
--
size
=
100
M
--
time
=
30
s
--
max
-
steps
3500
--
check
-
status
unsat
--
dont
-
print
-
result
%
{
dep
:
mult_hard
.
smt2
})))
(
rule
(
alias
runtest
-
learning
)
(
action
(
run
%
{
bin
:
colibri2
}
--
size
=
100
M
--
time
=
30
s
--
max
-
steps
3500
--
check
-
status
unsat
--
learning
--
dont
-
print
-
result
%
{
dep
:
mult_hard
.
smt2
})))
This diff is collapsed.
Click to expand it.
src_colibri2/tests/solve/smt_nra/unsat/mult_hard.smt2
0 → 100644
+
24
−
0
View file @
4f4b7dcb
(set-logic ALL)
(declare-const x Real)
(declare-const y Real)
(declare-const v Real)
(declare-const z Real)
(declare-const w Real)
(assert (< 0 x))
(assert (< 0 y))
(assert (< 0 v))
(assert (< 0 z))
(assert (< 0 w))
;(assert (not (= y 0.0)))
;(assert (not (= v 0.0)))
;(assert (< 0.0 (* z w)))
(assert (= (* x y) (/ z (* y (* v v)))))
(assert (= (* (* y v) (* y v)) (/ z w)))
(assert (not (= w x)))
(check-sat)
; &xy=zy^{-1}v^{-2} & yv = \sqrt{\frac{z}{w}} \\
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