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
429e3755
Commit
429e3755
authored
10 years ago
by
Etienne Kneuss
Browse files
Options
Downloads
Patches
Plain Diff
Remove rules that crash, add interesting benchmark
parent
028f3691
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/scala/leon/repair/Repairman.scala
+1
-1
1 addition, 1 deletion
src/main/scala/leon/repair/Repairman.scala
testcases/synthesis/repair/HeapSort/HeapSort6.scala
+113
-0
113 additions, 0 deletions
testcases/synthesis/repair/HeapSort/HeapSort6.scala
with
114 additions
and
1 deletion
src/main/scala/leon/repair/Repairman.scala
+
1
−
1
View file @
429e3755
...
...
@@ -114,7 +114,7 @@ class Repairman(ctx: LeonContext, initProgram: Program, fd: FunDef, verifTimeout
//GuidedCloser,
CEGLESS
//TEGLESS
))
diff
Seq
(
ADTInduction
,
TEGIS
)
))
diff
Seq
(
ADTInduction
,
TEGIS
,
IntegerInequalities
,
IntegerEquation
)
);
// extract chooses from nfd
...
...
This diff is collapsed.
Click to expand it.
testcases/synthesis/repair/HeapSort/HeapSort6.scala
0 → 100644
+
113
−
0
View file @
429e3755
/* Copyright 2009-2013 EPFL, Lausanne
*
* Author: Ravi
* Date: 20.11.2013
**/
import
leon.collection._
import
leon._
object
HeapSort
{
sealed
abstract
class
Heap
{
val
rank
:
Int
=
this
match
{
case
Leaf
()
=>
0
case
Node
(
_
,
l
,
r
)
=>
1
+
max
(
l
.
rank
,
r
.
rank
)
}
def
content
:
Set
[
Int
]
=
this
match
{
case
Leaf
()
=>
Set
[
Int
]()
case
Node
(
v
,
l
,
r
)
=>
l
.
content
++
Set
(
v
)
++
r
.
content
}
}
case
class
Leaf
()
extends
Heap
case
class
Node
(
value
:
Int
,
left
:
Heap
,
right
:
Heap
)
extends
Heap
def
max
(
i1
:
Int
,
i2
:
Int
)
=
if
(
i1
>=
i2
)
i1
else
i2
def
hasHeapProperty
(
h
:
Heap
)
:
Boolean
=
h
match
{
case
Leaf
()
=>
true
case
Node
(
v
,
l
,
r
)
=>
(
l
match
{
case
Leaf
()
=>
true
case
n
@Node
(
v2
,
_
,
_
)
=>
v
>=
v2
&&
hasHeapProperty
(
n
)
})
&&
(
r
match
{
case
Leaf
()
=>
true
case
n
@Node
(
v2
,
_
,
_
)
=>
v
>=
v2
&&
hasHeapProperty
(
n
)
})
}
def
hasLeftistProperty
(
h
:
Heap
)
:
Boolean
=
h
match
{
case
Leaf
()
=>
true
case
Node
(
_
,
l
,
r
)
=>
hasLeftistProperty
(
l
)
&&
hasLeftistProperty
(
r
)
&&
l
.
rank
>=
r
.
rank
}
def
heapSize
(
t
:
Heap
)
:
Int
=
{
t
match
{
case
Leaf
()
=>
0
case
Node
(
v
,
l
,
r
)
=>
heapSize
(
l
)
+
1
+
heapSize
(
r
)
}}
ensuring
(
_
>=
0
)
private
def
merge
(
h1
:
Heap
,
h2
:
Heap
)
:
Heap
=
{
require
(
hasLeftistProperty
(
h1
)
&&
hasLeftistProperty
(
h2
)
&&
hasHeapProperty
(
h1
)
&&
hasHeapProperty
(
h2
)
)
(
h1
,
h2
)
match
{
case
(
Leaf
(),
_
)
=>
h2
case
(
_
,
Leaf
())
=>
h1
case
(
Node
(
v1
,
l1
,
r1
),
Node
(
v2
,
l2
,
r2
))
=>
if
(
v1
>=
v2
)
makeN
(
v1
,
l1
,
merge
(
r1
,
h2
))
else
makeN
(
v2
,
l1
,
merge
(
h1
,
r2
))
// Fixme: l1 instead of l2
}
}
ensuring
{
res
=>
hasLeftistProperty
(
res
)
&&
hasHeapProperty
(
res
)
&&
heapSize
(
h1
)
+
heapSize
(
h2
)
==
heapSize
(
res
)
&&
h1
.
content
++
h2
.
content
==
res
.
content
}
private
def
makeN
(
value
:
Int
,
left
:
Heap
,
right
:
Heap
)
:
Heap
=
{
require
(
hasLeftistProperty
(
left
)
&&
hasLeftistProperty
(
right
)
)
if
(
left
.
rank
>=
right
.
rank
)
Node
(
value
,
left
,
right
)
else
Node
(
value
,
right
,
left
)
}
ensuring
{
res
=>
hasLeftistProperty
(
res
)
}
def
insert
(
element
:
Int
,
heap
:
Heap
)
:
Heap
=
{
require
(
hasLeftistProperty
(
heap
)
&&
hasHeapProperty
(
heap
))
merge
(
Node
(
element
,
Leaf
(),
Leaf
()),
heap
)
}
ensuring
{
res
=>
hasLeftistProperty
(
res
)
&&
hasHeapProperty
(
res
)
&&
heapSize
(
res
)
==
heapSize
(
heap
)
+
1
&&
res
.
content
==
heap
.
content
++
Set
(
element
)
}
def
findMax
(
h
:
Heap
)
:
Option
[
Int
]
=
{
h
match
{
case
Node
(
m
,
_
,
_
)
=>
Some
(
m
)
case
Leaf
()
=>
None
()
}
}
def
removeMax
(
h
:
Heap
)
:
Heap
=
{
require
(
hasLeftistProperty
(
h
)
&&
hasHeapProperty
(
h
))
h
match
{
case
Node
(
_
,
l
,
r
)
=>
merge
(
l
,
r
)
case
l
=>
l
}
}
ensuring
{
res
=>
hasLeftistProperty
(
res
)
&&
hasHeapProperty
(
res
)
}
}
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