Precise inference of expressive units of measurement types

“Precise inference of expressive units of measurement types” by Tongtong Xiang, Jeff Y. Luo, and Werner Dietl. In OOPSLA 2020, Object-Oriented Programming Systems, Languages, and Applications, (Chicago, IL, USA), Nov. 2020.

Abstract

Ensuring computations are unit-wise consistent is an important task in software development. Numeric computations are usually performed with primitive types instead of abstract data types, which results in very weak static guarantees about correct usage and conversion of units. This paper presents PUnits, a pluggable type system for expressive units of measurement types and a precise, whole-program inference approach for these types. PUnits can be used in three modes: (1) modularly check the correctness of a program, (2) ensure a possible unit typing exists, and (3) annotate a program with units. Annotation mode allows human inspection and is essential since having a valid typing does not guarantee that the inferred specification expresses design intent. PUnits is the first units type system with this capability. Compared to prior work, PUnits strikes a novel balance between expressiveness, inference complexity, and annotation effort. We implement PUnits for Java and evaluate it by specifying the correct usage of frequently used JDK methods. We analyze 234k lines of code from eight open-source scientific computing projects with PUnits. We compare PUnits against an encapsulation-based units API (the javax.measure package) and discovered unit errors that the API failed to find. PUnits infers 90 scientific units for five of the projects and generates well-specified applications. The experiments show that PUnits is an effective, sound, and scalable alternative to using encapsulation-based units APIs, enabling Java developers to reap the performance benefits of using primitive types instead of abstract data types for unit-wise consistent scientific computations.

BibTeX entry:

@inproceedings{XiangLD2020,
   author = {Tongtong Xiang and Jeff Y. Luo and Werner Dietl},
   title = {Precise inference of expressive units of measurement types},
   booktitle = {OOPSLA 2020, Object-Oriented Programming Systems,
	Languages, and Applications},
   address = {Chicago, IL, USA},
   month = nov,
   year = {2020}
}

Back to Publications that use Daikon as a test subject.