tomoto 0.6.0-aarch64-linux → 0.6.2-aarch64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/LICENSE.txt +1 -1
- data/ext/tomoto/ct.cpp +1 -1
- data/ext/tomoto/dmr.cpp +1 -1
- data/ext/tomoto/dt.cpp +1 -1
- data/ext/tomoto/extconf.rb +4 -8
- data/ext/tomoto/gdmr.cpp +1 -1
- data/ext/tomoto/hdp.cpp +1 -1
- data/ext/tomoto/hlda.cpp +1 -1
- data/ext/tomoto/hpa.cpp +1 -1
- data/ext/tomoto/lda.cpp +29 -3
- data/ext/tomoto/llda.cpp +1 -1
- data/ext/tomoto/mglda.cpp +1 -1
- data/ext/tomoto/pa.cpp +1 -1
- data/ext/tomoto/plda.cpp +1 -1
- data/ext/tomoto/slda.cpp +1 -1
- data/lib/tomoto/3.2/tomoto.so +0 -0
- data/lib/tomoto/3.3/tomoto.so +0 -0
- data/lib/tomoto/3.4/tomoto.so +0 -0
- data/lib/tomoto/4.0/tomoto.so +0 -0
- data/lib/tomoto/lda.rb +1 -0
- data/lib/tomoto/version.rb +1 -1
- data/vendor/EigenRand/EigenRand/EigenRand +4 -4
- data/vendor/EigenRand/README.md +60 -272
- data/vendor/tomotopy/README.kr.rst +27 -5
- data/vendor/tomotopy/README.rst +27 -5
- data/vendor/tomotopy/README_pypi.rst +583 -0
- data/vendor/tomotopy/licenses_bundled/EigenRand +21 -0
- metadata +6 -6
- data/vendor/variant/LICENSE +0 -25
- data/vendor/variant/LICENSE_1_0.txt +0 -23
- data/vendor/variant/README.md +0 -102
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Boost Software License - Version 1.0 - August 17th, 2003
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person or organization
|
|
4
|
-
obtaining a copy of the software and accompanying documentation covered by
|
|
5
|
-
this license (the "Software") to use, reproduce, display, distribute,
|
|
6
|
-
execute, and transmit the Software, and to prepare derivative works of the
|
|
7
|
-
Software, and to permit third-parties to whom the Software is furnished to
|
|
8
|
-
do so, all subject to the following:
|
|
9
|
-
|
|
10
|
-
The copyright notices in the Software and this entire statement, including
|
|
11
|
-
the above license grant, this restriction and the following disclaimer,
|
|
12
|
-
must be included in all copies of the Software, in whole or in part, and
|
|
13
|
-
all derivative works of the Software, unless such copies or derivative
|
|
14
|
-
works are solely in the form of machine-executable object code generated by
|
|
15
|
-
a source language processor.
|
|
16
|
-
|
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
20
|
-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
21
|
-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
22
|
-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
23
|
-
DEALINGS IN THE SOFTWARE.
|
data/vendor/variant/README.md
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
# Mapbox Variant
|
|
2
|
-
|
|
3
|
-
An alternative to `boost::variant` for C++11 and C++14
|
|
4
|
-
|
|
5
|
-
[](https://travis-ci.org/mapbox/variant)
|
|
6
|
-
[](https://ci.appveyor.com/project/Mapbox/variant)
|
|
7
|
-
[](https://coveralls.io/r/mapbox/variant?branch=master)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
## Why use Mapbox Variant?
|
|
11
|
-
|
|
12
|
-
Mapbox variant has the same speedy performance of `boost::variant` but is
|
|
13
|
-
faster to compile, results in smaller binaries, and has no dependencies.
|
|
14
|
-
|
|
15
|
-
For example on OS X 10.9 with clang++ and libc++:
|
|
16
|
-
|
|
17
|
-
Test | Mapbox Variant | Boost Variant
|
|
18
|
-
---- | -------------- | -------------
|
|
19
|
-
Size of pre-compiled header (release / debug) | 2.8/2.8 MB | 12/15 MB
|
|
20
|
-
Size of simple program linking variant (release / debug) | 8/24 K | 12/40 K
|
|
21
|
-
Time to compile header | 185 ms | 675 ms
|
|
22
|
-
|
|
23
|
-
(Numbers from an older version of Mapbox variant.)
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## Goals
|
|
27
|
-
|
|
28
|
-
Mapbox `variant` has been a very valuable, lightweight alternative for apps
|
|
29
|
-
that can use c++11 or c++14 but that do not want a boost dependency.
|
|
30
|
-
Mapbox `variant` has also been useful in apps that do depend on boost, like
|
|
31
|
-
mapnik, to help (slightly) with compile times and to majorly lessen dependence
|
|
32
|
-
on boost in core headers. The original goal and near term goal is to maintain
|
|
33
|
-
external API compatibility with `boost::variant` such that Mapbox `variant`
|
|
34
|
-
can be a "drop in". At the same time the goal is to stay minimal: Only
|
|
35
|
-
implement the features that are actually needed in existing software. So being
|
|
36
|
-
an "incomplete" implementation is just fine.
|
|
37
|
-
|
|
38
|
-
Currently Mapbox variant doesn't try to be API compatible with the upcoming
|
|
39
|
-
variant standard, because the standard is not finished and it would be too much
|
|
40
|
-
work. But we'll revisit this decision in the future if needed.
|
|
41
|
-
|
|
42
|
-
If Mapbox variant is not for you, have a look at [these other
|
|
43
|
-
implementations](doc/other_implementations.md).
|
|
44
|
-
|
|
45
|
-
Want to know more about the upcoming standard? Have a look at our
|
|
46
|
-
[overview](doc/standards_effort.md).
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## Depends
|
|
50
|
-
|
|
51
|
-
- Compiler supporting `-std=c++11` or `-std=c++14`
|
|
52
|
-
|
|
53
|
-
Tested with:
|
|
54
|
-
|
|
55
|
-
- g++-4.7
|
|
56
|
-
- g++-4.8
|
|
57
|
-
- g++-4.9
|
|
58
|
-
- g++-5.2
|
|
59
|
-
- clang++-3.5
|
|
60
|
-
- clang++-3.6
|
|
61
|
-
- clang++-3.7
|
|
62
|
-
- clang++-3.8
|
|
63
|
-
- clang++-3.9
|
|
64
|
-
- Visual Studio 2015
|
|
65
|
-
|
|
66
|
-
## Usage
|
|
67
|
-
|
|
68
|
-
There is nothing to build, just include `variant.hpp` in your project. Include `variant_io.hpp` if you need
|
|
69
|
-
the `operator<<` overload for variant.
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
## Unit Tests
|
|
73
|
-
|
|
74
|
-
On Unix systems compile and run the unit tests with `make test`.
|
|
75
|
-
|
|
76
|
-
On Windows run `scripts/build-local.bat`.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
## Limitations
|
|
80
|
-
|
|
81
|
-
* The `variant` can not hold references (something like `variant<int&>` is
|
|
82
|
-
not possible). You might want to try `std::reference_wrapper` instead.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
## Deprecations
|
|
86
|
-
|
|
87
|
-
* The included implementation of `optional` is deprecated and will be removed
|
|
88
|
-
in a future version. See https://github.com/mapbox/variant/issues/64.
|
|
89
|
-
* Old versions of the code needed visitors to derive from `static_visitor`.
|
|
90
|
-
This is not needed any more and marked as deprecated. The `static_visitor`
|
|
91
|
-
class will be removed in future versions.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
## Benchmarks
|
|
95
|
-
|
|
96
|
-
make bench
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
## Check object sizes
|
|
100
|
-
|
|
101
|
-
make sizes /path/to/boost/variant.hpp
|
|
102
|
-
|