diff --git a/README.md b/README.md index e3507e799..c35651379 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ Explore the docs ยป

- Report a defect + Report a defect | - Request feature + Request feature

@@ -19,43 +19,42 @@ Screenshot 2019-04-24 at 11 12 57 -You can load the code in a fresh Pharo 7.0 image with: +You can load PolyMath 1.0 into a fresh Pharo 7.0 image with: ```Smalltalk Metacello new - repository: 'github://PolyMathOrg/PolyMath:master/src'; + repository: 'github://PolyMathOrg/PolyMath:v1.0/src'; baseline: 'PolyMath'; load ``` -We have **806** green tests ! At the moment, all the development happens in the development branch. +and the latest development version of PolyMath: -PolyMath is a Pharo project, similar to existing scientific libraries like NumPy, SciPy for Python or SciRuby for Ruby. PolyMath already provide the following basic functionalities: +```Smalltalk +Metacello new + repository: 'github://PolyMathOrg/PolyMath/src'; + baseline: 'PolyMath'; + load +``` + +We have **806** green tests ! At the moment, all the development happens in the master branch (we are using trunk-based development). + +PolyMath is a Pharo project, similar to existing scientific libraries like NumPy, SciPy for Python or SciRuby for Ruby. PolyMath already provides the following basic functionalities: - complex and quaternions extensions, - random number generators, - fuzzy algorithms, +- automatic differentiation, - KDE-trees, - Numerical methods, - Ordinary Differential Equation (ODE) solvers. -A book about PolyMath called "PolyMath book" is available online: https://github.com/SquareBracketAssociates/PolyMath-book +The authoritative book on PolyMath is available online: https://github.com/SquareBracketAssociates/PolyMath-book -Some documentation (to be cleaned and reorganized) about PolyMath is available on the Wiki here: +Some documentation (work in progress) is available on the Wiki: https://github.com/PolyMathOrg/PolyMath/wiki Natalia wrote some explanation about benchmarking PolyMath in the Pharo For Enterprise Book: https://github.com/SquareBracketAssociates/PharoForTheEnterprise-english/blob/ae40e7ab6f7651f6e7c271869eb1efc4e531e774/ComparingSolutions/ComparingSolutions.pier -## Install PolyMath - -To install PolyMath in your Pharo image you can just execute the following script: - -```Smalltalk - Metacello new - githubUser: 'PolyMathOrg' project: 'PolyMath' commitish: 'master' path: 'src'; - baseline: 'PolyMath'; - load -``` - To add PolyMath to your baseline just add this: ```Smalltalk @@ -64,7 +63,6 @@ To add PolyMath to your baseline just add this: with: [ spec repository: 'github://PolyMathOrg/PolyMath:master/src' ] ``` - ## How to contribute to PolyMath We welcome submissions! A google group exists for this project at http://groups.google.com/group/polymath-project diff --git a/src/BaselineOfPolyMath/BaselineOfPolyMath.class.st b/src/BaselineOfPolyMath/BaselineOfPolyMath.class.st index 170622d77..57a688763 100644 --- a/src/BaselineOfPolyMath/BaselineOfPolyMath.class.st +++ b/src/BaselineOfPolyMath/BaselineOfPolyMath.class.st @@ -180,7 +180,7 @@ BaselineOfPolyMath >> sMark: spec [ project: 'SMark' with: [ spec className: #ConfigurationOfSMark; - versionString: '1.0.2'; + versionString: '1.0.3'; repository: 'http://smalltalkhub.com/mc/StefanMarr/SMark/main' ] ]