Skip to content

Commit 25a31a2

Browse files
jrevelsKristofferC
authored andcommitted
fix @jrevels/@ararslan contribution statements (#31)
* fix @jrevels contributions * fix @ararslan contributions
1 parent 1581918 commit 25a31a2

File tree

16 files changed

+12
-28
lines changed

16 files changed

+12
-28
lines changed

binarytrees/binarytrees.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33

4-
# contributed by Jarret Revels and Alex Arslan
54
# based on an OCaml program
6-
# *reset*
5+
# *reset*
76

87
using Printf
98

@@ -33,7 +32,7 @@ function loop_depths(d, min_depth, max_depth)
3332
niter = 1 << (max_depth - d + min_depth)
3433
c = 0
3534
for j = 1:niter
36-
c += check(make(d))
35+
c += check(make(d))
3736
end
3837
@printf("%i\t trees of depth %i\t check: %i\n", niter, d, c)
3938
d += 2
@@ -59,4 +58,3 @@ end
5958

6059
n = parse(Int,ARGS[1])
6160
perf_binary_trees(n)
62-

fannkuchredux/fannkuchredux.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33

4-
# contributed by Jarret Revels and Alex Arslan
54
# based on the Javascript program
65

76
function perf_fannkuch(n)

fasta/fasta-fast.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33
#
4-
# contributed by Jarret Revels and Alex Arslan
54

65
mutable struct PushVector{T, A<:AbstractVector{T}} <: AbstractVector{T}
76
v::A

fasta/fasta.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33
#
4-
# contributed by Jarret Revels and Alex Arslan
54

65
const line_width = 60
76

@@ -97,4 +96,3 @@ end
9796

9897
n = parse(Int,ARGS[1])
9998
perf_fasta(n)
100-

knucleotide/knucleotide-fast.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# contributed by David Campbell
55
# based on the Go version
6-
# modified by Jarret Revels, Alex Arslan, Yichao Yu
6+
# modified by Jarrett Revels, Alex Arslan, Yichao Yu
77
#
88
# Bit-twiddle optimizations added by Kristoffer Carlsson
99

@@ -163,4 +163,4 @@ function perf_k_nucleotide(io = stdin)
163163
end
164164
end
165165

166-
perf_k_nucleotide()
166+
perf_k_nucleotide()

knucleotide/knucleotide.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# contributed by David Campbell
55
# based on the Go version
6-
# modified by Jarret Revels, Alex Arslan, Yichao Yu
6+
# modified by Jarrett Revels, Alex Arslan, Yichao Yu
77

88
using Printf
99

@@ -94,4 +94,3 @@ end
9494

9595
perf_k_nucleotide()
9696
# perf_k_nucleotide(open("knucleotide-input.txt", "r"))
97-

mandelbrot/mandelbrot.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33
#
44
# contributed by David Campbell
5-
# modified by Jarret Revels, Alex Arslan
5+
# modified by Jarrett Revels, Alex Arslan
66

77
const ITER = 50
88

@@ -41,4 +41,4 @@ function perf_mandelbrot(n::Int=200)
4141
end
4242

4343
n = parse(Int,ARGS[1])
44-
perf_mandelbrot(n)
44+
perf_mandelbrot(n)

nbody/nbody-2.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33

4-
# contributed by Steven G. Johnson, Alex Arslan,
5-
# Kristoffer Carlsson, Jarret Revels
4+
# contributed by Steven G. Johnson, Kristoffer Carlsson
65
# based on the Java version and vectorized
76

87
module NBody
@@ -116,4 +115,3 @@ end # module
116115

117116
n = parse(Int,ARGS[1])
118117
NBody.perf_nbody(n)
119-

nbody/nbody-fast.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33

4-
# contributed by Jarret Revels and Alex Arslan
54
# based on the Java version
65

76
module NBody

nbody/nbody.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# The Computer Language Benchmarks Game
22
# https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
33

4-
# contributed by Jarret Revels and Alex Arslan
54
# based on the Java version
65

76
module NBody
@@ -134,4 +133,3 @@ end # module
134133

135134
n = parse(Int,ARGS[1])
136135
NBody.perf_nbody(n)
137-

0 commit comments

Comments
 (0)