-
Notifications
You must be signed in to change notification settings - Fork 40
/
ChangeLog
1221 lines (794 loc) · 39.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-08-23 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.4.0.2
* inst/NEWS.Rd: Release 0.3.4.0.2
* DESCRIPTION (Authors@R): Correct two ORCID tag typos
2024-08-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.4.0.1
* inst/NEWS.Rd: Release 0.3.4.0.1
2024-08-13 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Eigen/src/misc/blas.h: Conditionally comment out
xerbla which is now also provided by r-devel (CRAN request)
2024-08-12 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Authors@R): Added, with ORCID IDs
2024-05-16 Dirk Eddelbuettel <edd@debian.org>
* README.md: Use tinyverse.netlify.app for dependency badge
2024-03-01 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v4,
add r-ci-setup actions
2024-02-28 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.4.0.0
2024-02-12 Tomas Kalibera <tomas.kalibera@gmail.com>
* inst/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h:
Support clang on Windows by including 'sched.h' header
2024-01-17 Yixuan Qiu <yixuan.qiu@cos.name>
* DESCRIPTION (Version, Date): Release candidate 0.3.3.99.0
* inst/include/Eigen: Upgraded to Eigen 3.4.0
* inst/include/unsupported/Eigen: Idem
* patches/eigen-3.4.0.diff: Carried local CRAN patches forward
* patches/howToDiff.md: Idem
2023-11-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.3.9.4
* inst/NEWS.Rd: Release 0.3.3.9.4
2023-10-05 Mikael Jagan <jaganmn@mcmaster.ca>
* DESCRIPTION: Package 'Matrix' is now only a Suggests:
* NAMESPACE: Remove unconditional imports from package Matrix
* inst/include/Eigen/CholmodSupport: No longer need to include
RcppEigenCholmod.h
* inst/include/Eigen/src/CholmodSupport/CholmodSupport.h: Small
wrapper adjustments conditional on Matrix use
* inst/include/RcppEigenCholmod.h: Updated
* inst/include/RcppEigenForward.h: Simplified
* inst/include/RcppEigenWrap.h: Ditto
* inst/include/RcppEigenStubs.cpp: New shorter helper
* inst/include/RcppEigenStubs.h: Removed
2023-07-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll micro version and date
* README.md: Add r-universe badge
2023-07-20 Dirk Eddelbuettel <edd@debian.org>
* src/RcppEigen.cpp (EigenNbThreads): Add simple threads reporter
* R/fastLm.R (fastLmPure): Simpler call to `fastLm_Impl()`
* src/init.c: Replaced by auto-generated section in RcppExports.cpp
* src/RcppExports.cpp: Regenerated
* R/RcppExports.R: Idem
* src/Makevars: Document possible use of '-fopenmp'
* src/Makevars.win: Idem
2023-04-18 Dirk Eddelbuettel <edd@debian.org>
* README.md: Use app.codecov.io as base for codecov link
2023-03-10 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* R/RcppEigen.package.skeleton.R: No longer set Imports: RcppEigen in
DESCRIPTION and NAMESPACE
2023-02-12 Dirk Eddelbuettel <edd@debian.org>
* inst/CITATION: Convert to bibentry() style with person()
2022-11-04 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.3.9.3
* inst/NEWS.Rd: Release 0.3.3.9.3
* src/init.c: Add 'void' for proper prototype pleasing clang-15
* R/fastLm.R (summary.fastLm,print.fastLm): Refer to correct and full
variable name df.residual in the returned object
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
2022-09-15 Jonah Gabry <jgabry@gmail.com>
* inst/skeleton/rcppeigen_hello_world.cpp: Correct typo
2022-04-08 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Depends): Add a versioned dependency on R 3.6.0 or
later because of our use of FCONE to support USE_FC_LEN_T
2022-04-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.3.9.2
* inst/NEWS.Rd: Release 0.3.3.9.2
2022-04-04 Dirk Eddelbuettel <edd@debian.org>
* src/fastLm.cpp: Add FCONE in two calls for improved Fortran and C
character interface per Writing R Extensions, Section 6.6.1
2022-01-16 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_wrap.R: Added (optional) large memory wrap tests
* inst/tinytest/cpp/wrap.cpp: Added C++ part of test
* .codecov.yml: Added to not trigger PR fail for small additions
2022-01-16 Mikael Jagan <jaganmn@mcmaster.ca>
* inst/include/RcppEigenWrap.h: Refine use plain dense wrap() change
2022-01-15 Mikael Jagan <jaganmn@mcmaster.ca>
* inst/include/RcppEigenWrap.h: Use R_xlen_t for vectors rows + cols
2021-12-29 Dirk Eddelbuettel <edd@debian.org>
* README.md: Add total downloads badge
2021-12-08 Dirk Eddelbuettel <edd@debian.org>
* README.md: Remove unused continuous integration artifact and badge
2021-10-13 Dirk Eddelbuettel <edd@debian.org>
* inst/CITATION: Refinment of doi use
2021-10-10 Dirk Eddelbuettel <edd@debian.org>
* inst/CITATION: Switch JSS url to doi form per JSS request
* README.md: Idem
2021-07-19 Dirk Eddelbuettel <edd@debian.org>
* inst/include/RcppEigenWrap.h: Two more #nocov tags
* src/fastLm.cpp: One more #nocov tag
2021-07-18 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_fastLm.R: Add tests for summary
* src/fastLm.cpp: Add a few #nocov tags
2021-07-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* R/RcppEigen.package.skeleton.R (RcppEigen.package.skeleton): Also
import RcppEigen in DESCRIPTION
2021-06-07 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* inst/tinytest/test_misc.R: New test file
* inst/tinytest/test_fastLm.R: Added tests
* R/fastLm.R: Add single one-line nocov tag
* .Rbuildignore: Add .covignore and .codecov.yml
2021-06-06 Dirk Eddelbuettel <edd@debian.org>
* README.md: Added coverage badge
* .github/workflows/ci.yaml (jobs): Turn on coverage
* .covrignore: Added
* .codecov.yml (ignore): Idem
* R/RcppEigen.package.skeleton.R: Set nocov
2021-05-09 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (URL): Add GitHub repo to URL field
2021-01-02 Dirk Eddelbuettel <edd@debian.org>
* R/RcppEigen.package.skeleton.R: Wrap any() around grepl()
2020-12-25 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml: Small tweaks to CI YAML file
2020-12-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): CRAN Release 0.3.3.9.1 (following
coordinated update of reverse dependency StanHeaders)
* inst/NEWS.Rd: Release 0.3.3.9.1
2020-12-14 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml: Add CI runner using r-ci
* README.md: Add new badge
2020-12-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.3.9.0
* inst/include/Eigen: Upgraded to Eigen 3.3.9
* inst/include/unsupported/Eigen: Idem
* patches/eigen-3.3.9.diff: Carried local CRAN patches forward
* .travis.yml: Switch to r-ci using focal and bspm
* README.md: Updated URLs to https and/or redirect location
* inst/CITATION: Idem
* man/RcppEigen-package.Rd: Idem
* man/fastLm.Rd: Idem
2020-08-16 Dirk Eddelbuettel <edd@debian.org>
* README.md: Add JSS badge
2020-03-29 Dirk Eddelbuettel <edd@debian.org>
* README.md: Added commit badge, edited
2020-01-22 Dirk Eddelbuettel <edd@debian.org>
* README.md: README.md: Add a Debian badge
2019-11-16 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.3.7.0
* inst/include/Eigen: Upgraded to Eigen 3.3.7
* inst/include/unsupported/Eigen: Idem
* patches/eigen-3.3.7.diff: Carried local CRAN patches forward
2019-11-01 Dirk Eddelbuettel <edd@debian.org>
* R/unit.test.R (compile_unit_tests): Removed as no longer needed
2019-10-31 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_transform.R: Switch from RUnit to tinytest
* inst/tinytest/test_wrap.R: Idem
* inst/tinytest/cpp/transform.cpp: Added using Rcpp Attributes
* inst/tinytest/cpp/wrap.cpp: Idem
* inst/tinytest/cpp/sparse.cpp: More idiomatic Eigen code
* inst/tinytest/test_sparse.R: Idem
* .editorconfig: Added
2019-10-30 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Suggests): Switch from RUnit to tinytest
* .travis.yml (install): Ditto
* tests/tinytest.R: Converted to tinytest
* test_sparse.R: Converted to tinytest
* cpp/sparse.cpp: Added using Rcpp Attributes
2019-10-29 Dirk Eddelbuettel <edd@debian.org>
* test_fastLm.R: Converted to tinytest
* test_RcppEigen.R: Idem
* test_solution.R: Idem
* cpp/rcppeigen.cpp: Added using Rcpp Attributes
* cpp/solution.cpp: Idem
2019-10-28 Dirk Eddelbuettel <edd@debian.org>
* tests/tinytest.R: Renamed from tests/doRUnit.R
* inst/tinytest/test_fastLm.R: Renamed from inst/unitTests/runit*
* inst/tinytest/test_RcppEigen.R: Idem
* inst/tinytest/test_solution.R: Idem
* inst/tinytest/test_sparse.R: Idem
* inst/tinytest/test_transform.R: Idem
* inst/tinytest/test_wrap.R: Idem
2019-10-13 Dirk Eddelbuettel <edd@debian.org>
* README.md: Added CRAN + BioConductor badges for reverse depends,
add StackOverflow badge to recommend help searches under 'Rcpp'
* DESCRIPTION (Version, Date): Roll minor version
* R/RcppEigen.package.skeleton.R (RcppEigen.package.skeleton): Test for
example_code outside of haveKitten test; remove force argument if unused
2019-05-24 Dirk Eddelbuettel <edd@debian.org>
* vignettes/RcppEigen-Introduction.Rnw: Update vignette to use
RcppEigen:::eigen_version() instead of .Call()
2019-03-29 Dirk Eddelbuettel <edd@debian.org>
* inst/skeleton/rcppeigen_hello_world.cpp: Rework first example to
not rely on Eigen RNG which R CMD check would complain about.
2019-02-16 James Joseph Balamuta <balamut2@illinois.edu>
* R/runit.RcppEigen.R: Removed listing RcppEigen in Imports during
skeleton package creation.
2018-11-24 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.3.5.0
2018-11-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Eigen: Updated to release 3.3.5
* inst/include/unsupported: Idem
* patches/eigen-3.3.5.diff: Diff of local patches
2018-09-02 Dirk Eddelbuettel <edd@debian.org>
* .travis.yml: Switch Travis CI to R 3.5 repo
2018-05-30 Michael Weylandt <michael.weylandt@gmail.com>
* inst/examples/lmBenchmark.R: Update benchmark script to use
microbenchmark and to use exposed fastLm functions from Rcpp
packages rather than invoking .Call directly
2018-05-25 Ralf Stubner <ralf.stubner@daqana.com>
* inst/include/RcppEigenWrap.h: Use Rf_xlength and R_xlen_t to
support long vectors
2018-02-07 Dirk Eddelbuettel <edd@debian.org>
* patches/eigen-3.3.4.diff: Diff to upstream Eigen 3.3.4,
cherry-picked in the 3.3.4 branch of Yixuan
2018-02-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.3.4.0
* inst/include/Eigen/src/Core/arch/CUDA/Half.h (Eigen): Condition use
of long long and unsigned long on C++11
* inst/include/Eigen/src/Core/arch/SSE/Complex.h (Eigen): Comment-out
use of diagnostic-suppressing pragma for gcc + clang to satisfy CRAN
* inst/include/Eigen/src/Core/util/DisableStupidWarnings.h: Idem
2018-02-04 Yixuan Qiu <yixuan.qiu@cos.name>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen: Updated to the upstream 3.3 branch of Eigen
based on version 3.3.4
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
* inst/include/Eigen/src/Core/util/DisableStupidWarnings.h:
Patch from upstream Eigen that has not been ported to the 3.3 branch
(cf GitHub issue #48)
2017-11-19 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.3.3.1
* R/inline.R: Use '::' not ':::' for Rcpp.plugin.maker
2017-08-26 Dirk Eddelbuettel <edd@debian.org>
* .travis.yml (before_install): Use https for curl fetch
2017-06-06 Yu Gong <armgong@yahoo.com>
* inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h:
Also permit compilation under Haiku-OS
2017-05-28 Dirk Eddelbuettel <edd@debian.org>
* inst/examples/lmBenchmark.R (do_bench): Remove spurious argument in
call to RcppEigen:::Eigen_SSE() (cf github issue #44)
2017-04-29 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.3.3.3.0
[ which again owes a very big thank you to Yixuan for doing the work! ]
2017-04-27 Dirk Eddelbuettel <edd@debian.org>
* .travis.yml: Switch to using run.sh for Travis CI
2017-04-27 Yixuan Qiu <yixuan.qiu@cos.name>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen/src/Core/arch/CUDA/Half.h: Fixed compiler warning
on 'long long' type in C++ 98 mode
2017-03-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Release 0.3.2.9.1
* src/init.c (R_init_RcppEigen): Call R_registerRoutines()
and R_useDynamicSymbols()
* NAMESPACE: Use .registration=TRUE on useDynLib
* R/fastLm.R (fastLmPure): Remove erroneous fourth argument from .Call
2017-03-13 Martin Maechler <maechler@r-project.org>
* inst/include/RcppEigenCholmod.h: Synchronize with Matrix package
2017-02-21 Yixuan Qiu <yixuan.qiu@cos.name>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen: Updated to release 3.3.3 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
2017-01-20 Yixuan Qiu <yixuan.qiu@cos.name>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen: Updated to release 3.3.2 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
* inst/unitTests/runit.RcppEigen.R, inst/unitTests/runit.sparse.R:
Explicitly convert matrix size to `double` type such that Rcpp can
properly return the value to R, thanks to ChingChuan and Dirk
2017-01-20 ChingChuan Chen <zw12356@gmail.com>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen: Updated to release 3.3.1 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* inst/examples/lmBenchmark.R: Fixed function names
2016-12-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (URL, BugReports): Added / updated
2016-11-12 Yixuan Qiu <yixuan.qiu@cos.name>
[ In RcppEigen 0.3.3.* branch ]
* inst/include/Eigen: Updated to release 3.3.0 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
* inst/include/RcppEigenForward.h, inst/include/RcppEigenWrap.h:
Added exporters for the new Map<SparseMatrix<T> > type
* inst/unitTests/runit.sparse.R: Unit tests for the new type
2016-08-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.3.2.9.0 with big thanks to Yixuan for doing
the work!
2016-08-19 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.9 of Eigen
* README.md: Updated version number and fixed the NOTE from CRAN URL
check
2016-04-30 Dirk Eddelbuettel <edd@debian.org>
* README.md: Expanded
2016-04-28 James Joseph Balamuta <balamut2@illinois.edu>
* inst/include/RcppEigenWrap.h: Added an exporter class for
Map::RowVectorX<t> per http://stackoverflow.com/questions/36920689/
* inst/include/unitTests/runit.RcppEigen.R: Added row exporter unit
test.
2016-02-29 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Release 0.3.2.8.1
* inst/NEWS.Rd: Release 0.3.2.8.1
* debian/*: Changes for Debian release of 0.3.2.8.1
2016-02-28 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen/src/SparseCore/CompressedStorage.h,
inst/include/Eigen/src/SparseCore/SparseBlock.h,
inst/include/Eigen/src/SparseCore/SparseMatrix.h,
inst/include/Eigen/src/SparseCore/SparseRedux.h,
inst/include/Eigen/src/SparseCore/SparseVector.h:
Another patch from upstream to fix UBSAN null pointer errors
2016-02-23 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Release 0.3.2.8.0
* DESCRIPTION (Author): Added Yixuan Qiu
* inst/NEWS.Rd: Release 0.3.2.8.0
2016-02-22 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.8 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
* inst/include/Eigen/src/SparseCore/CompressedStorage.h,
inst/include/Eigen/src/Core/util/Memory.h: Applied patch from
upstream to fix UBSAN errors
2016-01-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.3.2.7.0
* debian/*: Changes for Debian release of 0.3.2.7.0
2016-01-19 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/runit.sparse.R (test.sparseCholesky.R): Accomodate
stricter as.vector() requirements in R-devel
2016-01-18 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.7 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
2015-11-01 Alexey Stukalov <alyst@users.noreply.github.com>
* src/fastLm.cpp: Do not include R's LAPACK header if MKL defined
2015-09-23 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.3.2.5.1
* debian/*: Changes for Debian release of 0.3.2.5.1
2015-09-21 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Eigen/src/SparseCore/CompressedStorage.h: Added
somewhat adapted code from upstream PR #118 to address UBSAN
2015-08-21 Dirk Eddelbuettel <edd@debian.org>
* src/RcppEigen.cpp: Updated code to use Rcpp Attributes
* src/fastLm.cpp: Ditto
* src/fastLm.h: Ditto
* R/fastLm.R: Ditto
* inst/unitTests/runit.fastLm.R: Ditto
2015-08-04 Dirk Eddelbuettel <edd@debian.org>
* R/RcppEigen.package.skeleton.R: Correct kitten() use based on patch
kindly supplied by Grant Brown (cf GitHub issue #21)
2015-07-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Version 0.3.2.5.0
2015-07-13 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen/src/Core/Assign.h: Applied patch from upstream
Eigen that will appear in the next release
2015-07-12 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Added more explicitly quoting per R CMD check
* NAMESPACE: Explicitly importFrom() stats and utils packages
2015-07-11 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.5 of Eigen
* inst/include/unsupported: Idem
* DESCRIPTION: Idem
* README.md: Idem
* inst/include/RcppEigenWrap.h: Fixed three incorrect error messages
2015-06-06 Dirk Eddelbuettel <edd@debian.org>
* R/RcppEigen.package.skeleton.R: Correct use of requireNamespace()
2015-02-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Version 0.3.2.4.0
* debian/*: Updated
2015-02-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Eigen: Updated to release 3.2.4 of Eigen
* DESCRIPTION: Updated Version: and Date:
* README.md: Idem
* .travis.yml: Switch to ppa:edd/misc for binaries
* R/RcppEigen.package.skeleton.R: Use pkgKitten::kitten, if installed
* inst/skeleton/rcppeigen_hello_world.Rd: Added new page
* inst/skeleton/Makevars: Minor edits
* inst/skeleton/Makevars.win: Idem
* DESCRIPTION: Added Suggests: for pkgKitten
* .travis.yml: Also install pkgKitten
2014-12-22 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.3 of Eigen
* DESCRIPTION: Idem
* README.md: Idem
2014-11-23 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/unitTests/runit.wrap.R: Added a number of unit tests
* inst/unitTests/runit.transform.R: Idem
* inst/unitTests/runit.sparse.R: Idem
2014-10-20 Dirk Eddelbuettel <edd@debian.org>
* inst/examples/lmBenchmark.R: Updated RcppArmadillo .Call in example
2014-08-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New version 0.3.2.2.0 which was prepared expertly by
Yixuan Qiu in a nice and clean pull request -- a big thank you for that!
* DESCRIPTION: Adjusting Date: as well
2014-08-19 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/Eigen: Updated to release 3.2.2 of Eigen
* inst/unitTests/runit.wrap.R: More unit tests to reflect changes in
as() exporters
2014-05-29 Yixuan Qiu <yixuan.qiu@cos.name>
* inst/include/RcppEigenWrap.h: Added as() conversion from R vector to
Eigen::Array<T, 1, Eigen::Dynamic>
* inst/include/RcppEigenWrap.h: Fixed incorrect as() exporters
* inst/include/RcppEigenWrap.h: Check matrix type of "dgCMatrix"
instead of "CsparseMatrix"
* inst/include/RcppEigenWrap.h, inst/include/RcppEigenForward.h:
Added as() conversion from "dgRMatrix" to
Eigen::MappedSparseMatrix<T, Eigen::RowMajor>
2014-05-01 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Eigen/src/Core/util/Memory.h: Applied patch by Gael
Guennebaud created in response to Doug's bug report (#803) which in
turn is based on the UBSAN report at CRAN by Brian Ripley
2014-03-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New version 0.3.2.1.1
2014-03-05 Dirk Eddelbuettel <edd@debian.org>
* inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h:
Better, more general test for DIRENT feature thanks to Brian Ripley
2014-03-04 Dirk Eddelbuettel <edd@debian.org>
* inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h:
(re-)add another #ifndef excluding a line on Solaris
2014-03-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New release version 0.3.2.1.0
2014-03-03 Douglas Bates <bates@stat.wisc.edu>
* inst/include/Eigen: Update to release 3.2.1 of Eigen
2014-03-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New minor version 3.2.0.3
* DESCRIPTION: Switched to 'Imports: Rcpp (>= 0.11.0)'
* src/Makevars: Updated for Rcpp 0.11.0
* src/Makevars.win: Ditto
* R/RcppEigen.package.skeleton.R: Updated for Rcpp 0.11.0, also
updated for current R versions by removing deprecated 'namespace' arg
* man/RcppEigen.package.skeleton.Rd: Removed 'namespace' for current R
* inst/skeleton/rcppeigen_hello_world.cpp: Rewritten / extended
similar to the RcppArmadillo variant; now contains four functions
exported by Rcpp Attributes
* inst/skeleton/Makevars: Updated for Rcpp 0.11.0, also noted C++11 option
via setting of 'USE_CXX1X=' with R 3.1.0 or later
* inst/skeleton/Makevars.win: Ditto
2014-01-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New minor version 3.2.0.2
2014-01-22 Dirk Eddelbuettel <edd@debian.org>
* NAMESPACE: Added importFrom(Rcpp, evalCpp) needed for next Rcpp
2014-01-12 Dirk Eddelbuettel <edd@debian.org>
* R/SHLIB.maker: Commented-out, file to be removed
2013-12-19 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Updated Description to mention MPL-2 license for Eigen
* inst/unitTests/runit.solutions.R: RUnit file converted from testthat
* inst/unitTests/runit.transform.R: Idem
* inst/unitTests/runit.wrap.R: Idem
* DESCRIPTION: Remove Suggests: of testthat
2013-12-18 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New minor version 3.2.0.1
* DESCRIPTION: New maintainer
* DESCRIPTION: Added Copyright: reference to new COPYRIGHTS file
* DESCRIPTION: Added reference to new LICENSE file
* inst/COPYRIGHTS: Added, based on existing debian/copyright file
* LICENSE: Added to state MPL-2 for Eigen, GPL (>=2) for RcppEigen
* inst/include/Eigen/src/SparseLU/SparseLU.h: Applied Solaris patch
* inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h:
Idem
* inst/include/RcppEigenForward.h: Idem
2013-12-04 Dirk Eddelbuettel <edd@debian.org>
* debian/*: Added after emails with Doug
* .Rbuildignore: Added debian/
2013-11-13 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: New version, release date and dependencies
* inst/include/Eigen: Update to release 3.2.0 of Eigen
2013-02-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: New minor version 0.3.1.2.1 for upload to CRAN and JSS
* NEWS.org: Updated
2013-01-26 Dirk Eddelbuettel <edd@debian.org>
* vignettes/jss835/: Regroup all related files in this directory
* .Rbuildignore: Ignore vignettes/jss835
2013-01-14 Dirk Eddelbuettel <edd@debian.org>
* inst/CITATION: Added as provided by JSS editor
* man/fastLm.Rd: Added reference to JSS paper
* man/RcppEigen-package.Rd: Idem
2012-11-29 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: New version
* inst/include/Eigen, inst/include/unsupported: Update to version
3.1.2 of Eigen.
2012-11-29 Romain Francois <romain@r-enthusiasts.com>
* include/RcppEigenWrap.h: compatibility issue with Rcpp 0.10.1
2012-08-14 Dirk Eddelbuettel <edd@debian.org>
* R/flags.R: Add two (unexported) functions CxxFlags() and
RcppEigenCxxFlags() for use in Makefiles etc
2012-07-30 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h, inst/unitTests/runit.RcppEigen.R:
Another suggestion from Gael Guennebaud to allow row vectors to be
wrapped.
2012-07-28 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h, inst/unitTests/runit.RcppEigen.R: More
fixes to RcppEigenWrap.h and adjustment of tests accordingly.
The changes allow RowMajor matrices to be wrapped (thanks to Gael
Guennebaud) but cannot handle RowVector types. There will need to be
more template metaprogramming done to redirect the case of RowVector,
which cannot be changed to a ColMajor form.
* src/Makevars: Because of changes in R, -DNDEBUG is automatic.
One must override it with -UNDEBUG in the local ~/.R/Makevars to
activate the debugging code.
* inst/doc/code.R: New version of wrap code provides correct answer to
the badtrans example
* DESCRIPTION: Bump the date.
2012-07-27 Douglas Bates <bates@stat.wisc.edu>
* inst/include/Eigen/*: Changed to released version of Eigen-3.1.0
using the MPL2 license.
2012-07-19 Dirk Eddelbuettel <edd@debian.org>
* R/fastLm.R: correct residual standard error display
* R/fastLm.R: improved test for intercept once more with a tip of the
hat to Doug
2012-07-17 Dirk Eddelbuettel <edd@debian.org>
* R/fastLm.R: Corrections for R^2 in no-intercept case
2012-06-26 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION, R/unit.test.R, inst/include/Eigen/*: Massive
changes related to upgrade to Eigen-3.1.0
2012-03-13 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h: Change the wrap methods to avoid
creating Rcpp::Dimension objects (which are implicitly created by the
Rcpp::Matrix constructor).
* inst/tests/test-solutions.R: Clean up. I defined the results then
reevaluated them.
2012-03-08 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenForward.h: Remove an include of
RcppEigenConfig.h which is no longer needed.
* ChangeLog, NEWS, NEWS.org: Update Changelog and NEWS which is
generated from an org-mode file NEWS.org
* inst/include/RcppEigenConfig.h,
inst/include/unsupported/Eigen/MoreVectorization,
inst/include/unsupported/Eigen/src/MoreVectorization/CMakeLists.txt:
Delete the unsupported/Eigen/src/MoreVectorization module which we
don't need
* inst/include/unsupported/Eigen/src/MoreVectorization/MathFunctions.h:
Delete the unsupported/Eigen/src/MoreVectorization module which we
don't need
* inst/tests/test-solutions.R, inst/tests/test-transform.R,
inst/tests/test-wrap.R: Add testthat test files, temporarily disabled
for R CMD check because of an unknown conflict
* DESCRIPTION, R/unit.test.R, inst/include/Eigen/Cholesky,
..., src/Makevars: Massive changes in upgrade to Eigen-3.1.0-alpha2
2012-03-03 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h: Correct a typo.
2012-02-28 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenForward.h, inst/include/RcppEigenWrap.h: Add as
templates for ArrayXd and ArrayXXd
2012-02-03 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h, inst/unitTests/runit.sparse.R: Allow
import of compressed row sparse matrices. Add test of same.
2012-01-18 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenWrap.h: Allow for wrapping sparse row-major
matrices.
2011-12-31 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenCholmod.h: Minor typo in a comment
2011-12-23 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/runTests.R: unit tests output 'fallback' directory
changed to '..' and files are now in top-level of $pkg.Rcheck/
2011-11-14 Douglas Bates <bates@stat.wisc.edu>
* vignettes/RcppEigen-intro-nojss.Rnw: Many, many changes by Dirk
and by Doug over the last two weeks to create a JSS paper and
updated package. Too many changes to list.
2011-10-26 Douglas Bates <bates@stat.wisc.edu>
* inst/doc/Rcpp.bib, inst/doc/RcppEigen-Intro.Rnw,
inst/doc/RcppEigen-Intro.pdf: Add an introductory vignette.
* src/fastLm.cpp, src/fastLm.h: Use a method for XtX but returning a
MatrixXd, not a view.
* inst/doc/RcppEigen-Intro.Rnw: Describe the SymmEig method correctly.
* src/fastLm.cpp, src/fastLm.h: Use a macro for XtX temporarily. Clean
up code.
* inst/include/RcppEigenCholmod.h, inst/include/RcppEigenStubs.h: Update
to Matrix_1.0.2 versions
* inst/include/Eigen, inst/include/unsupported: update to eigen 3.0.3
* src/RcppEigen.cpp: Add externally callable functions for Eigen version
and SSE instruction sets in use.
* inst/examples/lmBenchmark.R: Suppress messages and provide additional
information about Eigen version and SSE instructions in use.
* R/fastLm.R: Allow optional arguments to be passed to printCoefmat;
adapt to new returned structure.
2011-09-16 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h: Avoid
compiler warnings about comparing signed and unsigned values.
2011-09-13 Douglas Bates <bates@stat.wisc.edu>
* src/Makevars: Force the -DNDEBUG flag to satisfy R CMD check in
R-2.14.0 and higher
2011-09-12 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h:
Remove the solvetype specification for the solve method (but type is
retained for solveInPlace).
2011-09-11 Douglas Bates <bates@stat.wisc.edu>
* inst/include/RcppEigenForward.h: Remove forward declaration of
non-existent templated function.
2011-09-02 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION, inst/include/Eigen/src/Core/util/Meta.h: New release.
ifdef the use of "long long" using RCPP_HAS_LONG_LONG_TYPES (thanks,
Dirk)
2011-08-31 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h:
Delete my addition of a CholmodAutoLLt mode, which is not needed (I
misunderstood something previously).
2011-08-28 Douglas Bates <bates@stat.wisc.edu>
* many files in inst/include/Eigen and inst/include/unsupported:
Upgrade to Eigen release 3.0.2
2011-08-12 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h:
By-passing the const reference
2011-08-11 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h: Add a
solveInPlace method to try to avoid memory problems.
2011-08-10 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h:
Attempted fix of problem of freeing Map'ed memory in the Cholmod
solve.
2011-07-31 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h:
Trying to fix the memory problems from the CholmodDecomposition solve
methods - apparently unsuccessfully.
2011-07-29 Douglas Bates <bates@stat.wisc.edu>
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h: Add
LLtAuto method (which doesn't seem to work), more extractors and a
factorize_p method for a const_CHM_SP argument.
* inst/include/RcppEigenCholmod.h: Add a declaration of log determinant
squared function.
* inst/include/unsupported/Eigen/src/SparseExtra/CholmodSupport.h,