===============================
Sébastien Labbé's Research Code
===============================
README
======
This is an optional package for SageMath containing code I wrote for research.
It contains modules on the following topics.
**Discrete dynamical systems**
diophantine approximation, Markov transformations, Wang tilings, Lyapunov
exponents, matrix cocycles, multidimensional continued fraction algorithms,
polyhedron exchange transformations (PETs), GIFS,
**Combinatorics**
2d substitutions, bispecial factors, bond percolation, Dyck word in 3D,
words, Joyal bijection, languages, Oldenburger sequence, ostrowski
numeration, partial injections, d-dimensional Sturmian configurations,
hypercubic billiard words
**Digital geometry**
Christoffel graph, discrete subset, discrete plane, double square tiles,
polyhedron partitions,
**Vizualization**
tikzpicture
**Miscellaneous**
analyze Sage build time, fruit Python classes example, ranking scale
Links:
- documentation: http://www.slabbe.org/docs/
- PyPI: http://pypi.python.org/pypi/slabbe
- gitlab: http://gitlab.com/seblabbe/slabbe
- www: http://www.slabbe.org/Sage/
Prerequisites - System packages (easy to install)
-------------------------------------------------
Some functionalities of ``slabbe`` package depend on the installation of
packages on the system such as libpari-dev, pdflatex, lualatex (lualatex
compiles large tikzpicture exceeding the memory limits of pdflatex), pdf2svg as
well as softwares including ImageMagick__ (to convert pdf to png so that
tikzpicture appear directly in the Jupyter notebook), Graphviz__ (to draw
graphs).
__ https://imagemagick.org/
__ https://graphviz.org/
On Debian or Ubuntu, one may do::
sudo apt update
sudo apt install libpari-dev -y
sudo apt install texlive texlive-latex-extra texlive-luatex texlive-fonts-extra -qy
sudo apt install graphviz imagemagick pdf2svg -y
The installation of imagemagick done above provides the command ``convert`` but
it does not *allow* to convert pdf to png unless you edit the Imagemagick's
``policy.xml`` file which can be done as follows (thanks to `Naveed's comment
on stackoverflow`__)::
sudo sed -i '/PDF/s/none/read|write/' /etc/ImageMagick-6/policy.xml
__ https://stackoverflow.com/questions/42928765/
On **OSX**, one should first `install Homebrew`__. Then one can install the
above packages similarly as above using ``brew`` instead of ``apt``::
sudo brew install graphviz imagemagick pdf2svg
__ https://brew.sh/
Prerequisites - SageMath optional packages
------------------------------------------
Installing slabbe requires a working SageMath installation (with Cython and
gcc). Depending on the usage, it might be necessary to install the optional
sagemath packages dot2tex__ (translate dot file to tikz to draw nice graphs),
glucose__ (SAT solver) and latte_int__::
sage -i dot2tex glucose latte_int
Note that graphviz must be installed *before* dot2tex.
__ https://dot2tex.readthedocs.io/en/latest/
__ https://www.labri.fr/perso/lsimon/glucose/
__ https://www.math.ucdavis.edu/~latte/
Installation
------------
The module is distributed on PyPI and is easily installed through the Python
package manager pip::
sage -pip install slabbe
To install the module in your user space (which does not require administrator
rights)::
sage -pip install slabbe --user
To install the most recent development version::
sage -pip install --upgrade git+https://gitlab.com/seblabbe/slabbe
Usage::
sage: from slabbe import *
Other Python packages you may want to install
---------------------------------------------
Some functionalities of ``slabbe`` package depend on the installation of few
Python libraries such as pytimeparse__ (time expression parser) and roman__
(integer to Roman numerals converter)::
sage -pip install pytimeparse roman
__ https://pypi.org/project/pytimeparse/
__ https://pypi.org/project/roman/
Other System packages you may want to install
---------------------------------------------
Some functionalities of ``slabbe`` package depend on the installation of a
linear program solver such as Gurobi__. See the thematic tutorial to setup the
`installation of Gurobi in SageMath``__.
__ http://www.gurobi.com/
__ http://doc.sagemath.org/html/en/thematic_tutorials/linear_programming.html#using-cplex-or-gurobi-through-sage
It builds on SageMath
---------------------
It depends heavily on the SageMath library as it uses the following modules:
combinat, functions, geometry, graphs, matrix, misc, modules, numerical,
parallel, plot, probability, rings, sat, sets, structure, symbolic.
SageMath__ is free open source math software that supports research and
teaching in algebra, geometry, number theory, cryptography, and related areas.
__ http://www.sagemath.org/
Follows the Best practices for scientific computing
---------------------------------------------------
It follows as much as possible the `SageMath general conventions`__ and the
`Best Practices for Scientific Computing`__. Each module is fully documented
and doctested. Before each new release, we make sure that all examples are
working. As the `ReScience Journal`__ says: "*Reproducible science is good.
Replicated Science is better*".
__ http://doc.sagemath.org/html/en/developer/coding_basics.html
__ https://doi.org/10.1371/journal.pbio.1001745
__ http://rescience.github.io/
Future inclusion into Sage
--------------------------
Some modules may have a wider interest to the SageMath community
(``tikz_picture.py`` for example) and could be included in SageMath at some
point. Please contact the author if you want to act as a reviewer for some
module(s) and I will create a ticket on trac__ for its inclusion into SageMath.
__ https://trac.sagemath.org/
Release history
---------------
*Version 0.7.7 (Nov 14, 2024)*
New (small) module on q-Markoff numbers.
New (small) module on Wang cubes.
Added demo files containing the code used in `arXiv:2312.03652`__ and
`arXiv:2403.03197`__.
New module to generate random balanced teams used for managing a weekly
local Ultimate frisbee league.
Various small improvements in many modules.
Updated cython code to work with latest Cython versions.
Updated doctests to adapt to changes made in SageMath.
All tests passed on SageMath version 10.4.beta9 (Release Date: 2024-06-09) using Python 3.10.12.
All tests passed on SageMath version 10.5.beta6 (Release Date: 2024-09-29) using Python 3.12.5.
__ https://arxiv.org/abs/2403.03197
__ https://arxiv.org/abs/2312.03652
*Version 0.7.6 (Dec 6, 2023)*
New module to deal with piecewise affine transformations, the module
on polyhedron exchange transformations is now based on it.
Few improvements and bug fixes on drawing substitution and Wang tilings.
Many doctests are currently failing with SageMath version 10.2 because Cython
modules in the slabbe packages are broken by a recent update of Cython in
SageMath. These are not fixed in this release.
*Version 0.7.5 (Sep 15, 2023)*
Desactivate Cython modules
*Version 0.7.4 (Sep 13, 2023)*
No more c files in the distribution tar.gz file.
Fixing the latex string of 2-dimensional substitutions in the Jupyter notebook.
In preparation for a conference at CIRM, Marseille, Sep 11-15 2023.
All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.
All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).
*Version 0.7.3 (Sep 7, 2023)*
Improving the way Polyhedron exchange transformations are plotted
in preparation for a conference at CIRM, Marseille, Sep 11-15 2023.
All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.
All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).
*Version 0.7.2 (Sep 6, 2023)*
Fixing few doctests and failures with module Kolakoski related to Cython and
Python 3.11.
All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.
All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).
*Version 0.7.1 (June 30, 2023)*
New module on cut and project scheme (still preliminary).
New module to draw tilings with the Smith's aperiodic monotile (see this `blog post`__).
Few other improvements.
All tests passed on version 10.0 of SageMath.
__ http://www.slabbe.org/blogue/2023/05/decoupe-laser-du-chapeau-tuile-aperiodique-decouverte-recemment/
*Version 0.7 (December 8, 2022)*
New module on d-dimensional Sturmian configurations, to draw figures from `arXiv:2204.06413`__.
New module on Hypercubic billiard words (written with Mélodie Andrieu).
The module ``TikzPicture`` got merged in SageMath 9.6 into
``sage.misc.latex_standalone`` through ticket `#20343`__ during which many
improvements were made. The line ``from slabbe import TikzPicture`` now uses
the one in SageMath by default. All tests passed on version 9.7 of SageMath.
Up to recently, all tests passed on versions 9.0, 9.1, 9.2, 9.3 and 9.4 of SageMath;
can't test those earlier versions of SageMath anymore because gitlab continuous
integration tests is not free anymore.
__ https://arxiv.org/abs/2204.06413
__ https://trac.sagemath.org/ticket/20343
*Version 0.6.3 (November 1, 2021)*
New module on Ostrowski numeration system (basic stuff).
New module on EkEkStar (written with Milton Minvervino).
New modules containing the updated code published in `arXiv:1808.07768`__,
`arXiv:1903.06137`__ and `arXiv:1906.01104`__.
All tests passed on versions 9.0, 9.1, 9.2, 9.3 and 9.4 of SageMath.
__ https://arxiv.org/abs/1808.07768
__ https://arxiv.org/abs/1903.06137
__ https://arxiv.org/abs/1906.01104
*Version 0.6.2 (December 15, 2020)*
New module on Graph-directed iterated function systems (GIFS).
Fixed ``TransitiveIdeal`` import error.
Now using gitlab continuous integration automatic tests:
installation + ``import slabbe`` tested to work on versions 8.7, 8.8, 9.0, 9.1, 9.2 of SageMath.
All tests passed on versions 9.0, 9.1, 9.2 of SageMath.
*Version 0.6.1 (May 8, 2020)*
New modules to deal with the coding of `Z^d`-action by PETs, `d`-dimensional
sturmian configurations. Improved the computation of induced polyhedron partition
and induced polyhedron exchange transformation. New modules containing the
code for the articles `arxiv:1903.06137`__ and `arXiv:1906.01104`__
__ https://arxiv.org/abs/1903.06137
__ https://arxiv.org/abs/1906.01104
*Version 0.6 (November 22, 2019)*
Make the package work with Python 3. Most of the tests pass with Python 3 now.
*Version 0.5.1 (May 30, 2019)*
Few fixes for the publication of "Induction of `Z^2`-actions on partitions of
the 2-torus". Improved html documentation.
*Version 0.5 (April 10, 2019)*
Few fixes for the version 2 of "Substitutive structure of Jeandel-Rao
aperiodic tilings". New additions includes solving Wang tilings problem
using SAT solvers and a class for Polyhedron exchange transformations.
*Version 0.4.4 (September 28, 2018)*
Make ``import slabbe`` work in Sage with Python 3.
*Version 0.4.3 (August 22, 2018)*
Few fixes for the publication of "Substitutive structure of Jeandel-Rao
aperiodic tilings".
*Version 0.4.2 (July 20, 2018)*
Few fixes for the version 2 of "A self-similar aperiodic set of 19 Wang
tiles".
*Version 0.4.1 (February 9, 2018)*
Few fixes for the publication of "A self-similar aperiodic set of 19 Wang
tiles". New module to solve the Magic hexagon problem.
*Version 0.4 (January 20, 2018)*
Version ``0.4`` includes new modules for Wang tilings, 2d substitutions,
polyhedron partitions, partial injections, ostrowski numeration and many
improvements to other modules.
*Version 0.3b2 (December 11, 2016)*
Version ``0.3b2`` includes a new module for diophantine approximations,
random point generation inside polytopes, analyzing sage building time, and
many improvements to previous modules.
*Version 0.3b1 (June 12, 2016)*
Version ``0.3b1`` is now a Python package available in the Python Package
Index (PyPI). It was migrated from the previous sage optional spkg old-style
format. It also adds code to deal with bispecial factors, some new methods
of graphs, substitutions and matrices.
*Version 0.2 (November 25, 2015)*
slabbe-0.2.spkg__ (documentation__) provides modules on multidimensional
continued fraction algorithms, matrix cocycles, languages and tikzpictures.
__ http://www.slabbe.org/Sage/slabbe-0.2.spkg
__ http://www.slabbe.org/Sage/slabbe-0.2.pdf
*Version 0.1.1 (June 3, 2015)*
slabbe-0.1.1.spkg__ fixes a bug with ``gcd`` import error.
__ http://www.slabbe.org/Sage/slabbe-0.1.1.spkg
*Version 0.1 (August 27, 2014)*
slabbe-0.1.spkg__ (documentation__) contains modules on digital geometry,
combinatorics on words and more.
__ http://www.slabbe.org/Sage/slabbe-0.1.spkg
__ http://www.slabbe.org/Sage/slabbe-0.1.pdf
Raw data
{
"_id": null,
"home_page": "http://gitlab.com/seblabbe/slabbe",
"name": "slabbe",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "sagemath combinatorics discrete geometry symbolic dynamics",
"author": "Sebastien Labbe",
"author_email": "slabbe@ulg.ac.be",
"download_url": "https://files.pythonhosted.org/packages/17/d3/3fd874926643a7cc59a0e45fa1ee2abf61e64da5a85c16a0f074b9fc77da/slabbe-0.7.7.tar.gz",
"platform": null,
"description": "===============================\nS\u00e9bastien Labb\u00e9's Research Code\n===============================\n\nREADME\n======\n\nThis is an optional package for SageMath containing code I wrote for research.\nIt contains modules on the following topics.\n\n**Discrete dynamical systems**\n diophantine approximation, Markov transformations, Wang tilings, Lyapunov\n exponents, matrix cocycles, multidimensional continued fraction algorithms,\n polyhedron exchange transformations (PETs), GIFS,\n\n**Combinatorics**\n 2d substitutions, bispecial factors, bond percolation, Dyck word in 3D,\n words, Joyal bijection, languages, Oldenburger sequence, ostrowski\n numeration, partial injections, d-dimensional Sturmian configurations,\n hypercubic billiard words\n\n**Digital geometry**\n Christoffel graph, discrete subset, discrete plane, double square tiles,\n polyhedron partitions,\n\n**Vizualization**\n tikzpicture\n\n**Miscellaneous**\n analyze Sage build time, fruit Python classes example, ranking scale\n\nLinks: \n\n - documentation: http://www.slabbe.org/docs/\n - PyPI: http://pypi.python.org/pypi/slabbe\n - gitlab: http://gitlab.com/seblabbe/slabbe\n - www: http://www.slabbe.org/Sage/\n\nPrerequisites - System packages (easy to install)\n-------------------------------------------------\n\nSome functionalities of ``slabbe`` package depend on the installation of\npackages on the system such as libpari-dev, pdflatex, lualatex (lualatex\ncompiles large tikzpicture exceeding the memory limits of pdflatex), pdf2svg as\nwell as softwares including ImageMagick__ (to convert pdf to png so that\ntikzpicture appear directly in the Jupyter notebook), Graphviz__ (to draw\ngraphs). \n\n__ https://imagemagick.org/\n__ https://graphviz.org/\n\nOn Debian or Ubuntu, one may do::\n\n sudo apt update\n sudo apt install libpari-dev -y\n sudo apt install texlive texlive-latex-extra texlive-luatex texlive-fonts-extra -qy\n sudo apt install graphviz imagemagick pdf2svg -y\n\nThe installation of imagemagick done above provides the command ``convert`` but\nit does not *allow* to convert pdf to png unless you edit the Imagemagick's\n``policy.xml`` file which can be done as follows (thanks to `Naveed's comment\non stackoverflow`__)::\n\n sudo sed -i '/PDF/s/none/read|write/' /etc/ImageMagick-6/policy.xml\n\n__ https://stackoverflow.com/questions/42928765/\n\nOn **OSX**, one should first `install Homebrew`__. Then one can install the\nabove packages similarly as above using ``brew`` instead of ``apt``::\n\n sudo brew install graphviz imagemagick pdf2svg\n\n__ https://brew.sh/\n\nPrerequisites - SageMath optional packages\n------------------------------------------\n\nInstalling slabbe requires a working SageMath installation (with Cython and\ngcc). Depending on the usage, it might be necessary to install the optional\nsagemath packages dot2tex__ (translate dot file to tikz to draw nice graphs),\nglucose__ (SAT solver) and latte_int__::\n\n sage -i dot2tex glucose latte_int\n\nNote that graphviz must be installed *before* dot2tex.\n\n__ https://dot2tex.readthedocs.io/en/latest/\n__ https://www.labri.fr/perso/lsimon/glucose/\n__ https://www.math.ucdavis.edu/~latte/\n\nInstallation\n------------\n\nThe module is distributed on PyPI and is easily installed through the Python\npackage manager pip::\n\n sage -pip install slabbe\n\nTo install the module in your user space (which does not require administrator\nrights)::\n\n sage -pip install slabbe --user\n\nTo install the most recent development version::\n\n sage -pip install --upgrade git+https://gitlab.com/seblabbe/slabbe\n\nUsage::\n\n sage: from slabbe import *\n\nOther Python packages you may want to install\n---------------------------------------------\n\nSome functionalities of ``slabbe`` package depend on the installation of few\nPython libraries such as pytimeparse__ (time expression parser) and roman__\n(integer to Roman numerals converter)::\n\n sage -pip install pytimeparse roman\n\n__ https://pypi.org/project/pytimeparse/\n__ https://pypi.org/project/roman/\n\nOther System packages you may want to install\n---------------------------------------------\n\nSome functionalities of ``slabbe`` package depend on the installation of a\nlinear program solver such as Gurobi__. See the thematic tutorial to setup the\n`installation of Gurobi in SageMath``__.\n\n__ http://www.gurobi.com/\n__ http://doc.sagemath.org/html/en/thematic_tutorials/linear_programming.html#using-cplex-or-gurobi-through-sage\n\nIt builds on SageMath\n---------------------\n\nIt depends heavily on the SageMath library as it uses the following modules:\ncombinat, functions, geometry, graphs, matrix, misc, modules, numerical,\nparallel, plot, probability, rings, sat, sets, structure, symbolic.\n\nSageMath__ is free open source math software that supports research and\nteaching in algebra, geometry, number theory, cryptography, and related areas. \n\n__ http://www.sagemath.org/\n\nFollows the Best practices for scientific computing\n---------------------------------------------------\n\nIt follows as much as possible the `SageMath general conventions`__ and the\n`Best Practices for Scientific Computing`__. Each module is fully documented\nand doctested. Before each new release, we make sure that all examples are\nworking. As the `ReScience Journal`__ says: \"*Reproducible science is good.\nReplicated Science is better*\".\n\n__ http://doc.sagemath.org/html/en/developer/coding_basics.html\n__ https://doi.org/10.1371/journal.pbio.1001745\n__ http://rescience.github.io/\n\nFuture inclusion into Sage\n--------------------------\n\nSome modules may have a wider interest to the SageMath community\n(``tikz_picture.py`` for example) and could be included in SageMath at some\npoint. Please contact the author if you want to act as a reviewer for some\nmodule(s) and I will create a ticket on trac__ for its inclusion into SageMath.\n\n__ https://trac.sagemath.org/\n\nRelease history\n---------------\n\n*Version 0.7.7 (Nov 14, 2024)*\n New (small) module on q-Markoff numbers.\n New (small) module on Wang cubes.\n Added demo files containing the code used in `arXiv:2312.03652`__ and\n `arXiv:2403.03197`__.\n New module to generate random balanced teams used for managing a weekly\n local Ultimate frisbee league.\n Various small improvements in many modules.\n Updated cython code to work with latest Cython versions.\n Updated doctests to adapt to changes made in SageMath.\n All tests passed on SageMath version 10.4.beta9 (Release Date: 2024-06-09) using Python 3.10.12.\n All tests passed on SageMath version 10.5.beta6 (Release Date: 2024-09-29) using Python 3.12.5.\n\n__ https://arxiv.org/abs/2403.03197\n__ https://arxiv.org/abs/2312.03652\n\n*Version 0.7.6 (Dec 6, 2023)*\n New module to deal with piecewise affine transformations, the module\n on polyhedron exchange transformations is now based on it.\n Few improvements and bug fixes on drawing substitution and Wang tilings.\n Many doctests are currently failing with SageMath version 10.2 because Cython\n modules in the slabbe packages are broken by a recent update of Cython in\n SageMath. These are not fixed in this release.\n\n*Version 0.7.5 (Sep 15, 2023)*\n Desactivate Cython modules\n\n*Version 0.7.4 (Sep 13, 2023)*\n No more c files in the distribution tar.gz file.\n Fixing the latex string of 2-dimensional substitutions in the Jupyter notebook.\n In preparation for a conference at CIRM, Marseille, Sep 11-15 2023.\n All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.\n All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).\n\n*Version 0.7.3 (Sep 7, 2023)*\n Improving the way Polyhedron exchange transformations are plotted \n in preparation for a conference at CIRM, Marseille, Sep 11-15 2023.\n All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.\n All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).\n\n*Version 0.7.2 (Sep 6, 2023)*\n Fixing few doctests and failures with module Kolakoski related to Cython and\n Python 3.11.\n All tests passed on SageMath version 10.0.beta4 using Python 3.10.12.\n All tests passed on SageMath version 10.2.beta1 using Python 3.11.1 (except two).\n\n*Version 0.7.1 (June 30, 2023)*\n New module on cut and project scheme (still preliminary).\n New module to draw tilings with the Smith's aperiodic monotile (see this `blog post`__).\n Few other improvements.\n All tests passed on version 10.0 of SageMath.\n\n__ http://www.slabbe.org/blogue/2023/05/decoupe-laser-du-chapeau-tuile-aperiodique-decouverte-recemment/\n\n*Version 0.7 (December 8, 2022)*\n New module on d-dimensional Sturmian configurations, to draw figures from `arXiv:2204.06413`__.\n New module on Hypercubic billiard words (written with M\u00e9lodie Andrieu).\n The module ``TikzPicture`` got merged in SageMath 9.6 into\n ``sage.misc.latex_standalone`` through ticket `#20343`__ during which many\n improvements were made. The line ``from slabbe import TikzPicture`` now uses\n the one in SageMath by default. All tests passed on version 9.7 of SageMath.\n Up to recently, all tests passed on versions 9.0, 9.1, 9.2, 9.3 and 9.4 of SageMath;\n can't test those earlier versions of SageMath anymore because gitlab continuous\n integration tests is not free anymore.\n\n__ https://arxiv.org/abs/2204.06413\n__ https://trac.sagemath.org/ticket/20343\n\n*Version 0.6.3 (November 1, 2021)*\n New module on Ostrowski numeration system (basic stuff).\n New module on EkEkStar (written with Milton Minvervino).\n New modules containing the updated code published in `arXiv:1808.07768`__,\n `arXiv:1903.06137`__ and `arXiv:1906.01104`__.\n All tests passed on versions 9.0, 9.1, 9.2, 9.3 and 9.4 of SageMath.\n\n__ https://arxiv.org/abs/1808.07768\n__ https://arxiv.org/abs/1903.06137\n__ https://arxiv.org/abs/1906.01104\n\n*Version 0.6.2 (December 15, 2020)*\n New module on Graph-directed iterated function systems (GIFS).\n Fixed ``TransitiveIdeal`` import error.\n Now using gitlab continuous integration automatic tests:\n installation + ``import slabbe`` tested to work on versions 8.7, 8.8, 9.0, 9.1, 9.2 of SageMath.\n All tests passed on versions 9.0, 9.1, 9.2 of SageMath.\n\n*Version 0.6.1 (May 8, 2020)*\n New modules to deal with the coding of `Z^d`-action by PETs, `d`-dimensional\n sturmian configurations. Improved the computation of induced polyhedron partition\n and induced polyhedron exchange transformation. New modules containing the\n code for the articles `arxiv:1903.06137`__ and `arXiv:1906.01104`__\n\n__ https://arxiv.org/abs/1903.06137\n__ https://arxiv.org/abs/1906.01104\n\n*Version 0.6 (November 22, 2019)*\n Make the package work with Python 3. Most of the tests pass with Python 3 now.\n\n*Version 0.5.1 (May 30, 2019)*\n Few fixes for the publication of \"Induction of `Z^2`-actions on partitions of\n the 2-torus\". Improved html documentation.\n\n*Version 0.5 (April 10, 2019)*\n Few fixes for the version 2 of \"Substitutive structure of Jeandel-Rao\n aperiodic tilings\". New additions includes solving Wang tilings problem\n using SAT solvers and a class for Polyhedron exchange transformations.\n\n*Version 0.4.4 (September 28, 2018)*\n Make ``import slabbe`` work in Sage with Python 3.\n\n*Version 0.4.3 (August 22, 2018)*\n Few fixes for the publication of \"Substitutive structure of Jeandel-Rao\n aperiodic tilings\".\n\n*Version 0.4.2 (July 20, 2018)*\n Few fixes for the version 2 of \"A self-similar aperiodic set of 19 Wang\n tiles\".\n\n*Version 0.4.1 (February 9, 2018)*\n Few fixes for the publication of \"A self-similar aperiodic set of 19 Wang\n tiles\". New module to solve the Magic hexagon problem.\n\n*Version 0.4 (January 20, 2018)*\n Version ``0.4`` includes new modules for Wang tilings, 2d substitutions,\n polyhedron partitions, partial injections, ostrowski numeration and many\n improvements to other modules.\n\n*Version 0.3b2 (December 11, 2016)*\n Version ``0.3b2`` includes a new module for diophantine approximations,\n random point generation inside polytopes, analyzing sage building time, and\n many improvements to previous modules.\n\n*Version 0.3b1 (June 12, 2016)*\n Version ``0.3b1`` is now a Python package available in the Python Package\n Index (PyPI). It was migrated from the previous sage optional spkg old-style\n format. It also adds code to deal with bispecial factors, some new methods\n of graphs, substitutions and matrices.\n\n*Version 0.2 (November 25, 2015)*\n slabbe-0.2.spkg__ (documentation__) provides modules on multidimensional\n continued fraction algorithms, matrix cocycles, languages and tikzpictures. \n\n__ http://www.slabbe.org/Sage/slabbe-0.2.spkg\n__ http://www.slabbe.org/Sage/slabbe-0.2.pdf\n\n*Version 0.1.1 (June 3, 2015)*\n slabbe-0.1.1.spkg__ fixes a bug with ``gcd`` import error.\n\n__ http://www.slabbe.org/Sage/slabbe-0.1.1.spkg\n\n*Version 0.1 (August 27, 2014)*\n slabbe-0.1.spkg__ (documentation__) contains modules on digital geometry,\n combinatorics on words and more. \n\n__ http://www.slabbe.org/Sage/slabbe-0.1.spkg\n__ http://www.slabbe.org/Sage/slabbe-0.1.pdf\n\n",
"bugtrack_url": null,
"license": "GPLv2+",
"summary": "Sebastien Labbe's Research code",
"version": "0.7.7",
"project_urls": {
"Homepage": "http://gitlab.com/seblabbe/slabbe"
},
"split_keywords": [
"sagemath",
"combinatorics",
"discrete",
"geometry",
"symbolic",
"dynamics"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "17d33fd874926643a7cc59a0e45fa1ee2abf61e64da5a85c16a0f074b9fc77da",
"md5": "fc39731bd6bfe0f55e1e17fb5a16cbbf",
"sha256": "f6bd11058ea9fd0ae82bc4b69070e50654c0f80635bc0202b184ef8b208d0237"
},
"downloads": -1,
"filename": "slabbe-0.7.7.tar.gz",
"has_sig": false,
"md5_digest": "fc39731bd6bfe0f55e1e17fb5a16cbbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 746571,
"upload_time": "2024-11-14T19:16:12",
"upload_time_iso_8601": "2024-11-14T19:16:12.155082Z",
"url": "https://files.pythonhosted.org/packages/17/d3/3fd874926643a7cc59a0e45fa1ee2abf61e64da5a85c16a0f074b9fc77da/slabbe-0.7.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-14 19:16:12",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "seblabbe",
"gitlab_project": "slabbe",
"lcname": "slabbe"
}