17 lines
802 B
OCaml
17 lines
802 B
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
type fitness = MBytes.t list
|
|
|
|
val compare: fitness -> fitness -> int
|
|
val pp: Format.formatter -> fitness -> unit
|
|
val to_string: fitness -> string
|
|
|
|
val encoding: fitness Data_encoding.t
|