Skip to content

Commit 8bcf998

Browse files
PolyMath v1.0.1 (#149)
* [skip CI] * [skip CI] * [skip CI] typos * [skip CI] * Update SMark to 1.0.3
1 parent 6a3657a commit 8bcf998

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

README.md

+18-20
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<a href="docs/"><strong>Explore the docs »</strong></a>
66
<br>
77
<br>
8-
<a href="https://github.com/PolyMath/PolyMath/issues/new?labels=Type%3A+Defect">Report a defect</a>
8+
<a href="https://github.com/PolyMathOrg/PolyMath/issues/new?labels=Type%3A+Defect">Report a defect</a>
99
|
10-
<a href="https://github.com/PolyMath/PolyMath/issues/new?labels=Type%3A+Feature">Request feature</a>
10+
<a href="https://github.com/PolyMathOrg/PolyMath/issues/new?labels=Type%3A+Feature">Request feature</a>
1111
</p>
1212
</p>
1313

@@ -19,43 +19,42 @@
1919

2020
<img width="1675" alt="Screenshot 2019-04-24 at 11 12 57" src="https://user-images.githubusercontent.com/327334/56652094-66eb7780-6682-11e9-9753-101be18df67c.png">
2121

22-
You can load the code in a fresh Pharo 7.0 image with:
22+
You can load PolyMath 1.0 into a fresh Pharo 7.0 image with:
2323

2424
```Smalltalk
2525
Metacello new
26-
repository: 'github://PolyMathOrg/PolyMath:master/src';
26+
repository: 'github://PolyMathOrg/PolyMath:v1.0/src';
2727
baseline: 'PolyMath';
2828
load
2929
```
3030

31-
We have **806** green tests ! At the moment, all the development happens in the development branch.
31+
and the latest development version of PolyMath:
3232

33-
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:
33+
```Smalltalk
34+
Metacello new
35+
repository: 'github://PolyMathOrg/PolyMath/src';
36+
baseline: 'PolyMath';
37+
load
38+
```
39+
40+
We have **806** green tests ! At the moment, all the development happens in the master branch (we are using trunk-based development).
41+
42+
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:
3443
- complex and quaternions extensions,
3544
- random number generators,
3645
- fuzzy algorithms,
46+
- automatic differentiation,
3747
- KDE-trees,
3848
- Numerical methods,
3949
- Ordinary Differential Equation (ODE) solvers.
4050

41-
A book about PolyMath called "PolyMath book" is available online: https://github.com/SquareBracketAssociates/PolyMath-book
51+
The authoritative book on PolyMath is available online: https://github.com/SquareBracketAssociates/PolyMath-book
4252

43-
Some documentation (to be cleaned and reorganized) about PolyMath is available on the Wiki here:
53+
Some documentation (work in progress) is available on the Wiki:
4454
https://github.com/PolyMathOrg/PolyMath/wiki
4555

4656
Natalia wrote some explanation about benchmarking PolyMath in the Pharo For Enterprise Book: https://github.com/SquareBracketAssociates/PharoForTheEnterprise-english/blob/ae40e7ab6f7651f6e7c271869eb1efc4e531e774/ComparingSolutions/ComparingSolutions.pier
4757

48-
## Install PolyMath
49-
50-
To install PolyMath in your Pharo image you can just execute the following script:
51-
52-
```Smalltalk
53-
Metacello new
54-
githubUser: 'PolyMathOrg' project: 'PolyMath' commitish: 'master' path: 'src';
55-
baseline: 'PolyMath';
56-
load
57-
```
58-
5958
To add PolyMath to your baseline just add this:
6059

6160
```Smalltalk
@@ -64,7 +63,6 @@ To add PolyMath to your baseline just add this:
6463
with: [ spec repository: 'github://PolyMathOrg/PolyMath:master/src' ]
6564
```
6665

67-
6866
## How to contribute to PolyMath
6967

7068
We welcome submissions! A google group exists for this project at http://groups.google.com/group/polymath-project

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ BaselineOfPolyMath >> sMark: spec [
180180
project: 'SMark'
181181
with: [ spec
182182
className: #ConfigurationOfSMark;
183-
versionString: '1.0.2';
183+
versionString: '1.0.3';
184184
repository: 'http://smalltalkhub.com/mc/StefanMarr/SMark/main' ]
185185
]
186186

0 commit comments

Comments
 (0)