Skip to content
Snippets Groups Projects
Commit 4cdebe4d authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Fix number of '-'s

parent 6005d61f
No related branches found
No related tags found
Loading
......@@ -119,9 +119,13 @@ object SynthesisPhase extends LeonPhase[Program, Program] {
}
} else {
for ((chs, (fd, ex)) <- chooseToExprs) {
ctx.reporter.info("-"*32+" In "+fd.id.toString+", synthesis of: "+"-"*32)
val middle = " In "+fd.id.toString+", synthesis of: "
val remSize = (80-middle.length)
ctx.reporter.info("-"*math.floor(remSize/2).toInt+middle+"-"*math.ceil(remSize/2).toInt)
ctx.reporter.info(chs)
ctx.reporter.info("-"*35+" Result: "+"-"*35)
ctx.reporter.info("-"*35+" Result: "+"-"*36)
ctx.reporter.info(ScalaPrinter(ex))
ctx.reporter.info("")
}
......
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