Changes between Version 5 and Version 6 of Tour


Ignore:
Timestamp:
09/07/18 10:08:37 (8 years ago)
Author:
wuwenhao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tour

    v5 v6  
    1212
    1313{{{
     14/* Dining philosophers, standard version, which deadlocks.
     15 *
     16 *              civl verify -inputB=4 diningBad.cvl
     17 * or (if you want to find the minimal counterexample)
     18 *              civl verify -inputB=4 diningBad.cvl -min
     19 */
    1420#include <civlc.cvh>
    1521
     
    3339
    3440void main() {
     41  $elaborate(n);
    3542  $for(int i: 0 .. n-1)
    3643    forks[i] = $true;