1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
--*- coding: utf-8 -*-
---------------------------------------------------------------------------
--
-- PURPOSE: Computations with convex polyhedra
-- PROGRAMMER : René Birkner
-- UPDATE HISTORY : April 2008, December 2008, March 2009, Juli 2009,
-- September 2009, October 2009, January 2010
---------------------------------------------------------------------------
newPackage("Polyhedra",
Headline => "convex polyhedra",
Version => "1.10",
Date => "November 12, 2018",
AuxiliaryFiles => true,
Certification => {
"journal name" => "The Journal of Software for Algebra and Geometry: Macaulay2",
"journal URI" => "http://j-sag.org/",
"article title" => "Polyhedra: a package for computations with convex polyhedral objects",
"acceptance date" => "2009-09-07",
"published article URI" => "http://j-sag.org/Volume1/jsag-3-2009.pdf",
"published code URI" => "http://j-sag.org/Volume1/Polyhedra.m2",
"repository code URI" => "https://github.com/Macaulay2/M2/blob/master/M2/Macaulay2/packages/Polyhedra.m2",
"release at publication" => "c065ec7651789907627333018dc7d675968639e4", -- git commit number in hex
"version at publication" => "1.0.5",
"volume number" => "1",
"volume URI" => "http://j-sag.org/Volume1/"
},
Keywords => {"Convex Geometry"},
Authors => {
{
Name => "René Birkner",
HomePage => "http://page.mi.fu-berlin.de/rbirkner/index.htm",
Email => "rbirkner@mi.fu-berlin.de"
},
{
Name => "Lars Kastner", -- Maintaining author
HomePage => "http://page.mi.fu-berlin.de/lkastner/",
Email => "k.l@fu-berlin.de"
}
},
PackageExports=>{"FourTiTwo"},
PackageImports=>{"IntegralClosure", "ReesAlgebra", "LLLBases"}
)
---------------------------------------------------------------------------
-- COPYRIGHT NOTICE:
--
-- Copyright 2010 René Birkner
--
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
---------------------------------------------------------------------------
load "./Polyhedra/loadFile.m2"
|