Skip to content

Commit efe2e59

Browse files
committed
Test release v0.1.6
1 parent 1ba2eaf commit efe2e59

File tree

4 files changed

+23
-32
lines changed

4 files changed

+23
-32
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: apa
2-
version: 0.1.5
3-
date: 2021-10-28
2+
version: 0.1.6
3+
date: 2021-11-08
44
author: Kai T. Ohlhus <[email protected]>
55
maintainer: Kai T. Ohlhus <[email protected]>
66
title: Octave/Matlab arbitrary precision arithmetic.

README.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
28-
"pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.5/apa-0.1.5.zip'\n",
28+
"pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.6/apa-0.1.6.zip'\n",
2929
"pkg load apa\n",
3030
"pkg test apa"
3131
]
@@ -45,10 +45,10 @@
4545
"metadata": {},
4646
"outputs": [],
4747
"source": [
48-
"urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.5/apa-0.1.5.zip', ...\n",
49-
" 'apa-0.1.5.zip');\n",
50-
"unzip ('apa-0.1.5.zip');\n",
51-
"cd (fullfile ('apa-0.1.5', 'inst'))\n",
48+
"urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.6/apa-0.1.6.zip', ...\n",
49+
" 'apa-0.1.6.zip');\n",
50+
"unzip ('apa-0.1.6.zip');\n",
51+
"cd (fullfile ('apa-0.1.6', 'inst'))\n",
5252
"install_apa\n",
5353
"test_apa"
5454
]

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ From the Octave command-line run:
66

77

88
```octave
9-
pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.5/apa-0.1.5.zip'
9+
pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.6/apa-0.1.6.zip'
1010
pkg load apa
1111
pkg test apa
1212
```
@@ -15,10 +15,10 @@ From the Matlab command-line run (also works for Octave):
1515

1616

1717
```octave
18-
urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.5/apa-0.1.5.zip', ...
19-
'apa-0.1.5.zip');
20-
unzip ('apa-0.1.5.zip');
21-
cd (fullfile ('apa-0.1.5', 'inst'))
18+
urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.6/apa-0.1.6.zip', ...
19+
'apa-0.1.6.zip');
20+
unzip ('apa-0.1.6.zip');
21+
cd (fullfile ('apa-0.1.6', 'inst'))
2222
install_apa
2323
test_apa
2424
```
@@ -37,15 +37,15 @@ rop = op1 + 1
3737
```
3838

3939
rop =
40-
40+
4141
MPFR 3x3 matrix (precision 53 binary digits)
42-
42+
4343
Double approximation:
44-
44+
4545
5 1 1
4646
1 5 1
4747
1 1 5
48-
48+
4949

5050

5151
The high-level MPFR interface is the preferred choice for quick numerical
@@ -96,15 +96,15 @@ rop % Note rop vs. ret!
9696
```
9797

9898
rop =
99-
99+
100100
MPFR 3x3 matrix (precision 53 binary digits)
101-
101+
102102
Double approximation:
103-
103+
104104
6 2 2
105105
2 6 2
106106
2 2 6
107-
107+
108108

109109

110110
In the low-level interface the type checks are stricter,

doc/MEX_INTERFACE.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
# The APA Octave/Matlab MEX interface
22

3+
For general installation instructions, please read `README.md`.
4+
35
The APA Octave/Matlab MEX-interface consists of several source files in the
46
`inst/mex` directory (C and header files) and in the released package
57
version with pre-compiled static GMP and MPFR libraries for MS Windows, macOS,
68
and UNIX (Linux).
79

810
If those pre-compiled libraries are missing or not working, please read below.
911

10-
From the Octave/Matlab command-line run:
11-
12-
```matlab
13-
urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.5/apa-0.1.5.zip', ...
14-
'apa-0.1.5.zip');
15-
unzip ('apa-0.1.5.zip');
16-
cd (fullfile ('apa-0.1.5', 'inst'))
17-
install_apa
18-
test_apa
19-
```
20-
2112
The APA MEX interface is known to work and tested for
2213

2314
- GNU Octave
24-
- Version 6.3.0
15+
- Version 6.4.0
2516
- MS Windows 10: <https://www.gnu.org/software/octave/download#ms-windows>
2617
- macOS 11 (Big Sur): <https://formulae.brew.sh/formula/octave>
2718
- Linux (openSUSE 15.3): <https://github.com/gnu-octave/docker>

0 commit comments

Comments
 (0)