Skip to content

Commit cb79883

Browse files
committed
Revert "Renamed config option related to symbex logger"
This reverts commit 85da8db.
1 parent 85da8db commit cb79883

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

src/main/scala/Config.scala

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,6 @@ class Config(args: Seq[String]) extends SilFrontendConfig(args, "Silicon") {
199199
valueName = "level"
200200
)
201201

202-
val writeSymbexLogFile: ScallopOption[Boolean] = opt[Boolean]("writeSymbexLogFile",
203-
descr = "Report the symbolic execution log as ExecutionTraceReport",
204-
default = Some(false),
205-
noshort = true
206-
)
207-
208202
val timeout: ScallopOption[Int] = opt[Int]("timeout",
209203
descr = ( "Time out after approx. n seconds. The timeout is for the whole verification, "
210204
+ "not per method or proof obligation (default: 0, i.e. no timeout)."),

src/main/scala/SymbExLogger.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ object SymbExLogger {
166166
*/
167167
@elidable(INFO)
168168
def writeDotFile() {
169-
if (config.writeSymbexLogFile()) {
169+
if (config.writeTraceFile()) {
170170
val dotRenderer = new DotTreeRenderer()
171171
val str = dotRenderer.render(memberList)
172172
val pw = new java.io.PrintWriter(new File(getOutputFolder() + "dot_input.dot"))
@@ -180,7 +180,7 @@ object SymbExLogger {
180180
*/
181181
@elidable(INFO)
182182
def writeJSFile() {
183-
if (config.writeSymbexLogFile()) {
183+
if (config.writeTraceFile()) {
184184
val pw = new java.io.PrintWriter(new File(getOutputFolder() + "executionTreeData.js"))
185185
try pw.write(toJSString()) finally pw.close()
186186
}

0 commit comments

Comments
 (0)