Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Commit

Permalink
Added some module/package information
Browse files Browse the repository at this point in the history
  • Loading branch information
piqey committed Oct 2, 2019
1 parent 9538d5c commit 9a7e233
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lua/includes/modules/polynomials.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a7e233

Please sign in to comment.