Skip to content

Commit cb44621

Browse files
authored
Merge pull request #16 from cicirello/cite-asec-2023
Updated documentation with ASEC 2023 citation
2 parents 2ae0829 + 3e57250 commit cb44621

File tree

9 files changed

+47
-14
lines changed

9 files changed

+47
-14
lines changed

CITATION.cff

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
cff-version: "1.2.0"
2+
message: "If you use this software, please cite the article from preferred-citation."
3+
authors:
4+
- family-names: "Cicirello"
5+
given-names: "Vincent A"
6+
orcid: "https://orcid.org/0000-0003-1072-8559"
7+
title: "An Analysis of an Open Source Binomial Random Variate Generation Algorithm"
8+
license: "GPL-3.0-or-later"
9+
url: "https://github.com/cicirello/btpe-iterations"
10+
preferred-citation:
11+
type: article
12+
authors:
13+
- family-names: "Cicirello"
14+
given-names: "Vincent A"
15+
orcid: "https://orcid.org/0000-0003-1072-8559"
16+
doi: "10.3390/ASEC2023-15349"
17+
journal: "Engineering Proceedings"
18+
title: "An Analysis of an Open Source Binomial Random Variate Generation Algorithm"
19+
year: 2023
20+
volume: 56
21+
issue: 1
22+
start: 86

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Copyright © 2023 Vincent A. Cicirello
55
This repository contains code to reproduce the experiments, and analysis of
66
experimental data, from the following paper:
77

8-
> Vincent A. Cicirello. 2023. An Analysis of an Open Source Binomial Random Variate Generation Algorithm, *Engineering Proceedings*, Accepted pending publication.
8+
> Vincent A. Cicirello. 2023. [An Analysis of an Open Source Binomial Random Variate Generation Algorithm](https://www.cicirello.org/publications/engproc-56-00086.pdf), *Engineering Proceedings*, 56(1), Article 86, October 2023. doi:[10.3390/ASEC2023-15349](https://doi.org/10.3390/ASEC2023-15349).
99
10-
| __Related Publication__ | |
10+
| __Related Publication__ | [![doi:10.3390/ASEC2023-15349](doi.svg)](https://doi.org/10.3390/ASEC2023-15349) |
1111
| :--- | :--- |
1212
| __License__ | [![GitHub](https://img.shields.io/github/license/cicirello/cycle-mutation-experiments)](LICENSE) |
1313
| __Packages and Releases__ | |

doi.svg

Lines changed: 1 addition & 0 deletions
Loading

pom.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111

12-
<name>Analysis of iterations of BTPE algorithm for binomial random variate generation</name>
12+
<name>An Analysis of an Open Source Binomial Random Variate Generation Algorithm</name>
1313

1414
<description>This package contains Java code to reproduce the experiments
15-
of ADD-DETAILS-LATER-RELATED-TO-ARTICLE.
15+
of the following article: Vincent A. Cicirello. 2023. An Analysis of an
16+
Open Source Binomial Random Variate Generation Algorithm, Engineering Proceedings,
17+
56(1), Article 86, October 2023. doi:10.3390/ASEC2023-15349.
1618
</description>
1719

1820
<url>https://github.com/cicirello/btpe-iterations</url>
@@ -23,7 +25,7 @@
2325
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
2426
<distribution>repo</distribution>
2527
<comments>
26-
Analysis of iterations of BTPE algorithm for binomial random variate generation.
28+
An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
2729
Copyright (C) 2023 Vincent A. Cicirello.
2830

2931
This program is free software: you can redistribute it and/or modify
@@ -238,8 +240,8 @@
238240
<configuration>
239241
<failOnWarnings>true</failOnWarnings>
240242
<failOnError>true</failOnError>
241-
<windowtitle>Analysis of iterations of BTPE algorithm for binomial random variate generation</windowtitle>
242-
<doctitle>Analysis of iterations of BTPE algorithm for binomial random variate generation</doctitle>
243+
<windowtitle>An Analysis of an Open Source Binomial Random Variate Generation Algorithm</windowtitle>
244+
<doctitle>An Analysis of an Open Source Binomial Random Variate Generation Algorithm</doctitle>
243245
<author>true</author>
244246
<version>false</version>
245247
<nosince>true</nosince>

src/main/java/module-info.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Analysis of iterations of BTPE algorithm for binomial random variate generation.
2+
* An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
33
* Copyright (C) 2023 Vincent A. Cicirello
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -19,7 +19,11 @@
1919
/**
2020
* Code to reproduce the experiments from the following article:
2121
*
22-
* <p>INSERT DETAILS HERE LATER
22+
* <p>Vincent A. Cicirello. 2023. <a
23+
* href="https://www.cicirello.org/publications/engproc-56-00086.pdf">An Analysis of an Open Source
24+
* Binomial Random Variate Generation Algorithm</a>. <i>Engineering Proceedings</i>, 56(1), Article
25+
* 86, October 2023. doi:<a
26+
* href="https://doi.org/10.3390/ASEC2023-15349">10.3390/ASEC2023-15349</a>.
2327
*
2428
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>, <a
2529
* href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/java/org/cicirello/experiments/btpe/CountIterationsBTPE.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Analysis of iterations of BTPE algorithm for binomial random variate generation.
2+
* An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
33
* Copyright (C) 2023 Vincent A. Cicirello
44
*
55
* This program is free software: you can redistribute it and/or modify
@@ -26,7 +26,11 @@
2626
/**
2727
* Code to reproduce the experiments from the following article:
2828
*
29-
* <p>INSERT DETAILS HERE LATER
29+
* <p>Vincent A. Cicirello. 2023. <a
30+
* href="https://www.cicirello.org/publications/engproc-56-00086.pdf">An Analysis of an Open Source
31+
* Binomial Random Variate Generation Algorithm</a>. <i>Engineering Proceedings</i>, 56(1), Article
32+
* 86, October 2023. doi:<a
33+
* href="https://doi.org/10.3390/ASEC2023-15349">10.3390/ASEC2023-15349</a>.
3034
*
3135
* @author <a href=https://www.cicirello.org/ target=_top>Vincent A. Cicirello</a>, <a
3236
* href=https://www.cicirello.org/ target=_top>https://www.cicirello.org/</a>

src/main/python/ExpectedIterationsBTPE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Analysis of iterations of BTPE algorithm for binomial random variate generation.
1+
# An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
22
# Copyright (C) 2023 Vincent A. Cicirello
33
#
44
# This program is free software: you can redistribute it and/or modify

src/main/python/analyze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Analysis of iterations of BTPE algorithm for binomial random variate generation.
1+
# An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
22
# Copyright (C) 2023 Vincent A. Cicirello
33
#
44
# This program is free software: you can redistribute it and/or modify

src/main/python/findmax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Analysis of iterations of BTPE algorithm for binomial random variate generation.
1+
# An Analysis of an Open Source Binomial Random Variate Generation Algorithm.
22
# Copyright (C) 2023 Vincent A. Cicirello
33
#
44
# This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)