You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement request related to a problem? Please describe.
When a invalidating model has been found, we print the path it took to reach that invalidating model, but we do not have any reporting on which model property has been invalidated.
Describe the solution you'd like
When verifying this:
(moduletest G
(defcapG() true)
(defcapONE (i:integer)
(enforce (= i 1) "Needs 1")
)
(defuntest(i:integer)
@model [
(property (= i 1))
]
(require-capability (ONE i))
i
)
)
(verify'test)
I'd like to see:
OutputFailure: Invalidating model found in test.test
Program trace:
entering function test.test with argument
i = 0
returning with 0
Property (= i 1) has been invalidated
Load successful
Currently it reports this:
OutputFailure: Invalidating model found in test.test
Program trace:
entering function test.test with argument
i = 0
returning with 0
Load successful
The text was updated successfully, but these errors were encountered:
Is your enhancement request related to a problem? Please describe.
When a invalidating model has been found, we print the path it took to reach that invalidating model, but we do not have any reporting on which model property has been invalidated.
Describe the solution you'd like
When verifying this:
I'd like to see:
Currently it reports this:
The text was updated successfully, but these errors were encountered: