Inferring Non-Failure Conditions for Declarative Programs
Michael Hanus
TL;DR
The paper tackles internal programming failures in declarative languages by automatically inferring non-failure conditions for partially defined operations. It introduces call types $CT(f)$ and in/out types $IO(f)$ within an abstract domain framework (e.g., depth-$k$ abstractions on $A$ with $oldsymbol{ abla}$), and then performs a fixpoint-based checking and refinement process to ensure that calls satisfy their inferred conditions. The method, implemented for Curry and FlatCurry, can handle literals, external operations, higher-order constructs, encapsulated failures, and configurable treatment of errors, demonstrating practical scalability across standard libraries with only modest iteration counts. The results show that most non-trivial non-fail conditions arise from a small subset of operations, enabling automatic verification without requiring extensive annotations, while still allowing programmer intervention to adapt code when necessary. This work advances automatic safety checks for declarative programs, with potential extensions to richer domains and integration with SMT-based reasoning for more expressive conditions.
Abstract
Unintended failures during a computation are painful but frequent during software development. Failures due to external reasons (e.g., missing files, no permissions) can be caught by exception handlers. Programming failures, such as calling a partially defined operation with unintended arguments, are often not caught due to the assumption that the software is correct. This paper presents an approach to verify such assumptions. For this purpose, non-failure conditions for operations are inferred and then checked in all uses of partially defined operations. In the positive case, the absence of such failures is ensured. In the negative case, the programmer could adapt the program to handle possibly failing situations and check the program again. Our method is fully automatic and can be applied to larger declarative programs. The results of an implementation for functional logic Curry programs are presented.
