(* ========================================================================== *)
(* FLYSPECK - BOOK FORMALIZATION *)
(* *)
(* Definition: abc_of_quadratic *)
(* Chapter: LEG *)
(* Author: Thomas C. Hales *)
(* Date: 2010-02-07 *)
(* ========================================================================== *)
(*
f = \x. a x^2 + b x + c, extract a b c
*)
(* moved to sphere.hl. This file is deprecated *)
module type Abc_of_quadratic_def_type = sig
val abc_of_quadratic : thm
end;;
module Abc_of_quadratic : Abc_of_quadratic_def_type = struct
end;;