Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
LARA
inox
Commits
fbae1d2b
Commit
fbae1d2b
authored
9 years ago
by
Manos Koukoutos
Browse files
Options
Downloads
Patches
Plain Diff
Fix identation
parent
f500a66b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/scala/leon/solvers/smtlib/SMTLIBZ3Target.scala
+40
-40
40 additions, 40 deletions
src/main/scala/leon/solvers/smtlib/SMTLIBZ3Target.scala
with
40 additions
and
40 deletions
src/main/scala/leon/solvers/smtlib/SMTLIBZ3Target.scala
+
40
−
40
View file @
fbae1d2b
...
...
@@ -95,60 +95,60 @@ class SMTLIBZ3Target(context: LeonContext, program: Program) extends SMTLIBSolve
}
override
def
toSMT
(
e
:
Expr
)(
implicit
bindings
:
Map
[
Identifier
,
Term
])
:
Term
=
e
match
{
case
a
@
FiniteArray
(
elems
,
oDef
,
size
)
=>
val
tpe
@
ArrayType
(
base
)
=
normalizeType
(
a
.
getType
)
declareSort
(
tpe
)
case
a
@
FiniteArray
(
elems
,
oDef
,
size
)
=>
val
tpe
@
ArrayType
(
base
)
=
normalizeType
(
a
.
getType
)
declareSort
(
tpe
)
val
default
:
Expr
=
oDef
.
getOrElse
(
simplestValue
(
base
))
var
ar
:
Term
=
ArrayConst
(
declareSort
(
RawArrayType
(
Int32Type
,
base
)),
toSMT
(
default
))
val
default
:
Expr
=
oDef
.
getOrElse
(
simplestValue
(
base
))
for
((
i
,
e
)
<-
elems
)
{
ar
=
ArraysEx
.
Store
(
ar
,
toSMT
(
IntLiteral
(
i
)),
toSMT
(
e
))
}
var
ar
:
Term
=
ArrayConst
(
declareSort
(
RawArrayType
(
Int32Type
,
base
)),
toSMT
(
default
))
FunctionApplication
(
constructors
.
toB
(
tpe
),
List
(
toSMT
(
size
),
ar
))
for
((
i
,
e
)
<-
elems
)
{
ar
=
ArraysEx
.
Store
(
ar
,
toSMT
(
IntLiteral
(
i
)),
toSMT
(
e
))
}
/**
* ===== Set operations =====
*/
case
fs
@
FiniteSet
(
elems
)
=>
val
ss
=
declareSort
(
fs
.
getType
)
var
res
:
Term
=
FunctionApplication
(
QualifiedIdentifier
(
SMTIdentifier
(
SSymbol
(
"const"
)),
Some
(
ss
)),
Seq
(
toSMT
(
BooleanLiteral
(
false
)))
)
FunctionApplication
(
constructors
.
toB
(
tpe
),
List
(
toSMT
(
size
),
ar
))
for
(
e
<-
elems
)
{
res
=
ArraysEx
.
Store
(
res
,
toSMT
(
e
),
toSMT
(
BooleanLiteral
(
true
)))
}
/**
* ===== Set operations =====
*/
case
fs
@
FiniteSet
(
elems
)
=>
val
ss
=
declareSort
(
fs
.
getType
)
var
res
:
Term
=
FunctionApplication
(
QualifiedIdentifier
(
SMTIdentifier
(
SSymbol
(
"const"
)),
Some
(
ss
)),
Seq
(
toSMT
(
BooleanLiteral
(
false
)))
)
res
for
(
e
<-
elems
)
{
res
=
ArraysEx
.
Store
(
res
,
toSMT
(
e
),
toSMT
(
BooleanLiteral
(
true
)))
}
case
SubsetOf
(
ss
,
s
)
=>
// a isSubset b ==> (a zip b).map(implies) == (* => true)
val
allTrue
=
ArrayConst
(
declareSort
(
s
.
getType
),
True
())
res
SMTEquals
(
ArrayMap
(
SSymbol
(
"implies"
),
toSMT
(
ss
),
toSMT
(
s
)),
allTrue
)
case
SubsetOf
(
ss
,
s
)
=>
// a isSubset b ==> (a zip b).map(implies) == (* => true)
val
allTrue
=
ArrayConst
(
declareSort
(
s
.
getType
),
True
())
case
ElementOfSet
(
e
,
s
)
=>
ArraysEx
.
Select
(
toSMT
(
s
),
toSMT
(
e
))
SMTEquals
(
ArrayMap
(
SSymbol
(
"implies"
),
toSMT
(
ss
),
toSMT
(
s
)),
allTrue
)
case
SetDifference
(
a
,
b
)
=>
// a -- b
// becomes:
// a && not(b)
case
ElementOfSet
(
e
,
s
)
=>
ArraysEx
.
Select
(
toSMT
(
s
),
toSMT
(
e
))
ArrayMap
(
SSymbol
(
"and"
),
toSMT
(
a
),
ArrayMap
(
SSymbol
(
"not"
),
toSMT
(
b
)))
case
SetDifference
(
a
,
b
)
=>
// a -- b
// becomes:
// a && not(b)
case
SetUnion
(
l
,
r
)
=>
ArrayMap
(
SSymbol
(
"or"
),
toSMT
(
l
),
toSMT
(
r
))
ArrayMap
(
SSymbol
(
"and"
),
toSMT
(
a
),
ArrayMap
(
SSymbol
(
"not"
),
toSMT
(
b
)))
case
Set
Intersect
ion
(
l
,
r
)
=>
ArrayMap
(
SSymbol
(
"
and
"
),
toSMT
(
l
),
toSMT
(
r
))
case
Set
Un
ion
(
l
,
r
)
=>
ArrayMap
(
SSymbol
(
"
or
"
),
toSMT
(
l
),
toSMT
(
r
))
case
_
=>
super
.
toSMT
(
e
)
case
SetIntersection
(
l
,
r
)
=>
ArrayMap
(
SSymbol
(
"and"
),
toSMT
(
l
),
toSMT
(
r
))
case
_
=>
super
.
toSMT
(
e
)
}
def
extractRawArray
(
s
:
DefineFun
)(
implicit
lets
:
Map
[
SSymbol
,
Term
],
letDefs
:
Map
[
SSymbol
,
DefineFun
])
:
RawArrayValue
=
s
match
{
...
...
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