Skip to content

Commit

Permalink
Closing issue 29 and updated documentation to version 0.0.4.3 (#33)
Browse files Browse the repository at this point in the history
* Increased version for this issue

* Added acknowledgement to  Poul Due Jensen Foundation.

* Changed names of the repository
  - RingWithOperator --> DRing
  - RingsWithOperators --> DRings
  - RWOPolynomial* --> DPolynomial*
  - ring_w_operators --> dring
  - rwo_polynomial_* --> dpolynomial_*

* Changed names of files in documentation

* Updated documentation

* Added aliases for backward compatibility

* Fixed some linting errors

* Increase version to 0.0.4.3 for pull request #33
  • Loading branch information
Antonio-JP authored Apr 21, 2023
1 parent a32c323 commit 5d8fefb
Show file tree
Hide file tree
Showing 76 changed files with 762 additions and 9,672 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ doc:
cd docsrc && $(SAGE) -sh -c "make html"

doc-github: doc
cp -a docsrc/build/html/. ./docs
@cp -a docsrc/build/html/. ./docs
@echo "" > ./docs/.nojekyll

# Cleaning commands
clean: clean_doc clean_pyc
Expand All @@ -59,6 +60,7 @@ clean_build:

clean_doc:
@echo "Cleaning documentation"
@rm -rf docs/* docs/.buildinfo docs/.nojekyll
@cd docsrc && $(SAGE) -sh -c "make clean"

clean_pyc:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ This package has been developed with the finaltial support of the following insi
* The Austrian Science Fund (FWF): by W1214-N15, project DK15.
* The Oberösterreich region: by the Innovatives OÖ-2010 plus program.
* The Île-de-France region: by the project "XOR".
* The Spanish Ministry of Science and Innovation (MICINN): by the grant PID2021-124473NB-I00, "Algorithmic Differential Algebra and Integrability" (ADAI)
* The Spanish Ministry of Science and Innovation (MICINN): by the grant PID2021-124473NB-I00, "Algorithmic Differential Algebra and Integrability" (ADAI)
* The Poul Due Jensen Foundation: grant 883901.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.4.2
0.0.4.3
5 changes: 3 additions & 2 deletions dalgebra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
* The Oberösterreich region: by the Innovatives OÖ-2010 plus program.
* The Île-de-France region: by the project "XOR".
* The Spanish Ministry of Science and Innovation (MICINN): by the grant PID2021-124473NB-I00, "Algorithmic Differential Algebra and Integrability" (ADAI)
* The Poul Due Jensen Foundation: grant 883901.
'''

# ****************************************************************************
Expand Down Expand Up @@ -170,8 +171,8 @@
logger.addHandler(fh)
logger.propagate = False

from .ring_w_operator import * # basic ring structures
from .rwo_polynomial import * # ring of difference/differential polynomials
from .dring import * # basic ring structures
from .dpolynomial import * # ring of difference/differential polynomials

def dalgebra_version():
import pkg_resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
# https://www.gnu.org/licenses/
# ****************************************************************************

from .rwo_polynomial_element import *
from .rwo_polynomial_ring import *
from .rwo_polynomial_system import *
from .dpolynomial_element import *
from .dpolynomial_ring import *
from .dpolynomial_system import *

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

211 changes: 107 additions & 104 deletions dalgebra/ring_w_operator.py → dalgebra/dring.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 305f54d401441643a7f58881a1d1b4e2
config: a058437cea13e1c6b51df2b9f65c384a
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file removed docs/.doctrees/differential_polynomial.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/.doctrees/environment.pickle
Binary file not shown.
Binary file removed docs/.doctrees/index.doctree
Binary file not shown.
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 0 additions & 1 deletion docs/_static/css/badge_only.css

This file was deleted.

Binary file removed docs/_static/css/fonts/Roboto-Slab-Bold.woff
Binary file not shown.
Binary file removed docs/_static/css/fonts/Roboto-Slab-Bold.woff2
Binary file not shown.
Binary file removed docs/_static/css/fonts/Roboto-Slab-Regular.woff
Binary file not shown.
Binary file removed docs/_static/css/fonts/Roboto-Slab-Regular.woff2
Binary file not shown.
Binary file removed docs/_static/css/fonts/fontawesome-webfont.eot
Binary file not shown.
Loading

0 comments on commit 5d8fefb

Please sign in to comment.