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
5422acbb
Commit
5422acbb
authored
11 years ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
[Bool] fix:special case for cl=true and cl=false work (bad or pattern ...)
parent
0ca0f6af
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
src/bool.ml
+13
-7
13 additions, 7 deletions
src/bool.ml
src/uninterp.ml
+5
-1
5 additions, 1 deletion
src/uninterp.ml
with
19 additions
and
9 deletions
Makefile
+
1
−
1
View file @
5422acbb
PACKAGES
=
oUnit zarith ocamlgraph str
#-package lablgtk2
PACKAGES
=
oUnit zarith ocamlgraph str
#-package lablgtk2
OPTIONS
=
-tag
annot
-no-sanitize
-tag
debug
-use-ocamlfind
-cflags
-w
,+a-4-9
-cflags
-warn-error
,+5+10+8
-cflag
-bin-annot
-j
8
OPTIONS
=
-tag
annot
-no-sanitize
-tag
debug
-use-ocamlfind
-cflags
-w
,+a-4-9
-cflags
-warn-error
,+5+10+8
+12
-cflag
-bin-annot
-j
8
#OPTIONS += -cflags -warn-error,+a
#OPTIONS += -cflags -warn-error,+a
DIRECTORIES
=
src src/util src/inputlang/altergo src/inputlang/dimacs_cnf src/inputlang/smtlib2 tests src/cmd fuzz
DIRECTORIES
=
src src/util src/inputlang/altergo src/inputlang/dimacs_cnf src/inputlang/smtlib2 tests src/cmd fuzz
OCAMLBUILD
=
ocamlbuild
\
OCAMLBUILD
=
ocamlbuild
\
...
...
This diff is collapsed.
Click to expand it.
src/bool.ml
+
13
−
7
View file @
5422acbb
...
@@ -183,7 +183,7 @@ module Th = struct
...
@@ -183,7 +183,7 @@ module Th = struct
|
None
->
raise
(
Found
(
cl
,
b
))
|
None
->
raise
(
Found
(
cl
,
b
))
)
l
)
l
let
bcp
d
l
absorbent
=
let
_
bcp
d
l
absorbent
=
try
try
let
res
=
IArray
.
fold
(
fun
acc
cl
->
let
res
=
IArray
.
fold
(
fun
acc
cl
->
let
cl
=
Delayed
.
find
d
cl
in
let
cl
=
Delayed
.
find
d
cl
in
...
@@ -750,20 +750,26 @@ module ConClause = struct
...
@@ -750,20 +750,26 @@ module ConClause = struct
let
s
=
get_con
s
t
c2
in
let
s
=
get_con
s
t
c2
in
GRequested
s
GRequested
s
let
propacl
t
age
cl
rcl
=
let
propacl
t
_
age
cl
o
rcl
=
match
cl
,
rcl
with
match
cl
o
,
rcl
with
|
_true
,
cl
|
cl
,
_true
when
Cl
.
equal
_true
cl_true
->
|
(
_true
,
cl
)
when
Cl
.
equal
_true
cl_true
->
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
GRequested
(
Cl
.
M
.
singleton
cl
true
)
GRequested
(
Cl
.
M
.
singleton
cl
true
)
|
_false
,
cl
|
cl
,
_false
when
Cl
.
equal
_false
cl_false
->
|
(
cl
,
_true
)
when
Cl
.
equal
_true
cl_true
->
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
GRequested
(
Cl
.
M
.
singleton
cl
true
)
|
(
_false
,
cl
)
when
Cl
.
equal
_false
cl_false
->
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
GRequested
(
Cl
.
M
.
singleton
cl
false
)
|
(
cl
,
_false
)
when
Cl
.
equal
_false
cl_false
->
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
ComputeConflict
.
set_dec_cho
t
dom
cl
chobool
cl
;
GRequested
(
Cl
.
M
.
singleton
cl
false
)
GRequested
(
Cl
.
M
.
singleton
cl
false
)
|
_
->
|
_
->
let
eq
=
!
mk_permanent_equality
(
cl
,
rcl
)
in
let
eq
=
!
mk_permanent_equality
(
cl
o
,
rcl
)
in
ComputeConflict
.
set_dec_cho
t
dom
eq
chobool
eq
;
ComputeConflict
.
set_dec_cho
t
dom
eq
chobool
eq
;
GRequested
(
Cl
.
M
.
singleton
eq
true
)
GRequested
(
Cl
.
M
.
singleton
eq
true
)
let
propasem
t
age
sem
v
cl
=
let
propasem
t
_
age
sem
v
cl
=
(** TODO ty bool if sem is bool? *)
(** TODO ty bool if sem is bool? *)
let
eq
=
!
mk_permanent_equality
(
cl
,
new_permanent
sem
v
(
Cl
.
ty
cl
))
in
let
eq
=
!
mk_permanent_equality
(
cl
,
new_permanent
sem
v
(
Cl
.
ty
cl
))
in
ComputeConflict
.
set_dec_cho
t
dom
eq
chobool
eq
;
ComputeConflict
.
set_dec_cho
t
dom
eq
chobool
eq
;
...
...
This diff is collapsed.
Click to expand it.
src/uninterp.ml
+
5
−
1
View file @
5422acbb
...
@@ -301,8 +301,12 @@ module ExpSubst = struct
...
@@ -301,8 +301,12 @@ module ExpSubst = struct
let
fty
=
Cl
.
ty
f
in
let
fty
=
Cl
.
ty
f
in
let
gty
=
Cl
.
ty
g
in
let
gty
=
Cl
.
ty
g
in
let
deps
=
Deps
.
empty
in
let
deps
=
Deps
.
empty
in
let
rl
=
get_sem
t
sem
v
in
let
ty
=
match
rl
with
CRepr
->
assert
false
(* get_sem *)
|
CMerge
(
rcl
,_,_,_
)
->
Cl
.
ty
rcl
in
let
deps
=
let
deps
=
Equality
.
GenEquality
.
sem_def
t
deps
age
(
get_sem
t
sem
v
)
in
(** TODO separate the first Merge(UF) from the others(GenEquality)? *)
Equality
.
GenEquality
.
sem
t
deps
age
sem
v
rl
ty
in
let
deps
=
let
deps
=
Equality
.
GenEquality
.
repr
t
deps
age
f
(
get_cl_repr
t
f
)
fty
in
Equality
.
GenEquality
.
repr
t
deps
age
f
(
get_cl_repr
t
f
)
fty
in
let
deps
=
let
deps
=
...
...
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