package intPQueue

  1. Overview
  2. Docs
A fast and compact priority queue with low integer priorities

Install

dune-project
 Dependency

Authors

Maintainers

Sources

20250919.tar.gz
md5=d94d0fb602a2f72490b2ee8e206f0d07
sha512=f41f47f1d476f6ffc9337df0ce302439552c9316e227cd108a7720ecbbd4d2a453db0df33d9479723b1d5b05c6fc9dad4e4ea1e2a5ae9ecb02d4258bf4a8d404

doc/index.html

IntPQueue

intPQueue is an OCaml library that offers a fast and compact priority queue whose keys are nonnegative integers. The user must use only low priorities, because the space occupied by the priority queue is linear in the magnitude of the priorities.

API

  • IntPQueue This module implements a fast and compact priority queue whose keys are nonnegative integers. The user must use only low priorities, because the space occupied by the priority queue is linear in the magnitude of the priorities.

Installation and Usage

Type opam install intPQueue.

In your dune file, add (libraries intPQueue) to the description of your library or executable.