CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Path: gap4r8 / pkg / Convex / init.g
Views: 418346
#############################################################################
##
##  init.g              ConvexForHomalg package           Sebastian Gutsche
##
##  Copyright 2011-2012 Lehrstuhl B für Mathematik, RWTH Aachen
##
##  Gives the Methods for Polymake
##
#############################################################################

if not IsPackageMarkedForLoading( "PolymakeInterface", ">=0" ) then
    
    ReadPackage( "Convex", "gap/TypesFromPolymake.gd" );
    
#     Print( "You are running Convex without PolymakeInterface/polymake.\n",
#            "Some restrictions to the input apply:\n",
#            "- Cones are supposed to be pointed.\n",
#            "- Cones have to be created by ray generators.\n",
#            "- Fans have to be created by maximal cones.\n",
#            "- Polytopes have to be given by vertices or a reduced set of inequalities.\n"
#           );
    
fi;

ReadPackage( "Convex", "gap/ConvexObject.gd" );

ReadPackage( "Convex", "gap/Fan.gd" );

ReadPackage( "Convex", "gap/Cone.gd" );

ReadPackage( "Convex", "gap/Polytope.gd" );

ReadPackage( "Convex", "gap/ExternalSystem.gd" );

ReadPackage( "Convex", "gap/Polyhedron.gd" );