Skip to content

Commit 4105be0

Browse files
authored
Add CITATION file that references the arXiv paper for ensmallen (close #3) (#4)
* Add `CITATION` file that references the arXiv paper for `ensmallen` (close #3) * Add ChangeLog entry...
1 parent d30a159 commit 4105be0

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2018-10-23 James Balamuta <[email protected]>
2+
3+
* inst/CITATION: Add citation information for ensmallen's arXiv paper.
4+
5+
2018-10-22 Dirk Eddelbuettel <[email protected]>
6+
7+
* README.md: Minor touchups.
8+
19
2018-10-21 James Balamuta <[email protected]>
210

311
* DESCRIPTION (Version, Date): Initial release

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: RcppEnsmallen
22
Title: Header-Only C++ Mathematical Optimization Library for 'Armadillo'
33
Version: 0.1.10.0.1
44
Authors@R: c(
5-
person("James", "Balamuta", email = "[email protected]",
5+
person("James Joseph", "Balamuta", email = "[email protected]",
66
role = c("aut", "cre", "cph"),
77
comment = c(ORCID = "0000-0003-2826-8458")),
88
person("Dirk", "Eddelbuettel", email = "[email protected]",

inst/CITATION

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
citHeader("To cite 'RcppEnsmallen' in publications use:")
2+
3+
citEntry(entry = "Manual",
4+
title = "{RcppEnsmallen: Header-Only C++ Mathematical Optimization Library for 'Armadillo'}",
5+
author = personList(as.person("James Joseph Balamuta"),
6+
as.person("Dirk Eddelbuettel")
7+
),
8+
year = 2018,
9+
textVersion = paste("James Joseph Balamuta and Dirk Eddelbuettel (2018)",
10+
"RcppEnsmallen: Header-Only C++ Mathematical Optimization Library for 'Armadillo'.",
11+
"URL https://cran.r-project.org/package=RcppEnsmallen.")
12+
)
13+
14+
citEntry(entry = "Article",
15+
title = "{ensmallen: a flexible C++ library for efficient function optimization}",
16+
author = personList(as.person("Shikhar Bhardwaj"),
17+
as.person("Ryan R. Curtin"),
18+
as.person("Marcus Edel"),
19+
as.person("Yannis Mentekidis"),
20+
as.person("Conrad Sanderson")),
21+
journal = "{ArXiv e-prints}",
22+
archivePrefix = "arXiv",
23+
eprint = "{1810.09361}",
24+
primaryClass = "cs.MS",
25+
keywords = "{Computer Science - Mathematical Software, Computer Science - Machine Learning, Mathematics - Optimization and Control, 65K10, 68N99, 68W99, 90C53, G.1.6, G.4}",
26+
year = "2018",
27+
month = "oct",
28+
textVersion = paste("Shikhar Bhardwaj, Ryan R. Curtin, Marcus Edel, Yannis Mentekidis, and Conrad Sanderson (2018).",
29+
"ensmallen: a flexible C++ library for efficient function optimization.",
30+
"ArXiv e-prints, 1810.09361, cs.MS.",
31+
"URL https://arxiv.org/abs/1810.09361.")
32+
)

0 commit comments

Comments
 (0)