kevinsullivan / cs-dm

CS2012 UVa CS Discrete Math Spring 2018
15 stars 20 forks source link

Incomplete Function in binRelOnS.dfy #18

Open nealpatel50 opened 6 years ago

nealpatel50 commented 6 years ago

The 'apply' function under the BASIC PROPERTIES OF RELATIONS MORE GENERALLY is incomplete:

    function apply(x: T): set<T>
        reads this;
        requires Valid();
        ensures Valid();
    {
        forall x :: x in 
    }

As a result, the file doesn't compile properly.