Metadata-Version: 2.1
Name: multipolynomial-bases
Version: 1.2
Summary: Sage implementation for bases of multipolynomials
Home-page: https://github.com/VivianePons/multipolynomial-bases
Author: Viviane Pons
Author-email: viviane.pons@lri.fr
License: GPLv2
Keywords: SageMath Schubert Grothendieck polynomials
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Programming Language :: Python :: 2.7

==================================
Bases of Multivariate polynomials
==================================

This package implements different bases of the algebra of multivariate polynomials
using `SageMath <http://www.sagemath.org>`_. This work has been started in 2010 and 
was distriuted in the Sage-combinat experimental package which does not exist anymore. 
That is why we know offer it as an extra Sage package. 

Installation
-------------


Easy way
~~~~~~~~~

::

    $ sage -pip install multipolynomial_bases

From source
~~~~~~~~~~~

Download the source from the `github <https://github.com/VivianePons/multipolynomial-bases>`_
and run this command from the repo root::

    $ sage  -pip install --upgrade --no-index -v .

Equivalently, you can use the Makefile install command::

    $ make install

Usage
------

Once installed, you can use it in sage by importing the features::

    sage: from multipolynomial_bases import *
    sage: A.<x> = MultivariatePolynomialAlgebra(QQ)
    sage: A
    The Multivariate polynomial algebra on x over Rational Field

Documentation
-------------

The (partially written) documentation `is available here <https://www.lri.fr/~pons/sage_docs/multipolynomial_bases/>`_.



