(*--------------------------------------------------------------------------- Copyright (c) 2025 Anil Madhavapeddy. All rights reserved. SPDX-License-Identifier: ISC ---------------------------------------------------------------------------*) type t = [ `Move | `Static ] let to_int : t -> int = function `Move -> 0 | `Static -> 1