Carl
Carl

Reputation: 383

Dafny: How to call 'verifcationLogger:csv'?

I'm trying to debug variable verification time in Dafny. I try to run verificationLogger, but get no output.

but I see no CSV output.

Upvotes: 0

Views: 48

Answers (2)

Carl
Carl

Reputation: 383

I discovered that this works to give details of the new style: dafny verify --help

Then I can do:

dafny verify seq_of_sets_example7.dfy --verification-time-limit:45 --cores:20 --log-format text --boogie -randomSeedIterations:10 --boogie -vcsSplitOnEveryAssert | tee TestResults\del3.txt

Someone else might want a different # of cores, a different format (e.g. csv and no "tee"), not to use Split, etc.

(But now that I have *.txt and *.csv and *.trx formats, I don't know what to do with them. I'll start a new question.)

Upvotes: 0

Divyanshu Ranjan
Divyanshu Ranjan

Reputation: 1625

I am not familiar with new style of dafny command line options but this seems to work for me (I am using old style of command line option)

dafny  /compile:0 /verificationLogger:csv repo1.dfy 

I think problem is you are passing verificationLogger after boogie which means it is sent to boogie but verificationLogger is dafny option

Upvotes: 1

Related Questions