paper

Liquid Types

  • Authors:

📜 Abstract

We present Logically Qualified Data Types, abbreviated to Liquid Types, a system that combines Hindley-Milner type inference with Predicate Abstraction to automatically infer dependent types precise enough to prove a variety of safety properties. Liquid types allow programmers to reap many of the benefits of dependent types, namely static verification of critical properties and the elimination of expensive run-time checks, without the heavy price of manual annotation. We have implemented liquid type inference in DSOLVE, which takes as input an OCAML program and a set of logical qualifiers and infers dependent types for the expressions in the OCAML program. To demonstrate the utility of our approach, we describe experiments using DSOLVE to statically verify the safety of array accesses on a set of OCAML benchmarks that were previously annotated with dependent types as part of the DML project. We show that when used in conjunction with a fixed set of array bounds checking qualifiers, DSOLVE reduces the amount of manual annotation required for proving safety from 31% of program text to under 1%.

✨ Summary

The paper introduced liquid types, combining Hindley–Milner inference, predicate abstraction, and decidable SMT-based subtyping to infer refinement-dependent types with limited annotations. Its implementation, DSOLVE, demonstrated automatic array-bounds verification for OCaml programs and reduced the annotation burden substantially. The approach directly influenced subsequent liquid-type systems and tools: LiquidHaskell adopted liquid types for verifying higher-order, polymorphic Haskell programs, while later work extended the technique to data-structure verification, C, parallel effects, Java, and Rust. (ucsd-progsys.github.io)