Skip to content

Commit

Permalink
Merge pull request #55 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
enhanced README
  • Loading branch information
mohamed-barakat authored Jan 6, 2025
2 parents 4034138 + 856d964 commit 8dff4d2
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,37 @@ @uni-siegen.de>
year = {2025},
month = {1}
}

@article {BR,
AUTHOR = {Barakat, Mohamed and Robertz, Daniel},
TITLE = {$\mathtt{homalg}$ -- {A} meta-package for homological algebra},
JOURNAL = {J. Algebra Appl.},
FJOURNAL = {Journal of Algebra and its Applications},
VOLUME = {7},
YEAR = {2008},
NUMBER = {3},
PAGES = {299--317},
ISSN = {0219-4988},
MRCLASS = {16E30 (16-04)},
MRNUMBER = {2431811 (2009f:16010)},
MRREVIEWER = {Mikael Vejdemo Johansson},
DOI = {10.1142/S0219498808002813},
URL = {https://dx.doi.org/10.1142/S0219498808002813},
note = {(\href{http://arxiv.org/abs/math.AC/0701146}{\texttt{arXiv:math.AC/0701146}})},
}

@article{BL,
AUTHOR = {Barakat, Mohamed and Lange-Hegermann, Markus},
keywords = {BarakatReviewed},
TITLE = {An axiomatic setup for algorithmic homological algebra and an alternative approach to localization},
JOURNAL = {J.~Algebra Appl.},
FJOURNAL = {Journal of Algebra and its Applications},
VOLUME = {10},
YEAR = {2011},
NUMBER = {2},
PAGES = {269--293},
MRCLASS = {18E10 (18E25)},
MRNUMBER = {2795737 (2012f:18022)},
DOI = {10.1142/S0219498811004562},
URL = {https://dx.doi.org/10.1142/S0219498811004562},
}
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- BEGIN HEADER -->
# MatricesForHomalg

### Matrices for the homalg project
Expand All @@ -7,6 +8,35 @@
[![Build Status](https://github.com/homalg-project/MatricesForHomalg.jl/actions/workflows/Tests.yml/badge.svg?branch=main)](https://github.com/homalg-project/MatricesForHomalg.jl/actions/workflows/Tests.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/homalg-project/MatricesForHomalg.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/homalg-project/MatricesForHomalg.jl)

<!-- END HEADER -->

This package implements the homalg matrix interface in Julia. The
corresponding GAP package [MatricesForHomalg][MatricesForHomalg] is
used by the projects:

* [homalg project][homalg project],
* [CAP project][CAP project],
* [CategoricalTowers][CategoricalTowers],
* [HigherHomologicalAlgebra][HigherHomologicalAlgebra].

We are gradually creating Julia-versions of the various GAP packages
in these projects and many of them will rely on this package.

The current version only supports matrices over $\mathbb{Z}$ and
$\mathbb{Q}$. Matrices over [Bézout domains][Bézout domains] will be
supported next. Future versions should cover the full functionality of
the GAP package [MatricesForHomalg][MatricesForHomalg] by supporting
matrices over so-called computable rings [[BR][BR], [BL][BL]].

## Citing

See [`CITATION.bib`](CITATION.bib) for the relevant reference(s).

[MatricesForHomalg]: https://homalg-project.github.io/pkg/MatricesForHomalg/
[CAP project]: https://homalg-project.github.io/prj/CAP_project/
[homalg project]: https://homalg-project.github.io/prj/homalg_project/
[CategoricalTowers]: https://homalg-project.github.io/prj/CategoricalTowers/
[HigherHomologicalAlgebra]: https://homalg-project.github.io/prj/HigherHomologicalAlgebra/
[Bézout domains]: https://ncatlab.org/nlab/show/B%C3%A9zout+domain
[BR]: https://arxiv.org/abs/math/0701146
[BL]: https://arxiv.org/abs/1003.1943

2 comments on commit 8dff4d2

@mohamed-barakat
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/122444

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 8dff4d226dc3d6c535cd2cbeba65b4a438ae9cf3
git push origin v0.1.0

Please sign in to comment.