Skip to content
Snippets Groups Projects
Commit ed286908 authored by Nicolas Voirol's avatar Nicolas Voirol
Browse files

Fixed small typing bug in InductiveUnrollingSuite

parent 4f986c85
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class InductiveUnrollingSuite extends SolvingTestSuite {
val append = mkFunDef(appendID)("A") { case Seq(aT) => (
Seq("l1" :: T(listID)(aT), "l2" :: T(listID)(aT)), T(listID)(aT), { case Seq(l1, l2) =>
if_ (l1.isInstOf(T(consID)(aT))) {
let("c" :: T(listID)(aT), l1.asInstOf(T(consID)(aT))) { c =>
let("c" :: T(consID)(aT), l1.asInstOf(T(consID)(aT))) { c =>
T(consID)(aT)(c.getField(head), E(appendID)(aT)(c.getField(tail), l2))
}
} else_ {
......
......@@ -259,7 +259,6 @@ trait DatatypeTemplates { self: Templates =>
}
def unroll: Clauses = if (typeInfos.isEmpty) Seq.empty else {
println("unrolling datatypes")
val blockers = typeInfos.filter(_._2._1 <= currentGeneration).toSeq.map(_._1)
val newClauses = new scala.collection.mutable.ListBuffer[Encoded]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment