Skip to content

Commit

Permalink
fixed a small bug when translation substitutions to TPTP format
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Steen committed Jul 24, 2017
1 parent 419fa15 commit 89206d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/leo/modules/output/ToTPTP.scala
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@ object ToTPTP {
case e: Exception => leo.Out.warn(s"Could not translate substitution entry to TPTP format, Exception raised:\n${e.toString}")
sb.append(s"bind($i, $$thf(${erg.pretty}))")
}
if (i < max) sb.append(",")
sb.append(",")
}
i = i + 1
}
sb.toString()
sb.init.toString()
}
}
}
Expand Down

0 comments on commit 89206d6

Please sign in to comment.