cs-dm icon indicating copy to clipboard operation
cs-dm copied to clipboard

Incomplete Function in binRelOnS.dfy

Open nealpatel50 opened this issue 7 years ago • 0 comments

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.

nealpatel50 avatar Mar 19 '18 02:03 nealpatel50