Closed jwaldmann closed 11 years ago
the concrete program is terminating (for all arguments) but the abstract program (currently) is not.
with incremental feasibility checking, abstract evaluation should detect that "case u of True ..." cannot happen in the inner call.
constraint k u = case u of False -> k True -> constraint (not k) False
https://github.com/apunktbau/co4/blob/f5b8b0d9e3d3b018d7f437be5514ac5fc7b1aeaf/CO4/Test/Termination1.hs#L25
seems to be fixed
the concrete program is terminating (for all arguments) but the abstract program (currently) is not.
with incremental feasibility checking, abstract evaluation should detect that "case u of True ..." cannot happen in the inner call.
https://github.com/apunktbau/co4/blob/f5b8b0d9e3d3b018d7f437be5514ac5fc7b1aeaf/CO4/Test/Termination1.hs#L25