File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/scala/stainless/extraction/trace Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ object Trace {
263
263
264
264
def printEverything (implicit ctx : inox.Context ) = {
265
265
import ctx .{ reporter , timers }
266
- if (! clusters.isEmpty || ! errors.isEmpty || ! unknowns.isEmpty) {
266
+ if (! clusters.isEmpty || ! errors.isEmpty || ! unknowns.isEmpty || ! wrong.isEmpty ) {
267
267
reporter.info(s " Printing equivalence checking results: " )
268
268
allModels.foreach(model => {
269
269
val l = clusters(model).map(CheckFilter .fixedFullName).mkString(" , " )
@@ -394,7 +394,7 @@ object Trace {
394
394
}
395
395
396
396
private def reportWrong = {
397
- wrong = function.get:: wrong
397
+ if (function != None ) wrong = function.get:: wrong
398
398
resetTrace
399
399
nextFunction
400
400
}
You can’t perform that action at this time.
0 commit comments