(* ========================================================================== *)
(* FLYSPECK - BOOK FORMALIZATION *)
(* *)
(* Definition: enclosed *)
(* Chapter: LEG *)
(* Author: Thomas C. Hales *)
(* Date: 2010-02-07 *)
(* ========================================================================== *)
(*
The function of 9 variables defined on page 37 of the Kepler Conjecture, DCG vol 36(1), July 2006
It is generally typeset as a calligraphic E.
It is a quadratic with nonnegative leading coefficient.
*)
module type Enclosed_def_type = sig
val enclosed : thm
val quad_cross_diag2_x : thm
end;;
flyspeck_needs "leg/muR_def.hl";;
(*
flyspeck_needs "leg/abc_of_quadratic_def.hl";;
flyspeck_needs "leg/quadratic_root_plus_def.hl";;
*)
module Enclosed : Enclosed_def_type = struct
let quadratic_root_plus = Sphere.quadratic_root_plus;;
let abc_of_quadratic = Sphere.abc_of_quadratic;;
let muR = Mur.muR;;
end;;