From 9a7e23327cba8eebdba3567b001f90b704546174 Mon Sep 17 00:00:00 2001 From: "John C. Kushmer" <12129071+piqey@users.noreply.github.com> Date: Wed, 2 Oct 2019 10:53:52 -0400 Subject: [PATCH] Added some module/package information --- lua/includes/modules/polynomials.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/includes/modules/polynomials.lua b/lua/includes/modules/polynomials.lua index a59016b..43d967a 100644 --- a/lua/includes/modules/polynomials.lua +++ b/lua/includes/modules/polynomials.lua @@ -8,6 +8,20 @@ local math = math module("polynomials") +--[[ + Just decorating our package for any programmers + that might possibly be snooping around in here; + you know, trying to understand and harness the + potential of all the black magic that's been + packed in here (you can thank Cardano's formula + and Ferrari's method for all of that). +--]] + +__VERSION = "1.0.0" -- https://semver.org/ +__DESCRIPTION = "Methods for finding the roots of traditional- and higher-degree polynomials." +__URL = "https://github.com/piqey/lua-polynomials" +__LICENSE = "GNU General Public License, version 3" + -- Utility functions local eps = 1e-9 -- definitely small enough