dafnyformal-verification

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.


Solution

  • 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.)