From 561d0f0155f4906d90eb7e73a3ff9cb28909126f Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Fri, 5 Feb 2021 09:08:39 +0100 Subject: Update project structure --- shapes/matrix/EltsI.ml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 shapes/matrix/EltsI.ml (limited to 'shapes/matrix/EltsI.ml') diff --git a/shapes/matrix/EltsI.ml b/shapes/matrix/EltsI.ml deleted file mode 100755 index fcfdb50..0000000 --- a/shapes/matrix/EltsI.ml +++ /dev/null @@ -1,28 +0,0 @@ -module type ORDERED_AND_OPERATIONAL = -sig - - (* Exception for from_string. Is raised when from_string is passed something - * that is not an elt *) - exception NonElt - - type t - - (* The zero element *) - val zero : t - - (* The one element *) - val one: t - - (* ts must be comparable *) - val compare : t -> t -> Order.order - - (* Basic mathematical operations must be possible *) - val add: t -> t -> t - - val subtract: t -> t -> t - - val multiply: t -> t -> t - - val divide: t -> t -> t - -end -- cgit v1.2.3