An open API service indexing awesome lists of open source software.

https://github.com/danvk/boggle-paper

Formal paper on 4x4 Boggle Maximization via Branch & Bound, plus code samples
https://github.com/danvk/boggle-paper

Last synced: 4 months ago
JSON representation

Formal paper on 4x4 Boggle Maximization via Branch & Bound, plus code samples

Awesome Lists containing this project

README

          

# A Computational Proof of the Highest-Scoring Boggle Board

This repo contains the source for the paper "A Computational Proof of the Highest-Scoring Boggle Board" as well as the code listings.

📝 [A Computational Proof of the Highest-Scoring Boggle Board][pdf] (PDF, 2025)

The code in this repo is slow Python that's designed to be simple and clear. For the code used in the full-scale Boggle searches, check out the [hybrid-boggle] repo, which uses Python, C++ and pybind11.

## Development

To make a PDF of the paper, install [typst] (perhaps `brew install typst`) and then run:

./make-pdf.sh

To run the tests, you'll need [uv]:

uv run pytest

[pdf]: /paper.pdf
[uv]: https://github.com/astral-sh/uv
[typst]: https://typst.app/docs
[hybrid-boggle]: https://github.com/danvk/hybrid-boggle/