# Term-Level Reasoning in Support of Bit-blasting

**Authors:** Sol Swords

arXiv: 1705.01231 · 2017-05-04

## TL;DR

This paper introduces new features in the GL theorem prover that enable term-level rewriting, improving its ability to handle complex data structures like records and reducing case explosion issues.

## Contribution

It presents novel rewriting capabilities in GL that allow for better term normalization and reasoning about complex data types, enhancing its effectiveness.

## Key findings

- Enhanced GL can reason about term-like objects with rewriting.
- Rewriter programming reduces case explosion in record theory.
- Improved symbolic reasoning for complex data structures.

## Abstract

GL is a verified tool for proving ACL2 theorems using Boolean methods such as BDD reasoning and satisfiability checking. In its typical operation, GL recursively traverses a term, computing a symbolic object representing the value of each subterm. In older versions of GL, such a symbolic object could use Boolean functions to compactly represent many possible values for integer and Boolean subfields, but otherwise needed to reflect the concrete structure of all possiblealues that its term might take. When a term has many possible values that can't share such a representation, this can easily cause blowups because GL must then case-split. To address this problem, we have added several features to GL that allow it to reason about term-like symbolic objects using various forms of rewriting. These features allow GL to be programmed with rules much like the ACL2 rewriter, so that users may choose a better normal form for terms for which the default, value-like representation would otherwise cause case explosions. In this paper we describe these new features; as a motivating example, we show how to program the rewriter to reason effectively about the theory of records.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1705.01231/full.md

## References

8 references — full list in the complete paper: https://tomesphere.com/paper/1705.01231/full.md

---
Source: https://tomesphere.com/paper/1705.01231